Sorting Algorithms - Study Mode

[#436] What is the worst case time complexity of bucket sort (k = number of buckets)?
Correct Answer

(C) O(n 2 )

[#437] Shell sort is an improvement on . . . . . . . .
Correct Answer

(A) insertion sort

[#438] What is the worst case time complexity of tree sort (when implemented with an unbalanced tree)?
Correct Answer

(C) O(n 2 )

[#439] Which of the following algorithm takes non linear time for sorting?
Correct Answer

(B) quick sort

[#440] Odd-even sort is a comparison based sort.
Correct Answer

(A) true