Which of the following sorting algorithms is based on the concept of…
2025
Which of the following sorting algorithms is based on the concept of repeatedly finding the minimum element ?
- A.
Quick Sort
- B.
Selection Sort
- C.
Bubble Sort
- D.
Merge Sort
Attempted by 173 students.
Show answer & explanation
Correct answer: B
Selection Sort works by repeatedly finding the minimum element from the unsorted portion and placing it at the beginning. Check if you understand how this algorithm differs from others that use swapping or partitioning strategies instead.