• Create a C-language program that will ask user to input Students Name (should be full name) and grades in Exam, Quizzes, Exercises, Assignment, and Seatwork. It will then compute and display the Term Grade (with 2 decimal places) based on the given formula. (Note: for ease of computation, all grade values to be inputted by the user are in percentage form and NOT score values). Term Grade = 30% Exam + 20% Average Quiz + 30% Average Exercises + 20% Class Standing where, Class Standing = 50% Assignment + 50% Seatwork • It will also display the Remarks based on the computed term grade (use any of the conditional statements) Term Grade Remarks 90 to 100 Excellent 80 t0 89 Satisfactory 76 to 79 Good 75 Passing Below 75 Failed Here is the sample screen output Name: _________________ Exam: ___ Quiz #1: ___ Quiz #2: ___ Exer #1: ___ Exer #2:: ___ Seatwork: ___ Assignment: ___ Hi (NAME) your term grade is (COMPUTED GRADE) Remarks: (EQUIVALENT REMARKS)
• Create a C-language program that will ask user to input Students Name (should be full name) and grades in Exam, Quizzes, Exercises, Assignment, and Seatwork. It will then compute and display the Term Grade (with 2 decimal places) based on the given formula. (Note: for ease of computation, all grade values to be inputted by the user are in percentage form and NOT score values).
Term Grade = 30% Exam + 20% Average Quiz + 30% Average Exercises + 20% Class Standing
where, Class Standing = 50% Assignment + 50% Seatwork
• It will also display the Remarks based on the computed term grade (use any of the conditional statements)
Term Grade Remarks
90 to 100 Excellent
80 t0 89 Satisfactory
76 to 79 Good
75 Passing
Below 75 Failed
Here is the sample screen output
Name: _________________
Exam: ___
Quiz #1: ___
Quiz #2: ___
Exer #1: ___
Exer #2:: ___
Seatwork: ___
Assignment: ___
Hi (NAME) your term grade is (COMPUTED GRADE)
Remarks: (EQUIVALENT REMARKS)
Step by step
Solved in 2 steps