Question: In C++ please Assignment # 01 Grading Point Calculator System: This is the first assignments in this class. This assignment will calculate the grading point

 In C++ please Assignment \# 01 Grading Point Calculator System: Thisis the first assignments in this class. This assignment will calculate the

In C++ please

Assignment \# 01 Grading Point Calculator System: This is the first assignments in this class. This assignment will calculate the grading point for the class. When you run the program, it will ask for the student Id then student name. The grading criteria is based on the five things. 1. Homework assignments (20\%); 2. Lecture Attendance (5\%); 3. Lab assignments (30\%); 4. Midterm exam (20\%6); 5. Final exam (25\%) \[ \begin{array}{l} \text { TOTAL_HOME_ASSIGNMENT }=200 \\ \text { TOTAL_ATTENDANCE }=50 \\ \text { LAB_ASSIGNMENT }=300 \\ \text { MID_TERM }=100 \\ \text { FINAL_EXAM }=200 \end{array} \] Therefore, next your system will ask to enter the marks/points for each five categories. For the example of home assignments: Enter the total points for homework assignments (0200) : After entering the points for each category, the system will calculate the percentage of mark from the total points of each category. For the example of Homework assignment: homeAssignment =( homeAssignment 100) / TOTAL_HOME_ASSIGNMENT; homeWorkAssignment = homeAssignment (0.2). The multiplication factor is 0.2 because 20% marks come from the homework assignment. Similar way calculates the other points. Next calculate the total marks that achieved by the student: totolPoint = homeWorkAssignment + lectureAttendonce + lobAssignment + midTermExom + finalExam; Then calculate the Grade for the student: If the totalPoint is between 94 to 100 then ' A ' else if the totalpoint is between 90 to 93 then 'A-' .else if the totalPoint is between 60 to 62 then 'D-' else "Fail" Sample output

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!