Merge Sort is an example of which algorithm design paradigm?

2024

Merge Sort is an example of which algorithm design paradigm?

Answer: B. Divide and ConquerMerge Sort works by recursively dividing the array into two halves until each subarray has one element, then merging them in sorted order. This process…

  1. A.

    Greedy

  2. B.

    Divide and Conquer

  3. C.

    Dynamic Programming

  4. D.

    More than one of the above

  5. E.

    None of the above

Attempted by 1700 students.

Show answer & explanation

Correct answer: B

Merge Sort works by recursively dividing the array into two halves until each subarray has one element, then merging them in sorted order. This process follows the divide and conquer paradigm, where a problem is broken into smaller subproblems, solved independently, and then combined to form the final solution.

Explore the full course: Bpsc

Loading lesson…