Array Quiz

Array Quiz

University

15 Qs

quiz-placeholder

Similar activities

Array Java

Array Java

University

15 Qs

SLG IPC Week 7

SLG IPC Week 7

University

13 Qs

Linux 3-4

Linux 3-4

University

20 Qs

2-D Arrays in Java

2-D Arrays in Java

University

20 Qs

PSC Quiz1

PSC Quiz1

University - Professional Development

20 Qs

OOP - Quiz

OOP - Quiz

University

15 Qs

Round 1 (Tech Utsav)

Round 1 (Tech Utsav)

University

15 Qs

Data Structures and Algorithms Quiz

Data Structures and Algorithms Quiz

University

20 Qs

Array Quiz

Array Quiz

Assessment

Quiz

Computers

University

Medium

Created by

Athul Kharvi

Used 3+ times

FREE Resource

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

What is an array?

A. A data structure that stores elements of the same type.

B. A data structure that stores elements of different types.

C. A single value that can change type.

D. A collection of unrelated elements.

2.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

Which of the following is the correct way to declare an array in C?

A. int arr[];

B. int arr[10];

C. array int arr[10];

D. int array[10];

3.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

What is the index of the last element in an array of size n?

A. n

B. n-1

C. n+1

D. n-2

4.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

Which of the following operations is the fastest on an array?

A. Insertion at the beginning

B. Deletion at the beginning

C. Accessing an element by index

D. Insertion in the middle

5.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

How do you access the first element of an array arr in C?

A. arr[1]

B. arr(0)

C. arr[0]

D. arr{0}

6.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

Which of the following correctly assigns the value 5 to the third element of an array arr?

A. arr[3] = 5;

B. arr(2) = 5;

C. arr[2] = 5;

D. arr{3} = 5;

7.

MULTIPLE SELECT QUESTION

10 sec • 1 pt

What is the correct way to initialize all elements of an array arr of size 10 to 0?

A. int arr[10] = {0};

B. int arr[10] = 0;

C. int arr[10] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0};

D. Both A and C

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?