This is a common pattern: I have a list of independent criteria that a student's answer must fulfil. For each of them, I want to add a certain amount of credit if it's satisfied, and give some negative feedback otherwise.
At the moment, it's possible with this:
if(criterion_satisfied,
add_credit(amount, "You did it!")
, negative_feedback("You didn't do it.")
)
XBlock to display SCORM content within the Open edX LMS. Editable within Open edx Studio. Will save student state and report scores to the progress tab of the course. Currently supports SCORM 1.2 and SCORM 2004 standard.
Discover, Share, and Present interactive & animated presentations and infographics with the worlds #1 slide sharing platform with awesome html5 convertion capabilities.Get detailed insights from your wow presentations.
This is a common pattern: I have a list of independent criteria that a student's answer must fulfil. For each of them, I want to add a certain amount of credit if it's satisfied, and give some negative feedback otherwise.
At the moment, it's possible with this:
It would be c