Which of the following is described as a process by which a problem is divided into subproblems which are recursively solved, then recombined for a final solution? (1 point)

Responses

selection sort algorithm
selection sort algorithm

divide and conquer algorithm
divide and conquer algorithm

binary search algorithm
binary search algorithm

bubble sort algorithm

1 answer

The correct response is divide and conquer algorithm.

This algorithmic strategy involves breaking down a problem into smaller, more manageable subproblems, solving each of those subproblems recursively, and finally combining their solutions to form the solution to the original problem.