In merge sort, the merge operation combines two ___________ arrays into a single sorted array.

  • Equal-sized
  • Sorted
  • Subarray
  • Unsorted
In merge sort, the merge operation combines two sorted arrays into a single sorted array. This is a crucial step in the merge sort algorithm, where the sorted subarrays from the divide step are merged back together to create a larger sorted array. The merging process compares elements from both arrays and arranges them in ascending or descending order, depending on the sorting order specified.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *