I made an activity (all multiple choice) and I want to add a slide at the end that tells the student how many slides they got correct. How do I do this?
A few things to do, but not too difficult.
- You’ll need to give your MC components unique names (e.g. mc1, mc2, mc3, etc.).
- In each MC’s CL, make a variable for that screen’s score. Change the number to match the correct choice:
score = when this.isSelected(4) 1 otherwise 0
- In your final slide, probably in a note, you’ll total up their score.
total = "${numericValue(`${mc1.script.score}+${mc2.script.score}+${mc3.script.score}+${up to your last}`)}"
- Last make your student note “You got ___ correct.” where you’ll select the {#} button, instead of the blank, to select the total.
It worked!! Thank you so much for your help. You rock!
1 Like
It worked!! Thank you so much for your help. You rock!