Linked List and Stack Quiz

Linked List and Stack Quiz

University

40 Qs

quiz-placeholder

Similar activities

Sorting/Searching Algo and Stack

Sorting/Searching Algo and Stack

University

40 Qs

Atomic Structure

Atomic Structure

University

40 Qs

CP1 RBC Morphology Identification

CP1 RBC Morphology Identification

University

37 Qs

Python Data Structures Quiz

Python Data Structures Quiz

University

38 Qs

Mathematical economics

Mathematical economics

University

39 Qs

DIESEL POWER PLANT

DIESEL POWER PLANT

University

39 Qs

LearnTube Data Structure and Algorithm Quiz 11/2/23

LearnTube Data Structure and Algorithm Quiz 11/2/23

University

42 Qs

Informatika

Informatika

7th Grade - University

40 Qs

Linked List and Stack Quiz

Linked List and Stack Quiz

Assessment

Quiz

Other

University

Hard

Created by

Nathaniel Mensah

Used 1+ times

FREE Resource

40 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following sorting algorithms can be used to sort a random linked list with minimum time complexity?

Insertion Sort

Quick Sort

Heap Sort

Merge Sort

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In the worst case, the number of comparisons needed to search a singly linked list of length n for a given element is

log(2*n)

n/2

log(2*n) -1

n

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Let P be a singly linked list. Let Q be the pointer to an intermediate node x in the list. What is the worst-case time complexity of the best known algorithm to delete the node Q from the list?

O(n)

O(log2 n)

O(logn)

O(1)

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the worst case time complexity of inserting n elements into an empty linked list, if the linked list needs to be maintained in sorted order ?

Θ(n)

Θ(n log n)

Θ(n2)

Θ(1)

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Consider the following conditions: (a)The solution must be feasible, i.e. it must satisfy all the supply and demand constraints. (b)The number of positive allocations must be equal to m1n21, where m is the number of rows and n is the number of columns. (c)All the positive allocations must be in independent positions. The initial solution of a transportation problem is said to be non-degenerate basic feasible solution if it satisfies:

(a) and (b) only

(a) and (c) only

(b) and (c) only

(a), (b) and (c)

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is true about linked list implementation of stack?

In push operation, if new nodes are inserted at the beginning of linked list, then in pop operation, nodes must be removed from end.

In push operation, if new nodes are inserted at the end, then in pop operation, nodes must be removed from the beginning.

Both of the above

None of the above

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which one of the following is an application of Stack Data Structure?

Managing function calls

The stock span problem

Arithmetic expression evaluation

All of the above

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?