All-or-Nothing Multiple Choice
Maintained by
Eoin Campbell, Jean-Michel Védrine
The all-or-nothing multiple choice question is a version of the core multi-answer multiple choice question with modified grading. In an all-or-nothing multiple choice question, a respondent can choose one or more answers. If the chosen answers correspond exactly to the correct choices defined in the question, the respondent gets 100%. If he/she chooses any incorrect choices or does not select all of the correct choices, the grade is 0%.
Comments
Comments are no longer open for new posts. Existing comments remain available to read.
Some answers to recent comments:
To Bozan Zugec: sorry but this part of the plugin was contributed by somebody else, I know nothing about the mobile app, I don't have it running so I am unable to help fixing that problem
To Cameron Hallowell: There is no easy way to upload multichoiceset questions using the GIFT format because this format is not "open": it wasn't created to easily allow new question types. On the contrary the Moodle XML format is more open and extensible. and I have created a plugin that import all multichoice questions as all or nothing questions, see https://moodle.org/plugins/qformat_multichoiceset. So maybe you could try to create your questions as ordinary multichoice questions in a GIFT file, import the result into Moodle, export it as a Moodle XML file and re-import the result using qformat_multichoiceset. Of course this introduce more step to the process but maybe if you have a large number of questions to import that would result in a more rapid process than creating the questions one by one.
To Alexander Okon: Sorry you have problem with the last update, but I can't see how the changes introduced by Eoin Campbell in the last version could cause that kind of problem. Maybe something has go wrong in the upgrade process and one of your files is corrupted ? try to replace all files in the question/type/multichoiceset subfolder by new ones freshly downloaded from the plugin directory. If this doesn't solve your problem go to the site administration and activate debugging to see if any error message is displayed that would help to diagnoze the problem.
As a general note: If you want some help, it would be a lot better to post a message in the Quiz forum, answering to your comments on this page is very painful for me as there is no formatting, no way to include images or to attach files. Thanks
to make the all or nothing question type respect your choice of answernumbering, you can do the following change
In the question/type/multichoiceset/edit_multichoiceset_form.php file
Change the line:
$mform->setDefault('answernumbering', 'abc');
to:
$mform->setDefault('answernumbering', get_config('qtype_multichoice', 'answernumbering'));
I am no more maintaining this question type but that seems as a sensible change to me. Maybe You can ask Eoin Campbell, the new maintainer to do that change in the plugin ?