Q13 Suppose T(n) = 2T(n/2) + n, T[0]=T[1]=1. Which of the following is true
A) T(n)=O(n^2)
B) T(n)=ø(nlogn)
C) T(n)=Ω(n^2)
D) T(n)=O(nlogn)
one more
Q8 You have to find square root of a number(Only the integral part). In
what best time complexity we can achieve this?
A) n
B) √n
C) logn
D)1