Master Theorem Multiple Choice Questions and Answers (MCQs) – 2
This set of Data Structures & Algorithms Multiple Choice Questions & Answers (MCQs) focuses on “Master Theorem – 2”. 1. Solve the following recurrence using Master’s theorem. T(n) = 4T (n/2) + n2 a) T(n) = O(n) b) T(n) = O(log n) c) T(n) = O(n2log n) d) T(n) = O(n2) 2. Solve the following … Read more