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 binary search algorithm binary search algorithm selection sort algorithm selection sort algorithm divide and conquer algorithm divide and conquer algorithm bubble sort algorithm

1 answer

The correct answer is divide and conquer algorithm. This approach involves breaking a problem into smaller subproblems, solving each one recursively, and then combining the results to obtain the final solution.