InterviewSolution
Saved Bookmarks
| 1. |
Strassen’s algorithm is a/an_____________ algorithm.(a) Non- recursive(b) Recursive(c) Approximation(d) AccurateI got this question during an interview.The question is from Number Theory in chapter Number Theory of Data Structures & Algorithms II |
|
Answer» CORRECT CHOICE is (b) Recursive The EXPLANATION is: Strassen’s Algorithm for MATRIX multiplication is a recursive algorithm since the present output depends on previous outputs and INPUTS. |
|