Sorting Algorithms - Study Mode

[#126] Which of the following is not true about QuickSort?
Correct Answer

(B) pivot position can be changed

[#127] What is the average case time complexity of tree sort?
Correct Answer

(B) O(n log n)

[#128] Which of the following is an advantage of recursive insertion sort over its iterative version?
Correct Answer

(D) it has no significant advantage

[#129] Consider the following statements related to the binary tree sort. I. Element can be added gradually as they become available II. It needs extra memory space
Correct Answer

(C) Both Statement I and Statement II are true

[#130] What is the average time complexity of Tim sort?
Correct Answer

(B) O(n log n)