Computers are playing an increasing role in education. Write a program that will help an…
Computers are playing an increasing role in education. Write a program that will help an elementary school student learn multiplication. Use the Next method from an object of type Random to produce two positive one-digit integers. It should display a question in the status bar, such as
The student should then type the answer into a TextBox. Your program should check the student’s answer. If it is correct, draw the string “Very good!” in a read-only TextBox, then ask another multiplication question. If the answer is wrong, draw the string “No. Please try again.” in the same read-only TextBox, then let the student try the same question again until the student finally gets it right. A separate method should be used to generate each new question. This method should be called once when the program begins execution and each time the user answers the question correctly.