InterviewSolution
Saved Bookmarks
| 1. |
Which of the following methods can be used to solve the matrix chain multiplication problem?(a) Dynamic programming(b) Brute force(c) Recursion(d) Dynamic Programming, Brute force, RecursionI got this question by my college director while I was bunking the class.This question is from Matrix-chain Multiplication in section Dynamic Programming of Data Structures & Algorithms II |
|
Answer» RIGHT CHOICE is (d) DYNAMIC Programming, BRUTE force, Recursion Easy explanation - Dynamic Programming, Brute force, Recursion methods can be used to solve the matrix chain MULTIPLICATION problem. |
|