Search Header Logo

C Arrays Quiz

Authored by PRIYADHARSHNI S

Information Technology (IT)

University

Used 1+ times

C Arrays Quiz
AI

AI Actions

Add similar questions

Adjust reading levels

Convert to real-world scenario

Translate activity

More...

    Content View

    Student View

50 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following correctly declares an array of 10 integers in C?

int arr;

array arr;

int arr;

int arr[];

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the index of the first element in a C array?

0

1

-1

n (array size)

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you initialize all elements of an integer array arr to zero?

int arr = {0};

int arr = (0,0,0,0,0);

int arr;

int arr; arr=0;

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will happen if you access arr in an array declared as int arr;?

It will access last element

Compile-time error

Unpredictable (undefined behavior)

Produces zero output

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of these accesses the fifth element in the array arr?

arr

arr(5)

arr{5}

arr

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code? c int arr[4] = {1,2,3,4}; printf("%d", arr[2]);

2

3

4

1

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

If you declare int arr = {5}; what are the values in arr?

5, 5, 5

0, 0, 0

5, 0, 0

All garbage values

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

Microsoft

Continue with Microsoft

or continue with

Facebook

Facebook

Apple

Apple

Others

Others

Already have an account?