I am just trying to make a quiz system for young people to learn road/traffic signs.The idea was also to make something in a way that i later can use the same system for other types of quizzes.
I have just started out, and this is what i have planned so far: (I am doing this in Java)
The idea is that i eventually can use any model, not just Roadsign, inside the Question class. Maybe it also can be done in such a way that you decide inside the Question class what attribute/member of the model class you wish to use as the answer.
I am unsure on how i would model such a system, especially on behalf of the Question class.
Hopes this makes sense, and that someone wants to share me some good ideas :)
If you want to model a quiz system where each question consists of an image (in your case Roadsign), a question and answer options, you could do it like that:
Each question could then have an image, a question (so that you can also ask questions unlike What does the image show?
), one right answer, and several wrong answers.