Sorting Algorithms - Study Mode

[#166] Quick sort uses which of the following algorithm to implement sorting?
Correct Answer

(C) divide and conquer

[#167] What is the worst case time complexity of cube sort?
Correct Answer

(C) O(n log n)

[#168] Merge sort can be implemented using O(1) auxiliary space.
Correct Answer

(A) true

[#169] What will be the best case time complexity of merge sort?
Correct Answer

(A) O(n log n)

[#170] Quick sort uses join operation rather than merge operation.
Correct Answer

(A) true