DS EXP1

DS EXP1

University

10 Qs

quiz-placeholder

Similar activities

Information Technology

Information Technology

University

9 Qs

Array in C

Array in C

University

10 Qs

EC8393_FDS_MODEL EXAM_3_PART B

EC8393_FDS_MODEL EXAM_3_PART B

University

15 Qs

Arrays

Arrays

11th Grade - University

10 Qs

Array

Array

11th Grade - University

10 Qs

JAVA QUIZ-1

JAVA QUIZ-1

University

10 Qs

Arrays

Arrays

KG - University

10 Qs

Algoritmo y estructura de datos S3

Algoritmo y estructura de datos S3

University

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