Data structure

Data structure

University

10 Qs

quiz-placeholder

Similar activities

Array

Array

University

11 Qs

Data Structure Quiz 1

Data Structure Quiz 1

University

9 Qs

Complexity Analysis Station [2]

Complexity Analysis Station [2]

University

7 Qs

Quiz 2 DS1E

Quiz 2 DS1E

University

12 Qs

Heap and Search Tree

Heap and Search Tree

University

15 Qs

Heap

Heap

University

15 Qs

Kuis 3  - ASD - A

Kuis 3 - ASD - A

University

10 Qs

HEAP TREE

HEAP TREE

University

11 Qs

Data structure

Data structure

Assessment

Quiz

Computers

University

Medium

Created by

Ramakant Kumar

Used 2+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

How many times is the comparison-

ison i <= n performed in the

the following program?

int i = 60 , n = 100;

main ( ) {

w h i l e ( i <= n ){

i = i +2;

n = n−3;

}

}

12

13

14

15

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is the infix expression?

+A*BC

A+B*C

ABC+*

None of the above

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

A(){

int i= 0,n=0,j=0;

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

    for(j=0;j<i;j++){

    SOP("hello")

}}}

time complexity of given code:

O(n)

O(logn)

O(n^2)

O(n^3)

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which of the following is not a disadvantage to the usage of an array?

Fixed size

Insertion based on position

Accessing elements at specified positions

There are chances of wastage of memory space if elements inserted in an array are lesser than the allocated size

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

3. What is the time complexity to count the number of elements in the linked list?

O(1)

O(logn)

O(n2)

O(n)

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Time complexity of f (x) = (x^2 + 5logx)

O(x^2)

O(x^3)

O(logx)

O(1)

7.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What data structure would you mostly likely see in non recursive implementation

of a recursive algorithm?

Linked List

Double lists

Tree

stacks

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?