Algorithm
Algorithm
1. Start.
2. Enter four quarter grades.
3. Compute the average of the four grades.
4. If the average grade is greater than 90, display "Outstanding".
5. If the average grade is greater than 80, display "Satisfactory".
6. If the average grade is greater than 70, display "Needs Improvement".
7. If the average grade is less than 70, display "Failed".
8. Stop.
PSEUDOCODE:
1. Start.
2. Enter four quarter grades.
3. Compute the average of the four grades.
4. If the average grade is greater than 90, display "Outstanding".
5. Else if the average grade is greater than 80, display "Satisfactory".
6. Else if the average grade is greater than 70, display "Needs Improvement".
7. Else if the average grade is less than 70, display "Failed".
8. Stop.
FLOWCHART:
START
INPUT four quarter grades
COMPUTE the average of the four grades
IF the average grade is greater than 90
DISPLAY "Outstanding"
ELSE IF the average grade is greater than 80
DISPLAY "Satisfactory"
ELSE IF the average grade is greater than 70
DISPLAY "Needs Improvement"
ELSE IF the average grade is less than 70
DISPLAY "Failed"
STOP