need help with my exercise

I am slowly getting lost at this point in my class.



The local Driver’s License Office has asked you to write a program that grades the written portion of the driver’s license exam. The exam has 20 multiple choice questions. Here are the correct answers:

1.B 6.A 11.B 16.C
2.D 7.A 12.D 17.A
3.A 8.D 13.C 18.D
4.A 9.B 14.A 19.A
5.C 10.B 15.C 20.A

Your program should store the correct answers shown above in an array. It should ask the user to enter the student’s answers for each of the 20 questions, which should be stored in another array. After the student’s answer have been entered, the program should display a message indicating whether the student passed or failed the exam.( A student must correctly answer 15 of the 20 questions to pas the exam). It should then display the total number of correctly answered questions, and the total number of incorrectly answered questions.

Input validation: Only accept the letters A, B, C or D.

Ask questions.
Do you know how to declare an array? get input? compare the two arrays?
write out a sample code out first then we will help u :). This exercise should not be difficult for u as you just have to declare an array ,get input from user , compare the two arrays and print out the result.
Last edited on
i got it the issue i was having was how do i check to see if the answers were correct and print out the amount of right and wrong
Topic archived. No new replies allowed.