Multiple choice

Suppose T(n) = 2T (n/2) + n, T(0) = T(1) = 1 Which of the following is false?

  1. T(n) = O(n2 )

  2. T(n) = q (n log n)

  3. T(n) = W (n2)

  4. T(n) = O(n log n)

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

 Option 2 is right. T(n)= q(n logn) It is false because q is not a asymptotic symbol.