I want to create a quiz for my students where their correct and wrong answers for a checkbox question are commented afterwards as in:
you said: a
That is correct because....
you said: b
B is incorrect because....
I know I can provide comments to specific answers using this:
-- if: "Cat" in pets
--question: Are you a crazy cat person or just a normal cat person?
--Normal
--Crazy
--Very crazy
However, the answers to questions I want to use are longer texts and referencing an item in a collection, where the specified item is
*if: "Inertia is a force which keeps stationary objects at rest and moving objects in motion at constant velocity." in question1_answers
is really cumbersome. Especially if I change the wording of one of the possible answers. I'd have to change the wording in the question itself as well as in the *if: ".." in question1_answers bit.
Any better way to do this?