Im not sure where to even start with this assignemnt could someone help me?

closed account (30D23TCk)
Write a program quiz generator program to help students study for quizzes and exams. The program must call a function that reads a set of multiple choice questions from a file, storing the questions in an array of object of the class Question. The class maintains the question text, an array of possible answers, and the correct answer.
After loading the questions, the program should loop through the array prompting the student with the question and checking the student’s answer. The program should indicate “correct” to the student, if the answer is correct, otherwise indicate “incorrect” and display the correct answer (see sample) below.
After all questions have been answered, the program should display the student score in points, and correct score percentage.

The question file format is as follows:
(1) question text?
first possible answer
second possible answer
third possible answer
fourth possible answer
fifth possible answer
x correct answer number.
(2) question text?
first possible answer
second possible answer
third possible answer
fourth possible answer
fifth possible answer
x correct answer number.

(n) question text?
first possible answer
second possible answer
third possible answer
fourth possible answer
fifth possible answer
x correct answer number.
Name your program lastNamePass4.cpp. Your program should meet the following requirements

main()
Topic archived. No new replies allowed.