Need help writing psuedocode for the following question
The local driver's license office has asked you to design 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 2. D 3. A 4. A 5. C
6. A 7. B 8. A 9. C 10.D
11. B 12. C 13. D 14. A 15. D
16. C 17. C 18. B 19. D 20. A
Your program should store these correct answers in an Array. Store each question's correct answer in an element of a String array. The program should ask the user to enter his answers for each of the 20 questions, which should also be stored in another array. Then the program should display a message indicating whether the student passed the test or failed. (A student must correctly answre 15 of the 20 questions to pass the test). It should then display the total number of correctly answered questions, the total number of incorrectly answered questions, and a list showing the question numbers
of the incorrectly answered questions.
Hope anyone is here to help