Question: In the worst case, what is the time complexity of Merge Sort?
Options:
Correct Answer: O(n log n)
Solution:
The worst-case time complexity of Merge Sort is O(n log n) because it always divides the array into halves.