Recurrence Relations and Algorithms Quiz

Recurrence Relations and Algorithms Quiz

University

15 Qs

quiz-placeholder

Similar activities

DS 1 Long quiz

DS 1 Long quiz

University

20 Qs

Hash Table and Sorting Algorithms Quiz

Hash Table and Sorting Algorithms Quiz

University

10 Qs

HAPPY DSA

HAPPY DSA

University

20 Qs

Daily Scrum

Daily Scrum

University

11 Qs

Map and Sorting Algorithms Quiz

Map and Sorting Algorithms Quiz

University

20 Qs

Kỹ Thuật Sắp Xếp

Kỹ Thuật Sắp Xếp

University

11 Qs

Revissão - Linguagem C (str, fun, stru, vt+mt,)

Revissão - Linguagem C (str, fun, stru, vt+mt,)

University

20 Qs

DSA (QUIZ 7) -Greedy Algorithms and Complexity Analysis

DSA (QUIZ 7) -Greedy Algorithms and Complexity Analysis

University

15 Qs

Recurrence Relations and Algorithms Quiz

Recurrence Relations and Algorithms Quiz

Assessment

Quiz

Information Technology (IT)

University

Hard

Created by

Yasmin Kandil

Used 4+ times

FREE Resource

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Solve the recurrence relation T(n)=2T(n/4)+ n^2 using the Master's Theorem. What is the time complexity of T(n)?

O(n^2 log n)

O(n^2)

O(n log n)

O(n^3)

2.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Solve the recurrence relation T(n)=3T(n/3)+n using the Master's Theorem. What is the time complexity of T(n)?

O(n log n)

O(n^2)

O(n log^2 n)

O(n)

3.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Solve the recurrence relation T(n)=8T(n/4)+n^2 using the Master's Theorem. What is the time complexity of T(n)?

O(n^2 log n)

O(n^3)

O(n^2)

O(n log n)

4.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Solve the recurrence relation T(n)=6T(n/2)+ n^3 using the Master's Theorem. What is the time complexity of T(n)?

O(n^3)

O(n^4)

O(n^3 log n)

O(n^2 log^2 n)

5.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

You are given coins of denominations {1,3,4}. What is the minimum number of coins required to make a value of 6 using dynamic programming?

2

3

4

6

6.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

In the Traveling Salesman Problem using dynamic programming, what is the state definition for DP(S,i) where S is a set of visited cities, and i is the current city?

The shortest path from the start to city i.

The shortest path that visits all cities in S and ends at city i.

The longest path that visits all cities in S and ends at city i.

The shortest path from the city i to the end.

7.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

You are given coins of denominations {1,2,5}. What is the minimum number of coins needed to make a total of 7?

2

3

4

5

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?