Multiple choice Quick sort's worst-case time complexity is O(n2) O(nlogn) O(logn) O(n) Reveal answer Fill a bubble to check yourself A Correct answer Explanation Quick sort's worst-case complexity is O(n^2), which occurs when the pivot selection consistently results in highly unbalanced partitions.