Search Header Logo

C Programming - Array MCQs

Authored by PRIYADHARSHNI S

Information Technology (IT)

University

Used 4+ times

C Programming - Array MCQs
AI

AI Actions

Add similar questions

Adjust reading levels

Convert to real-world scenario

Translate activity

More...

    Content View

    Student View

40 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

An array is:

A collection of different data types

A collection of variables of same data type

A dynamic list

A structure

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The index of the first element of an array in C is:

1

-1

0

Depends on compiler

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The correct way to declare an array of 10 integers is:

int arr(10);

int arr[10];

array int arr[10];

int arr[] = 10;

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

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

3

4

0

Garbage value

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will sizeof(arr) return for: int arr[5];

5

10

20

Depends on values

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of these initializes all elements to 0?

int arr[5] = {0};

int arr[5];

int arr[5] = {1};

int arr[] = {1,2};

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does arr[2] access in: int arr[3] = {1, 2, 3};

1

2

3

Compilation error

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?