Question: 4- Write an efficient pseudo code (Java like) that computes gpa for k courses taken. Assume unit[] and grade[] arrays contain courses information. NOTE: No
4- Write an efficient pseudo code (Java like) that computes gpa for k courses taken. Assume unit[] and grade[] arrays contain courses information.
NOTE: No I/O is required in this pseudo code.
Example: To compute gpa for 3 courses:
units grade
3 80 gpa = (3*80+2*75+4*90)/(3+2+4)
2 75 = (240+150+360)/9
4 90 = 750/9 = 83.3
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
