Home »
MCQs »
Algorithms MCQs
The primary approach used by the Merge Sort algorithm is ____.
1. The primary approach used by the Merge Sort algorithm is ____.
- Dynamic programming
- Greedy approach
- Divide-and-conquer
- Backtracking
Answer
The correct answer is: C) Divide-and-conquer
Explanation
Merge Sort follows the divide-and-conquer approach.
Divide-and-conquer - This approach divides the array into smaller subarrays, sorts each subarray, and then merges them back together.