Question: What is the space complexity of Merge Sort?
Options:
Correct Answer: O(n)
Solution:
The space complexity of Merge Sort is O(n) because it requires additional space for the temporary arrays used during merging.