Podcast
Questions and Answers
Which of the following is a valid example of the JSON format mentioned in the text?
Which of the following is a valid example of the JSON format mentioned in the text?
- {'question': 'What is the capital of France?', 'options': ['Berlin', 'Paris', 'London', 'Madrid'], 'answer': 3}
- {'question': 'What is the capital of France?', 'options': ['Berlin', 'Paris', 'London', 'Madrid'], 'answer': 2}
- {'question': 'What is the capital of France?', 'options': ['Berlin', 'Paris', 'London', 'Madrid'], 'answer': 4}
- {'question': 'What is the capital of France?', 'options': ['Berlin', 'Paris', 'London', 'Madrid'], 'answer': 1} (correct)
Which of the following is NOT a requirement for a valid multiple choice question in the JSON format?
Which of the following is NOT a requirement for a valid multiple choice question in the JSON format?
- 'answer': 2 (correct)
- 'question': 'What is the capital of France?'
- 'options': ['Berlin', 'Paris', 'London', 'Madrid']
- 'info': 'The correct answer is Paris.'
What is the purpose of the 'info' key in the JSON format for multiple choice questions?
What is the purpose of the 'info' key in the JSON format for multiple choice questions?
- To specify the index of the correct answer in the 'options' array.
- To list the possible options for the question.
- To provide additional context or information about the correct answer. (correct)
- To define the question being asked.