Forum Discussion
Lee-AnnWilliams
2 years agoCommunity Member
Custom quiz results
I'm looking for a way to create 5 separate quizzes in a single course, of which learners are responsible for passing 3. Is there a way to do that? I thought maybe passing a number variable (one poin...
javiergray
2 years agoCommunity Member
Yes, you can achieve this by implementing a scoring system and tracking the learner's progress through variables. Each quiz should be a separate module with its own passing criteria. As learners complete a quiz, you update a variable to indicate their score (e.g., 1 for passing, 0 for failing). Once they have completed 5 quizzes, you can use a code to calculate the total score (sum of passed quizzes) and check if it meets the requirement (3 quizzes passed). Based on this, you can display a final results slide with the learner's performance. Your developers can use JavaScript or a similar language for this implementation.