Podcast
Questions and Answers
Which of the following is a valid example of the JSON format provided?
Which of the following is a valid example of the JSON format provided?
- {'question': 'What is the capital of France?', 'options': ['Berlin', 'Paris', 'Rome'], 'answer': 'Paris'} (correct)
- {'question': 'What is the capital of France?', 'options': ['Berlin', 'Paris', 'Rome'], 'answer': 1}
- {'question': 'What is the capital of France?', 'options': ['Berlin', 'Paris', 'Rome'], 'answer': 'Berlin'}
- {'question': 'What is the capital of France?', 'options': ['Berlin', 'Paris', 'Rome'], 'answer': 0}
What is the purpose of the 'info' field in the JSON format provided?
What is the purpose of the 'info' field in the JSON format provided?
- To define the structure of the JSON format
- To provide additional context or information about the correct answer (correct)
- To specify the number of options in the multiple choice question
- To indicate the position of the correct answer in the 'options' array
Which of the following is a common misunderstanding about the 'options' field in the JSON format provided?
Which of the following is a common misunderstanding about the 'options' field in the JSON format provided?
- It can only contain numeric values
- It can contain a mix of different data types (correct)
- It can only contain string values
- It can only contain boolean values