C Programming - Array MCQs

C Programming - Array MCQs

University

40 Qs

quiz-placeholder

Similar activities

Tin học

Tin học

12th Grade - University

35 Qs

Kuis 1 DTD - TPB 55 2025/2026

Kuis 1 DTD - TPB 55 2025/2026

University

42 Qs

Ice Breaking

Ice Breaking

4th Grade - University

36 Qs

Основы PYTHON

Основы PYTHON

11th Grade - University

35 Qs

Assessment Tengah Semester Ganjil

Assessment Tengah Semester Ganjil

8th Grade - University

35 Qs

BASIS DATA

BASIS DATA

11th Grade - University

35 Qs

Quiz Pra Asas 24 - Ganjil

Quiz Pra Asas 24 - Ganjil

7th Grade - University

45 Qs

Latihan Soal Materi Informatika kelas 8 smt 1

Latihan Soal Materi Informatika kelas 8 smt 1

8th Grade - University

40 Qs

C Programming - Array MCQs

C Programming - Array MCQs

Assessment

Quiz

Information Technology (IT)

University

Medium

Created by

PRIYADHARSHNI S

Used 4+ times

FREE Resource

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

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

Create a free account and access millions of resources

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

By signing up, you agree to our Terms of Service & Privacy Policy

Already have an account?