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 »
all instruction are in pdf file


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< 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 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. 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="" 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="">
Answered 2 days AfterDec 16, 2021

Answer To: Untitled document Instruction ● It compiles and works, and is C++ code any of these versions: C++11,...

Anandkumar answered on Dec 16 2021
128 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
#include
using 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