1
GATE CSE 2026 Set 2
MCQ (More than One Correct Answer)
+1
-0
Which of the following can be recurrence relation(s) corresponding to an algorithm with time complexity $\Theta(n)$ ?
2
GATE CSE 2025 Set 2
MCQ (Single Correct Answer)
+1
-0.33
Consider an unordered list of $N$ distinct integers. What is the minimum number of element comparisons required to find an integer in the list that is NOT the largest in the list?
3
GATE CSE 2025 Set 1
MCQ (Single Correct Answer)
+1
-0.33
Consider the following recurrence relation :
$$T(n)=2 T(n-1)+n 2^n \text { for } n>0, T(0)=1$$
Which ONE of the following options is CORRECT?
4
GATE CSE 2024 Set 2
MCQ (Single Correct Answer)
+1
-0.33
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 \geq 2$
Which one of the following statements is TRUE?
GATE CSE Subjects
Browse all chapters by subject
Theory of Computation
Operating Systems
Algorithms
Database Management System
Data Structures
Computer Networks
Software Engineering
Compiler Design
Web Technologies
General Aptitude
Discrete Mathematics
Programming Languages