Array Quiz

Array Quiz

University

15 Qs

quiz-placeholder

Similar activities

DSA QUIZ

DSA QUIZ

University

20 Qs

JAVA array

JAVA array

12th Grade - University

10 Qs

Java Programming

Java Programming

University

15 Qs

Preliminary Round

Preliminary Round

University

15 Qs

RVS_Tech_quizz_even2024-25

RVS_Tech_quizz_even2024-25

University

10 Qs

Rapid Round 2

Rapid Round 2

University

10 Qs

Pointers

Pointers

University

20 Qs

Unit-2: Assignment 2

Unit-2: Assignment 2

University

15 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?