Question: In which scenario does Quick Sort perform poorly?
Options:
Correct Answer: When the array is already sorted
Solution:
Quick Sort performs poorly with a time complexity of O(n^2) when the array is already sorted, especially if the pivot is chosen poorly.