Podcast
Questions and Answers
What is a key characteristic of a good multiple-choice question?
What is a key characteristic of a good multiple-choice question?
- Including ambiguous language to confuse test-takers
- Including as much information as possible
- Having only one clearly correct answer (correct)
- Providing vague and unrelated distractors
How should distractors in a multiple-choice question be constructed?
How should distractors in a multiple-choice question be constructed?
- They should always be in alphabetical order
- They should be completely unrelated to the question
- They should be similar to the correct answer but with a small difference (correct)
- They should be significantly longer than the correct answer
What is the correct way to represent an example JSON format?
What is the correct way to represent an example JSON format?
- {'question': 'Sample question', 'options': ['Choice A', 'Choice B', 'Choice C', 'Choice D'], 'answer': 'a', 'info': 'Additional information about the answer'}
- {'question': 'Sample question', 'options': {'a': 'Choice A', 'b': 'Choice B', 'c': 'Choice C', 'd': 'Choice D'}, 'answer': 'Choice A', 'info': 'Additional information about the answer'} (correct)
- {'question': 'Sample question', 'options': {'a': 'Choice A', 'b': 'Choice B', 'c': 'Choice C', 'd': 'Choice D'}, 'answer': 'a', 'info': 'Additional information about the answer'}
- {'question': 'Sample question', 'options': ['Choice A', 'Choice B', 'Choice C', 'Choice D'], 'answer': 'Choice A', 'info': 'Additional information about the answer'}