Recurrence Relations and Algorithms Quiz

Recurrence Relations and Algorithms Quiz

University

15 Qs

quiz-placeholder

Similar activities

sort

sort

University

10 Qs

Sun'iy intellekt

Sun'iy intellekt

University

15 Qs

Intro to DSA

Intro to DSA

University

15 Qs

Mastering Data Structures

Mastering Data Structures

University

20 Qs

Microsoft Excel

Microsoft Excel

1st Grade - University

20 Qs

Hash Table and Sorting Algorithms Quiz

Hash Table and Sorting Algorithms Quiz

University

10 Qs

Побитовые операторы в Python

Побитовые операторы в Python

9th Grade - University

18 Qs

Analysis of Algorithms

Analysis of Algorithms

University

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