Multiple choice Merge sort's average case space complexity is 0 O(n) O(logn) None of these Reveal answer Fill a bubble to check yourself B Correct answer Explanation Merge sort is a divide and conquer algorithm that requires auxiliary space proportional to the number of elements being sorted, resulting in O(n) space complexity.