Data Structres

Data Structres

University

30 Qs

quiz-placeholder

Similar activities

DATA STRUCTURES-Graphs and other topics

DATA STRUCTURES-Graphs and other topics

University

25 Qs

UNIT - 2 C Bottom-Up Parsing Quiz

UNIT - 2 C Bottom-Up Parsing Quiz

University

25 Qs

Quiz competition

Quiz competition

University

25 Qs

Struktur data Tree

Struktur data Tree

University

30 Qs

ThinkBots - Round 1

ThinkBots - Round 1

University

30 Qs

Push Down Automata Quiz

Push Down Automata Quiz

University

25 Qs

UAS MyOB

UAS MyOB

University

25 Qs

MODULE-1-DATA STRUCTURES

MODULE-1-DATA STRUCTURES

University

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