November 25, 2023

Data-Structures

Question 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, 2023

Operating-Systems

Question 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, 2023

Question 4992 – Algorithms

​The 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, 2023

UGC NET CS 2013 Sep-paper-2

Question 10 Suppose that the splits at every level of Quicksort are in proportion 1-β to β, where 0 < β ≤ 0.5 is a constant. […]