Data Structures & Algorithms Quiz

Data Structures & Algorithms Quiz

Professional Development

30 Qs

quiz-placeholder

Similar activities

Post-Test Under Cyber GYAN Project

Post-Test Under Cyber GYAN Project

Professional Development

25 Qs

Team Crystal 2nd Quiz

Team Crystal 2nd Quiz

KG - Professional Development

25 Qs

Negara - Negara

Negara - Negara

Professional Development

27 Qs

mobile legends asking game

mobile legends asking game

10th Grade - Professional Development

25 Qs

Bollywood Quiz

Bollywood Quiz

Professional Development

25 Qs

RSCLQIV_ĐỀ THI LÝ THUYẾT

RSCLQIV_ĐỀ THI LÝ THUYẾT

Professional Development

25 Qs

USO CORRECTO DE LA TILDE

USO CORRECTO DE LA TILDE

Professional Development

35 Qs

Security + (SY0-501) Domain 4

Security + (SY0-501) Domain 4

Professional Development

27 Qs

Data Structures & Algorithms Quiz

Data Structures & Algorithms Quiz

Assessment

Quiz

Other

Professional Development

Hard

Created by

Niveditha Kani

Used 1+ times

FREE Resource

30 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Given an array sorted in non-decreasing order, what’s the best time to check if a number exists?

O(n)

O(log n)

O(n log n)

O(1)

2.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

To remove duplicates from a sorted array in-place, which two-pointer approach is used?

Fast slower pointers

Merge sort

Hashing

Backtracking

3.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Time complexity to reverse a string of length n?

O(1)

O(log n)

O(n)

O(n²)

4.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

For checking if one string is an anagram of another (both length n), best approach?

Bubble sort + compare (O(n²))

Hash map count (O(n))

Binary search

Merge sort + compare

5.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What’s the time to find the longest prefix common to n strings (each of avg length m)?

O(n + m)

O(n × m)

O(log(nm))

O(n m log m)

6.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Removing the n-th node from the end can be done in:

O(n²)

O(n log n)

O(n) using two pointers

O(log n)

7.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

To detect a cycle in a linked list, which algorithm is used?

Hashmap

Sorting

Floyd’s cycle-finding

Backtracking

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?