Home »
MCQs »
Algorithms MCQs
Which of the following is a disadvantage of the Merge Sort algorithm?
3. Which of the following is a disadvantage of the Merge Sort algorithm?
- It is not stable.
- It has a worst-case time complexity of O(n^2).
- It is not an in-place sorting algorithm.
- It cannot handle large datasets.
Answer
The correct answer is: C) It is not an in-place sorting algorithm.
Explanation
Merge Sort requires additional memory to store the merged subarrays. So, it is not an in-place sorting algorithm.