Am I able to change the default for the "penalty for each incorrect try"? It's set to 33.3 percent but I want to change it to 0%.
Change default for "penalty for each incorrect try" setting
Re: Change default for "penalty for each incorrect try" setting
Why not?
PLease note that if you set the penalty to 0 (zero), then the Adaptive mode is equivalent to the Adaptative mode (no penalties) for that question.
Joseph
Re: Change default for "penalty for each incorrect try" setting
I can't find where the default setting is in the admin setting! :/
Re: Change default for "penalty for each incorrect try" setting
As Joseph says, why would you want to use this? Which question behaviour(s) are you using?
At the moment the only way to change this default is in code. Providing an admin UI for this would be covered by MDL-36308, but I don't think anyone has any plans to work on that.
Re: Change default for "penalty for each incorrect try" setting
Not quite sure. Apparently one of my teachers always changes it to 0. I'm not usually making quizzes so I took his word for it...I'll see what he's trying to accomplish.
Well, it looks like they use this for questions to allow for multiple tries..
Re: Change default for "penalty for each incorrect try" setting
I would be very interested to know how they are using 'Interactive with multiple tries' with zero penalty, if that is indeed what they are doing, and how students respond to that.
This is the line of code you would need to change in order to change the default: https://github.com/moodle/moodle/blob/1446e02f69a76a4ec6128fc15e1bf7dc95a8f2f5/question/type/edit_question_form.php#L429
In the mean time, you can got for the tracker issue I mentioned.
Re: Change default for "penalty for each incorrect try" setting
@ Melissa:
We had the same issue at our university: Our lecturers usually take the 0.0 Penalty (the 33.3% is hardly ever used). We therefore changed one row in the code in <<Path to Moodle>>/question/type/edit_question_form.php (see also Tim's changes in Git)
from
$mform->setDefault('penalty', 0.3333333);
to
$mform->setDefault('penalty', 0.0)
@ Tim:
> I would be very interested to know how they are using 'Interactive with multiple tries' with zero penalty, if that is indeed what they are doing, and how students respond to that.
Most quizzes at our university are used the way I described: When students need to train in quizzes, our lecturers usually don't want to give them penalties when students can do multiple tries.