Multiple choice

Which of the following sorting algorithms works by partitioning the array to be sorted and each partition is in turn sorted recursively?

  1. Selection sort

  2. Bubble sort

  3. Quick sort

  4. None of these

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

Quick sort algorithm works by partitioning the array to be sorted and each partition is in turn sorted recursively.