Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

I have this code right here, can someone edit this code and add a final score where it calculate the score of the 4 questions,

I have this code right here, can someone edit this code and add a final score where it calculate the score of the 4 questions, it should be out of 100 points. here is the code that i have:

#include "Quiz.h" #include "MCquestion.h" #include "SAquestion.h" #include #include using namespace std;

Quiz::Quiz() { score = 0; question01 = MCquestion(); question02 = SAquestion(); question03 = MCquestion(); question04 = SAquestion(); };

double Quiz::getScore() const { return score; };

void Quiz::startAttempt() { question01.display(); cout << "Enter your choice : "; int choice1; cin >> choice1; if (question01.isCorrect(choice1)) { cout << "Your answer is correct " << endl; } else { cout << "Wrong answer " << endl; }

question02.display(); cout << "Enter your choice : "; string choice2; cin >> choice2; if (question02.isCorrect(choice2)) { cout << "Your answer is correct " << endl; } else { cout << "Wrong answer" << endl; }

question03.display(); cout << "Enter your choice : "; int choice3; cin >> choice3; if (question03.isCorrect(choice3)) { cout << "Your answer is correct " << endl; } else { cout << "Wrong answer" << endl; }

question04.display(); cout << "Enter your choice : "; string choice4; cin >> choice4; if (question04.isCorrect(choice4)) { cout << "Your answer is correct " << endl; } else { cout << "Wrong answer" << endl; } };

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Systems Analysis And Synthesis Bridging Computer Science And Information Technology

Authors: Barry Dwyer

1st Edition

0128054492, 9780128054499

More Books

Students also viewed these Databases questions