Sorting Algorithms - Study Mode
[#211] Which one of the following sorting algorithm is best suited to sort an array of 1 million elements?
Correct Answer
(D) Quick sort
[#212] Which of the following is an advantage of recursive bubble sort over its iterative version?
Correct Answer
(D) it has no significant advantage
[#213] It is not possible to implement counting sort when any of the input element has negative value.
Correct Answer
(B) False
[#214] Which of the following is the distribution sort?
Correct Answer
(D) LSD radix sort
[#215] Which of the following sorting algorithm will be preferred when the size of partition is between 16 and 2 log(n) while implementing introsort?
Correct Answer
(A) quick sort