Search Header Logo

Array Quiz

Authored by Athul Kharvi

Computers

University

Used 4+ times

Array Quiz
AI

AI Actions

Add similar questions

Adjust reading levels

Convert to real-world scenario

Translate activity

More...

    Content View

    Student View

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

What is an array?

A. A data structure that stores elements of the same type.

B. A data structure that stores elements of different types.

C. A single value that can change type.

D. A collection of unrelated elements.

2.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

Which of the following is the correct way to declare an array in C?

A. int arr[];

B. int arr[10];

C. array int arr[10];

D. int array[10];

3.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

What is the index of the last element in an array of size n?

A. n

B. n-1

C. n+1

D. n-2

4.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

Which of the following operations is the fastest on an array?

A. Insertion at the beginning

B. Deletion at the beginning

C. Accessing an element by index

D. Insertion in the middle

5.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

How do you access the first element of an array arr in C?

A. arr[1]

B. arr(0)

C. arr[0]

D. arr{0}

6.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

Which of the following correctly assigns the value 5 to the third element of an array arr?

A. arr[3] = 5;

B. arr(2) = 5;

C. arr[2] = 5;

D. arr{3} = 5;

7.

MULTIPLE SELECT QUESTION

10 sec • 1 pt

What is the correct way to initialize all elements of an array arr of size 10 to 0?

A. int arr[10] = {0};

B. int arr[10] = 0;

C. int arr[10] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0};

D. Both A and C

Access all questions and much more by creating a free account

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

Already have an account?

Discover more resources for Computers