1. Computer Science Engineering (CSE)
  2. Design and Analysis of Algorithms
  3. How many recursive calls are there in Re...
Q.

How many recursive calls are there in Recursive matrix multiplication by Strassen’s Method?

A. 5
B. 7
C. 8
D. 4
Answer» B. 7
Explanation: for the multiplication two square matrix recursively using strassen’s method, there are 7 recursive calls performed for high time complexity.

Discussion