b) The following C+ program segment computes C = A * B, where A is an “m" by "n" matrix, B is an “n" by “r" matrix and C is an “m" by "r" matrix. for (long int i = 0; i< m; i++) for (long int j = 0; j< r; j++) long double Sum = 0; for (long int k = 0; k < n; k++) Sum = Sum + Ali[k] * B[k][]; CIJN = Sum; How many times does the code iterate in computing i) Sum? ii) The j" column of C, i.e. C[i][j] for a fixed i and j = 1, 2, ,3, ., r? iii) The complete matrix C?

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter8: Arrays And Strings
Section: Chapter Questions
Problem 10PE
icon
Related questions
Question
b) The following C++ program segment computes C = A * B, where A is an “m" by “n"
matrix, B is an “n" by "r" matrix and C is an “m" by “r" matrix.
for (long int i = 0; i < m; i++)
for (long int j = 0; j< r; j++)
long double Sum = 0;
for (long int k = 0; k < n; k++)
Sum = Sum + A[i[K] * B[k]N;
CUN = Sum;
}
How many times does the code iterate in computing
i) Sum?
ii) The j column of C, i.e. C[i][j] for a fixed i and j = 1, 2, ,3, ., r?
iii) The complete matrix C?
....
Transcribed Image Text:b) The following C++ program segment computes C = A * B, where A is an “m" by “n" matrix, B is an “n" by "r" matrix and C is an “m" by “r" matrix. for (long int i = 0; i < m; i++) for (long int j = 0; j< r; j++) long double Sum = 0; for (long int k = 0; k < n; k++) Sum = Sum + A[i[K] * B[k]N; CUN = Sum; } How many times does the code iterate in computing i) Sum? ii) The j column of C, i.e. C[i][j] for a fixed i and j = 1, 2, ,3, ., r? iii) The complete matrix C? ....
Expert Solution
Step 1

i) code will iterate m*r*n times since sum will be calculated in innermost loop or 3rd loop so it will require to run all 3 loops.

trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps

Blurred answer
Knowledge Booster
Array
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
Programming Logic & Design Comprehensive
Programming Logic & Design Comprehensive
Computer Science
ISBN:
9781337669405
Author:
FARRELL
Publisher:
Cengage
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr