Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Create program on C++ to simulate the Education System by dividing the program into functions. Step 1: [12 marks] Computers are playing an increasing role

Create program on C++ to simulate the Education System by dividing the program into functions.

Step 1: [12 marks]

Computers are playing an increasing role in education. Create program that will help an elementary school student learn multiplication. Use a Random number function to produce two positive one-digit integers. The program should then prompt the user with a question, such as

How much is 6 times 7?

The student then inputs the answer. Next, the program checks the student's answer. If it is correct, display the message "Very good!" and ask another multiplication question. If the answer is wrong, display the message "No. Please try again." and let the student try the same question repeatedly until the student finally gets it right.

A separate function should be used to generate each new question. This function should be called once when the application begins execution and each time the user answers the question correctly.

Step II: [4 marks]

Modify the program to vary the comments that are displayed for each correct answer and each incorrect answer. The response to a correct answer should be chosen from:

Very good!

Excellent!

Nice work!

Keep up the good work!

The response to an incorrect answer should be chosen from:

No. Please try again.

Wrong. Try once more.

Don't give up!

No. Keep trying.

Use random-number generation to choose a number from 1 to 4 that will be used to select an appropriate response to each answer. Use a switch statement to issue the responses.

Step III: [4 marks]

Modify the program to count the number of correct and incorrect responses typed by the student. After the student types 10 answers, your program should calculate the percentage of correct responses.

If the percentage is lower than 75%, display "Please ask your instructor for extra help." and reset the program so another student can try it. If the percentage is 75% or higher, display "Congratulations, you are ready to go to the next level!", then reset the program so another student can try it.

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

Financial management theory and practice

Authors: Eugene F. Brigham and Michael C. Ehrhardt

12th Edition

978-0030243998, 30243998, 324422695, 978-0324422696

Students also viewed these Programming questions