C Arrays Quiz

C Arrays Quiz

University

50 Qs

quiz-placeholder

Similar activities

IT121-FINAL-REVIEWER

IT121-FINAL-REVIEWER

University

50 Qs

KELAS XI BAB 2 STRATEGI ALGORITMIK DAN PEMROGRAMAN

KELAS XI BAB 2 STRATEGI ALGORITMIK DAN PEMROGRAMAN

11th Grade - University

50 Qs

BIOS Settings Quiz

BIOS Settings Quiz

11th Grade - University

45 Qs

Quiz sur HTML, Git, Grid et Flexbox

Quiz sur HTML, Git, Grid et Flexbox

1st Grade - University

50 Qs

Кәсіби ағылшын 1 - 50

Кәсіби ағылшын 1 - 50

University

50 Qs

Latihan USP Informatika IX paket 2

Latihan USP Informatika IX paket 2

9th Grade - University

50 Qs

Dampak sosial Informatika LK1

Dampak sosial Informatika LK1

7th Grade - University

50 Qs

Final Exam Review: Information Management

Final Exam Review: Information Management

University

51 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

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?