Algorithms - Recurrence Relations
GATE CSE & IT · 4 questions across 3 years (2017-2025) · 8% recurrence rate
Recurrence sparkline
2017–2025201720212025
Difficulty mix
med 100%
Question types
MCQ4
All 4 questions on Algorithms - Recurrence Relations
2025 Q20
Consider the following recurrence relation: T(n) = 2T(n - 1) + n2^n for n > 0, T(0) = 1. Which ONE of the following options is CORRECT?
Med✓
2024 Q15
Let T(n) be the recurrence relation defined as follows: T(0) = 1, T(1) = 2, and T(n) = 5T(n - 1) – 6T(n-2) for n ≥ 2 Which one of the following statements is TRUE?
Med✓
2024 Q42
Consider the following recurrence relation: $T(n) = \begin{cases} \sqrt{n}T(\sqrt{n}) + n & \text{for } n \geq 1, \\ 1 & \text{for } n = 1. \end{cases}$ Which one of the following options is CORRECT?
Med✓
2017 Q30
Consider the recurrence function T(n) = { 2T(√n) + 1, n > 2; 2, 0 < n ≤ 2. Then T(n) in terms of Θ notation is
Med✓