Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature request: MCQs that do not tell the student their response is incorrect #684

Open
garrettgman opened this issue Apr 22, 2022 · 4 comments

Comments

@garrettgman
Copy link
Member

We need a variant of multiple choice question that does not grade a user's responses wrong.

Use Case: Make a guess

I commonly ask students to pre-think before instruction. I do this with a multiple choice question like, "Make a guess. What would happen if you ran 1 + ?" I would like to provide the student feedback based on their answer, but I would not like to indicate that any answer is wrong. i.e. with a red message and the word Incorrect. I would prefer that:

  1. The correct answer is handled as is with a green background and the word Correct
  2. Other answers are handled in a more neutral way: a neutral colored background and no Incorrect at the top of the message.

I have no opinion on the best syntax for specifying this.

@garrettgman
Copy link
Member Author

This is 100% about students seeing that their answer was incorrect and then becoming demotivated.

FWIW, if the MCQ needs to return a Correct/Incorrect grade to a non-student facing place, like the logs, I'm happy for the MCQ to log Incorrect.

@rossellhayes
Copy link
Contributor

Thinking out loud, I can see two primary ways to achieve this:

  1. Adding a third function to the pass()/fail() family that returns neutral feedback.
  2. Adding an option to an exercise to convert all fail()s into neutral feedback.

@garrettgman Can you envision a situation where we would want to pass() one response, fail() another, and respond neutrally to a third? Or would it be sufficient to simply make all fail()s look more neutral for certain exercises?

@garrettgman
Copy link
Member Author

All of the scenarios that I am thinking of fall into a "there are no wrong answers" category. If that is the easiest solution to implement it would certainly be enough to fix the demotivation problem 😄.

I don't want to rule out the usefulness of the incorrect/neutral/correct option, but I can't think of a use case at this moment.

@gadenbuie
Copy link
Member

Exercises, like questions, initially had a strict binary interpretation of correctness. We added the concept of neutral feedback option by taking advantage of a small loophole in learnr's checks of feedback$correct that accepted correct = logical(0) as valid feedback.

We could take a similar approach to carve out a notion of a neutral question answer, but it'll be a little more complicated to implement for questions than it was for exercises, since each question type requires its own method.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants