Question: In Merge Sort, what is the time complexity for merging two sorted arrays?
Options:
Correct Answer: O(n)
Solution:
Merging two sorted arrays takes O(n) time, where n is the total number of elements in both arrays.