Multiple choice Merge sort's worst case time complexity is O(n2) O(nlogn) O(logn) O(n) Reveal answer Fill a bubble to check yourself B Correct answer Explanation Merge sort always divides input in half and recursively merges, requiring n comparisons per level across log n levels, giving O(n log n) in all cases.