Great Deal! Get Instant $10 FREE in Account on First Order + 10% Cashback on Every Order Order Now

Untitled document Instruction ● It compiles and works, and is C++ code any of these versions: C++11, C++14, or C++17. ● it is designed using a class with methods ● it overloads the operator

1 answer below »

Untitled document
Instruction
● It compiles and works, and is C++ code any of these versions: C++11, C++14, or C++17.
● it is designed using a class with methods
● it overloads the operato
for non-standard output
● The main() function should be small and readable.
● Appropriate use of constants.
● Appropriate variable and function/method names
● Submitted before the deadline.
● Upload as one large main.cpp file.
● Your name must appear in top comment:
YOUR NAME (Syed Hussain)
Write a grading program for a class with the following grading policies:
There are two quizzes, each graded on the basis of 10 points.
There is one midterm exam and one final exam, each graded on the basis of 100 points.
The final exam counts for 50% of the grade, the midterm counts for 25%, and the two quizzes togethe
count for a total of 25%. (Do not forget to normalize the quiz scores. They should be converted to a
percentage before they are averaged in.)
Any grade of 90 or more is an A, any grade of 80 or more (but less than 90) is a B, any grade of 70 o
more (but less than 80) is a C, any grade of 60 or more (but less than 70) is a D, and any grade below 60
is an F.
The program will read in the student’s scores and output the student’s record, which consists of two
quiz and two exam scores as well as the student’s average numeric score for the entire course and final
letter grade.
Define and use a structure for the student record.
Answered 2 days After Dec 16, 2021

Solution

Anandkumar answered on Dec 16 2021
117 Votes
Question:
Write a grading program for a class with the following grading policies: There are two quizzes, each graded on the basis of 10 points. There is one midterm exam and one final exam, each graded on the basis of 100 points. The final exam counts for 50% of the grade, the midterm counts for 25%, and the two quizzes together count for a total of 25%. (Do not forget to normalize the quiz scores. They should be converted to a percentage before they are averaged in.) Any grade of 90 or more is an A, any grade of 80 or more (but less than 90) is a B, any grade of 70 or more (but less than 80) is a C, any grade of 60 or more (but less than 70) is a D, and any grade below 60 is an F. The program will read in the student’s scores and output the student’s record, which consists of two quiz and two exam scores as well as the student’s average numeric score for the entire course and final letter grade. Define and use a structure for the student record
Code:
Your Name here
#includeusing namespace std;
struct record
{
double Evaluation_of_quiz1;
double Evaluation_of_quiz2;
double midyear,...
SOLUTION.PDF

Answer To This Question Is Available To Download

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here