Miscellaneous On Data Structures - Study Mode
[#881] Which of the following methods can be used to find the sum of digits of a number?
Correct Answer
(D) Both recursion and iteration
[#882] Euler's totient function is multiplicative.
Correct Answer
(A) True
[#883] Solve the following recurrence using Master's theorem. T(n) = 4T (n/4) + n log n
Correct Answer
(A) T(n) = O(n (log n) 2 )
[#884] Which of the following is the simplest page replacement algorithm?
Correct Answer
(A) FIFO
[#885] The fleury's algorithm can be applied to a graph if the degree of all the vertices is even or two vertices with an odd degree.
Correct Answer
(A) True