Question: What is the average time complexity of Merge Sort?
Options:
Correct Answer: O(n log n)
Solution:
Merge Sort has an average time complexity of O(n log n) due to its recursive division of the array.