November 25, 2023Data-StructuresQuestion 22 The recurrence relation capturing the optimal execution time of the Towers of Hanoi problem with n discs is A T(n) = 2T(n – 2) […]
November 25, 2023Operating-SystemsQuestion 25 Consider the following five disk access requests of the form (request id, cylinder number) that are present in the disk scheduler queue at a […]
November 26, 2023Question 4992 – AlgorithmsThe solution of recurrence relation : T(n)=2T(sqrt(n))+lg(n) is Correct Answer: D Question 286 Explanation: T (n) = l og log (n) · l og (n) T […]
November 26, 2023UGC NET CS 2013 Sep-paper-2Question 10 Suppose that the splits at every level of Quicksort are in proportion 1-β to β, where 0 < β ≤ 0.5 is a constant. […]