Question: What is the pivot selection strategy in Quick Sort that can lead to poor performance?
Options:
Correct Answer: First element
Solution:
Choosing the first element as the pivot can lead to poor performance (O(n^2)) if the array is already sorted or nearly sorted.