Algorithms | Analysis of Algorithms (Recurrences) | Question 4ReadDiscussCoursesPracticeImprove Article ImproveSave Article SaveLike Article LikeSuppose T(n) = 2T(n/2) + n, T(0) = T(1) = 1Which one of the following is false. ( GATE CS 2005)a) T(n) = O(n^2)b) T(n) = (nLogn)c) T(n) = (n^2)d) T(n) = O(nLogn)(A) A(B) B(C) C(D) DAnswer: (C)Explanation: See question 4 of https://www.geeksforgeeks.org/data-structures-and-algorithms-set-23/ for explanation.Quiz of this QuestionLast Updated : 28 Jun, 2021Like Article Save Article Please Login to comment...