Data Structres

Data Structres

University

30 Qs

quiz-placeholder

Similar activities

MERN Stack Quiz

MERN Stack Quiz

University

30 Qs

ITProf104 PEx

ITProf104 PEx

University

32 Qs

QUIZ 3 - CC4

QUIZ 3 - CC4

University

27 Qs

Section-B MLP LA-1 Quuiz

Section-B MLP LA-1 Quuiz

University

30 Qs

Web Development Quiz

Web Development Quiz

University

30 Qs

Javascript I

Javascript I

University

33 Qs

QUIZ 1_KOMPAK_XIAKKL

QUIZ 1_KOMPAK_XIAKKL

University

30 Qs

Web Development Quiz

Web Development Quiz

University

30 Qs

Data Structres

Data Structres

Assessment

Quiz

Other

University

Hard

Created by

Venkat Joshua

Used 3+ times

FREE Resource

30 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 initialised

Array is not a data structure

Answer explanation

Array contains elements only of the same type.

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What are the disadvantages of arrays?

Data structure like queue or stack cannot be implemented

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

Index value of an array can be negative

Elements are sequentially accessed

Answer explanation

Arrays are of fixed size. If we insert elements less than the allocated size, unoccupied positions can’t be used again. Wastage will occur in memory.

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Elements in an array are accessed _____________

randomly

sequentially

exponentially

logarithmically

Answer explanation

Elements in an array are accessed randomly. In Linked lists, elements are accessed sequentially.

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the time complexity of pop() operation when the stack is implemented using an array?

O(1)

O(n)

O(log n)

O(n log n)

Answer explanation

pop() accesses only one end of the structure, and hence constant time.

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following array element will return the top-of-the-stack-element for a stack of size N elements(capacity of stack > N)?

S[N-1]

S[N]

S[N-2]

S[N+1]

Answer explanation

Array indexing start from 0, hence N-1 is the last index.

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In a stack, if a user tries to remove an element from an empty stack it is called _________

Underflow

Empty collection

Overflow

Garbage Collection

Answer explanation

Underflow occurs when the user performs a pop operation on an empty stack. Overflow occurs when the stack is full and the user performs a push operation. Garbage Collection is used to recover the memory occupied by objects that are no longer used.

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the value of the postfix expression 6 3 2 4 + – *?

1

74

40

-18

Answer explanation

Postfix Expression is (6*(3-(2+4))) which results -18 as output.

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?