1 1 vote Which of the following problems is solved using dynamic programming?Merge sortDepth-first searchBreadth-first searchFibonacci sequence calculation Algorithms nielit-sta-2025 dynamic-programming algorithm-design data-structures + – Shubham Sharma 2 185 views answer comment Share Follow Print 0 reply Please log in or register to add a comment.
0 0 votes Merge sort: This is a classic example of a Divide and Conquer algorithm that recursively splits and sorts sub-arrays.Depth-first search: A graph traversal technique that uses a Stack (or recursion) to explore as deep as possible along a branch.Breadth-first search: A graph traversal technique that uses a Queue to explore all neighbor nodes at the current depth before moving deeper.Fibonacci sequence calculation: A problem solved by Dynamic Programming because it involves overlapping subproblems where results are stored to avoid re-calculation. So optino D is correct. akash_kumar 9 answered Mar 6 akash_kumar 9 comment Share Follow 0 reply Please log in or register to add a comment.