Selection sort is a _______ sorting algorithm that repeatedly selects the _______ element and places it at the beginning.

  • Comparison, minimum
  • Divide and conquer, maximum
  • Linear, last
  • Simple, middle
Selection sort is a comparison sorting algorithm that repeatedly selects the minimum element and places it at the beginning of the array. This process continues until the entire array is sorted.
Add your answer
Loading...

Leave a comment

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