A ____ sort is a highly efficient sorting algorithm based on partitioning of an array of data into smaller arrays.

  • Bubble
  • Merge
  • Quick
  • Selection
A Merge sort is a highly efficient sorting algorithm that uses a divide-and-conquer approach to sort an array. It repeatedly divides the array into smaller sub-arrays until each sub-array is sorted, then merges them back together to achieve the final sorted order.
Add your answer
Loading...

Leave a comment

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