Hi Sonia,
You can take a look at the Survey builder example project.
https://appstore.home.mendix.com/link/app/2191/Mendix/Survey-Builder
I think you have to first take some actions on creating the domainmodel:
I think you need some entities like:
- Questions (where you can store the questions you will ask)
- Answeroptions (where you can store the options a user can choose between; this entity is related to questions)
- Quiz (the set of questions; this entity is related to questions)
- FilledInQuiz (this is an entity with, for every user doing a quiz, the stored answers)
Next step is to create some pages for creating and maintaining questions, answers, quizes
Next step is to create a page where a quizquestion will be shown and where the user can select an answer. On that page will be an action that saves the answer in the entity FilledInQuiz
The challenge seems to be the data model. I would create a Question Entity and an Answer Entity pointing to the question entity. In the answer entity you could have a boolean attribute, telling you if it is the correct or incorrect answer.
The rest is building the user interface and a game board counting the points.