Correct Answer: A;B
Explanation:
Loading...
Correct Answer: A;B
Explanation:
Take your GATE-CS preparation to the next level. Practice with full-length mock tests, get instant results, and track your progress with detailed analytics.
Browse GATE-CS Test SeriesFor n > 1, T1(n) = 4*T1(n/2) + T2(n), and T2(n) = 5*T2(n/4) + Theta(log2(n)). Assume T1(n)=1 and T2(…
Consider the following recurrence relation: T(n) = 2T(n − 1) + n·2ⁿ for n > 0, T(0) = 1. Which ONE o…
Consider the following recurrence relation: T(n) = sqrt(n) * T(sqrt(n)) + n for n >= 1, T(1) = 1. Wh…
Let T(n) be the recurrence relation defined as follows: T(0) = 1, T(1) = 2, and T(n) = 5T(n-1) - 6T(…
Consider the recurrence: f(1)=1; f(2n)=2f(n)+1 for n>=1; f(2n+1)=2f(n)+1 for n>=1. Which of the foll…
Consider the following recurrence relation: T(n) = T(n/2) + T(2n/5) + 7n, if n > 0; T(0) = 1. Which …