C Arrays Quiz

C Arrays Quiz

University

50 Qs

quiz-placeholder

Similar activities

Mastering C Programming Concepts

Mastering C Programming Concepts

University

55 Qs

9- класс

9- класс

9th Grade - University

50 Qs

соңғы сессия

соңғы сессия

University

50 Qs

тест

тест

University

50 Qs

Algorithmization and Programming

Algorithmization and Programming

University

49 Qs

HỆ ĐIỀU HÀNH - BÀI 7

HỆ ĐIỀU HÀNH - BÀI 7

University

49 Qs

HTML, CSS, and JavaScript Quiz

HTML, CSS, and JavaScript Quiz

University

50 Qs

тест2

тест2

University

50 Qs

C Arrays Quiz

C Arrays Quiz

Assessment

Quiz

Information Technology (IT)

University

Hard

Created by

PRIYADHARSHNI S

Used 1+ times

FREE Resource

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

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?

Discover more resources for Information Technology (IT)