Answer:
Check the explanation
Step-by-step explanation:
A. The fundamental or basic operations are addition and division.
B. The total figure for each student (which starts at 0) will be included to c times. Given that there are r student totals, there are r*c additions for the totals. (An optional correct answer is r*(c-1) if you begin the accumulator with the initial item in a column, and perform (c-1) additions.)
Each exam average will be included to r times. In view of the fact that there are c exams, this gives another c*r additions.
All the exam average will be divided exactly once by the amount of students, c. So, c divisions.
C. O(rc)
D. LINEAR (Note: The Big O appears like a quadratic value, although the INPUT SIZE is rc, and the running time is linearly relative to the input size.)