Multiple choice Quick sort's worst case space complexity is 0 O(n) O(logn) None of these Reveal answer Fill a bubble to check yourself B Correct answer Explanation Quick sort's space complexity depends on the recursion stack. In the worst case, it can be O(n).