DS EXP1

DS EXP1

University

10 Qs

quiz-placeholder

Similar activities

Structures and union

Structures and union

University

15 Qs

ENT110 C Programming Quiz2

ENT110 C Programming Quiz2

University

10 Qs

Archivos y Colecciones

Archivos y Colecciones

University

15 Qs

DS_NumPy_TEST1

DS_NumPy_TEST1

University

12 Qs

C++ Array Quick Review

C++ Array Quick Review

University

10 Qs

DATA STRUCTURES QUIZ

DATA STRUCTURES QUIZ

University

15 Qs

Java for Geeks and Dummies

Java for Geeks and Dummies

12th Grade - University

10 Qs

BASIC C PROGRAMMING QUIZ

BASIC C PROGRAMMING QUIZ

University

15 Qs

DS EXP1

DS EXP1

Assessment

Quiz

Computers

University

Hard

Created by

RAVIKANTH K

Used 1+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of these best describes an array?

A data structure that shows a hierarchical behavior

Container of objects of similar types

Arrays are immutable once initialized

Array is not a data structure

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you initialize an array in C

int arr[3] = (1,2,3);

int arr(3) = {1,2,3};

int arr[3] = {1,2,3};

d) int arr(3) = (1,2,3);

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In general, the index of the first element in an array is __________

0

-1

2

1

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Elements in an array are accessed _____________

randomly

sequentially

exponentially

logarithmically

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is the length of an array when its first index is denoted by i and last index is denoted by j

length of array = i + j

length of array = j - i -1

length of array = j - i

length of array = j - i + 1

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output ?

void main(){

int arr[2]= {1, 0, 10};

int x;

for(int i =0;i<n;i++){

x += arr[i]

}

printf("%d", x);

}

11

Compilation Error

Run Time Error

None

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output ?

void main(){

int arr[2]= {1, 0, 10};

for(int i =0;i<n;i++){

x += arr[i]

}

printf("%d", x);

}

11

Compilation Error

Run Time Error

None

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?