Search Header Logo

Data Structures and Algorithms Quiz

Authored by Anisha SET

Computers

University

Used 2+ times

Data Structures and Algorithms Quiz
AI

AI Actions

Add similar questions

Adjust reading levels

Convert to real-world scenario

Translate activity

More...

    Content View

    Student View

50 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the time complexity of finding the median in two sorted arrays of sizes m and n using the optimal binary search approach?

O(m+n)

O(log(min(m,n)))

O(log(max(m,n)))

O(1)

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which data structure is best suited for implementing Dijkstra's Algorithm efficiently?

Stack

Queue

Priority Queue (Min-Heap)

Linked List

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the worst-case time complexity of QuickSort?

O(n log n)

O(n²)

O(log n)

O(n)

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In the Knuth-Morris-Pratt (KMP) string matching algorithm, the LPS array stores:

Longest prefix which is also suffix

Longest palindrome substring

Number of mismatches

Hash value of substring

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following problems cannot be solved using Dynamic Programming?

Longest Common Subsequence

N-Queens Problem

Matrix Chain Multiplication

Coin Change Problem

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the space complexity of DFS in a graph using adjacency list (excluding recursion stack)?

O(V)

O(V+E)

O(E)

O(V*E)

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which traversal method can be used to check if a binary tree is a BST?

Preorder

Inorder

Postorder

Level Order

Access all questions and much more by creating a free account

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

Already have an account?

Discover more resources for Computers