Score for correct answers after each problem

I have tried to put a score on the bottom of slide 16 and have no clue what to do.

I want the students to answer a question and see how many they have gotten right or wrong.

Do any of you have any ideas?

Thank you so much in advance :slight_smile:

You can use a capture in your button, conditionally 1 or 0, using your same correctness check that you have in your note:

capture(`score`): when correctConditionsHere 1 otherwise 0

Then, make a list in your graph CL:

numberList(`S`): button0.history(`score`)

You can then use total(S) in the graph for final count. Use length(S) for questions attempted.

If you want to clear the input box, Iā€™d also add:

resetOnChange: "${button0.pressCount}"

Not sure if resetLabel: in your button is necessary.

Thank you for the response!
I tried to fill out what you were saying and it was marking it wrong for the button with the correctConditionHere.
(Do I have to label something that title?)

Yes @Elyse.Carmack, you should be replacing that with whatever your correct: condition is for your slide.

1 Like

Whatever conditions you used to determine correctness to display the graph should be placed there. It was a placeholder not a variable or anything.

1 Like