Multiple choice technology

Which algorithm is based on Divide and Conquer approach?

  1. Merge Sort

  2. Bubble Sort

  3. Selection Sort

  4. Quick Sort

Reveal answer Fill a bubble to check yourself
A,D Correct answer
Explanation

Divide and conquer algorithms recursively break problems into smaller subproblems, solve them independently, and combine results. Merge Sort divides array into halves then merges. Quick Sort partitions around a pivot and recursively sorts partitions.