Motivation: current options make scoring calculation impossible when questions have no 'wrong' answers
While building a health-related self-assessment tool, I found that the Quiz module's multichoice question type had no option available for scoring that suited the client's needs. Essentially, scoring selected incorrect options as -1, or scoring un-selected incorrect options as 1 makes the calculation impossible since there are no wrong answers. For example, consider a quiz with multiple questions similar to the following:
Have you ever been diagnosed with any of the following:
- Condition X (2 points)
- Condition Y (2 points)
- Condition Z (2 points)
- None of these
In this case, we want to provide results like:
- If your score was zero, you're ok.
- If your score was two, you should ask your physician about condition Q on your next visit.
- If your score was four or higher, you should consult your physician about condition Q without delay
Assuming there were four such questions, and the user answered 'None of these' to two of them, that would negate one of the positive (2 point) answers and lower the score. The issue is that in these kinds of tools, (a) there are no 'wrong' answers, and (b) we don't really care if a user accidentally chooses 'None of these' and 'Condition Y'βwe just care about the 'Condition Y' option.
Resolution:
Add a 'Zero-scoring' option to multichoice question. This is relatively simple and requires only small changes to multichoice.classes.inc and multichoice.module (it appears that it should require changes to multichoice.js too, but I can't see that this file is ever used).
This feature has been requested previously (for 6.x)
Patch agains 7.x-4.x forthcoming shortly.
Remaining tasks
Needs review by maintainer/community and approval by maintainer.
User interface changes
Adds one option to the configuration screen at admin/quiz/settings/questions_settings.