Multiple choice Suppose T(n) = 2T (n/2) + n, T(0) = T(1) = 1 Which of the following is false? T(n) = O(n2 ) T(n) = q (n log n) T(n) = W (n2) 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.