Question: What is the worst-case 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), which is consistent regardless of the input data.