Question: What is the time complexity of merge sort?
Options:
Correct Answer: O(n log n)
Solution:
Merge sort divides the array and merges sorted halves, resulting in a time complexity of O(n log n).