Sorting Algorithms - Study Mode

[#41] What is the time taken to perform a delete min operation?
Correct Answer

(C) O(log N)

[#42] Which of the following uses the largest amount of auxiliary space for sorting?
Correct Answer

(B) Counting sort

[#43] Which of the following is an in-place sorting algorithm?
Correct Answer

(B) Permutation sort

[#44] What is the average case time complexity of standard merge sort?
Correct Answer

(A) O(n log n)

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

(C) O(n 2 )