Multiple choice

Which of the following sorting techniques follows the divide and conquer strategy?

  1. Merge sort

  2. Quick sort

  3. Bubble sort

  4. Sink sort

  5. Radix sort

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

Quick sort technique involves choosing a central element which is used to partition data according to the value. Then, both sets are individually processed by continuous partitioning and the required order is obtained.