Sorting Algorithms - Study Mode

[#391] LSD radix sort is in-place sorting algorithm.
Correct Answer

(A) False

[#392] What is the average case time complexity of cube sort?
Correct Answer

(B) O(n log n)

[#393] The gap between two elements being compared shrinks by a factor of . . . . . . . . after every iteration.
Correct Answer

(C) 1.3

[#394] What is the best case time complexity of odd-even sort?
Correct Answer

(A) O(n)

[#395] What is the worst case time complexity of binary insertion sort?
Correct Answer

(C) O(n 2 )