1
GATE CSE 2026 Set 2
MCQ (Single Correct Answer)
+1
-0

Consider the following functions, where $n$ is a positive integer.

$$ n^{1 / 3}, \log (n), \log (n!), 2^{\log (n)} $$

Which one of the following options lists the functions in increasing order of asymptotic growth rate?

Note: Assume the base of log to be 2 .

A

$\log (n), n^{1 / 3}, 2^{\log (n)}, \log (n!)$

B

$n^{1 / 3}, \log (n), \log (n!), 2^{\log (n)}$

C

$\log (n), n^{1 / 3}, \log (n!), 2^{\log (n)}$

D

$2^{\log (n)}, n^{1 / 3}, \log (n), \log (n!)$

2
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)$ ?

A

$T(n)=T(n-1)+1, \quad T(1)=1$

B

$T(n)=2 T\left(\frac{n}{2}\right)+1, T(1)=1$

C

$\quad T(n)=2 T\left(\frac{n}{2}\right)+n, \quad T(1)=1$

D

$T(n)=T(n-1)+n, \quad T(1)=1$

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

A
1
B
$N-1$
C
N
D
$2 N-1$
4
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?

A
$T(n)=\Theta\left(n^2 2^n\right)$
B
$T(n)=\Theta\left(n 2^n\right)$
C
$T(n)=\Theta\left((\log n)^2 2^n\right)$
D
$T(n)=\Theta\left(4^n\right)$

GATE CSE Subjects

Browse all chapters by subject

Software Engineering
Web Technologies