Multiple choice Quick sort's average time complexity is O(n2) O(nlogn) O(logn) O(n) Reveal answer Fill a bubble to check yourself B Correct answer Explanation Quick sort's average performance is O(n log n) because the partitioning process effectively divides the array into roughly equal halves on average.