Quizzing
You can pause the video on defined timestamps and display quizzing questions.
There are several types of question types:
SingleChoice (Text)
Configuration
{
"quizzingquestions": [
{
"id": 1,
"QuestionType": "singlechoice_text",
"secondsFromStart": 10,
"skippable": true,
"Text": "Find the correct answer",
"FeedbackTextRight": "<h3>Well done!</h3><p>You are really smart!</p>",
"FeedbackTextWrong": "<h3>Wrong answer</h3><p>Please try again</p>",
"Answers": [
{
"id": 10,
"Text": "I am a wrong answer"
},
{
"id": 11,
"Text": "I am the right answer",
"IsRight": true
},
{
"id": 12,
"Text": "I am not the right answer"
},
{
"id": 13,
"Text": "I am a wrong answer"
}
]
}
]
}
SingleChoice (Image)
Configuration
{
"quizzingquestions": [
{
"id": 2,
"QuestionType": "singlechoice_image",
"secondsFromStart": 10,
"Text": "Where is the doll?",
"FeedbackTextRight": "<h3>Well done!</h3><p>You are really smart!</p>",
"FeedbackTextWrong": "<h3>Wrong answer</h3><p>Please try again</p>",
"Answers": [
{
"id": 20,
"Text": "Barbie",
"IsRight": true,
"Thumb": "https://sdn-global-prog-cache.3qsdn.com/uploads/5985/files/21/02/12/2749914/603e4cb1389071614695601.jpeg"
},
{
"id": 21,
"Text": "Filmstreifen",
"Thumb": "https://sdn-global-prog-cache.3qsdn.com/uploads/5985/files/21/02/12/2749914/603e4cb13e8921614695601.jpeg"
},
{
"id": 22,
"Text": "Klappe",
"Thumb": "https://sdn-global-prog-cache.3qsdn.com/uploads/5985/files/21/02/12/2749914/603e4cb14000f1614695601.jpeg"
},
{
"id": 23,
"Text": "FB Camera",
"Thumb": "https://sdn-global-prog-cache.3qsdn.com/uploads/5985/files/21/02/12/2749914/603e4cb1417541614695601.jpeg"
}
]
}
]
}
MultipleChoice (Text)
Configuration
{
"quizzingquestions": [
{
"id": 3,
"QuestionType": "multiplechoice_text",
"secondsFromStart": 10,
"Text": "Can you find the correct answers?",
"FeedbackTextRight": "<h3>Well done!</h3><p>You are really smart!</p>",
"FeedbackTextWrong": "<h3>Wrong answer</h3><p>Please try again</p>",
"Answers": [
{
"id": 30,
"Text": "I am correct",
"IsRight": true
},
{
"id": 31,
"Text": "I am wrong"
},
{
"id": 32,
"Text": "I am wrong"
},
{
"id": 33,
"Text": "I am correct",
"IsRight": true
},
{
"id": 34,
"Text": "I am wrong"
},
{
"id": 35,
"Text": "I am wrong"
}
]
}
]
}
MultipleChoice (Image)
Configuration
{
"quizzingquestions": [
{
"id": 4,
"QuestionType": "multiplechoice_image",
"secondsFromStart": 10,
"Text": "Can you find the correct answers?",
"FeedbackTextRight": "<h3>Well done!</h3><p>You are really smart!</p>",
"FeedbackTextWrong": "<h3>Wrong answer</h3><p>Please try again</p>",
"Answers": [
{
"id": 40,
"Text": "Filmstreifen",
"Thumb": "https://sdn-global-prog-cache.3qsdn.com/uploads/5985/files/21/02/12/2749914/603e4d3264dd31614695730.jpeg"
},
{
"id": 41,
"Text": "München",
"IsRight": true,
"Thumb": "https://sdn-global-prog-cache.3qsdn.com/uploads/5985/files/21/02/12/2749914/603e4d326679f1614695730.jpeg"
},
{
"id": 42,
"Text": "Barbie",
"Thumb": "https://sdn-global-prog-cache.3qsdn.com/uploads/5985/files/21/02/12/2749914/603e4d3267c111614695730.jpeg"
},
{
"id": 43,
"Text": "Klappe",
"IsRight": true,
"Thumb": "https://sdn-global-prog-cache.3qsdn.com/uploads/5985/files/21/02/12/2749914/603e4d32692851614695730.jpeg"
}
]
}
]
}
Assignment
Configuration
{
"quizzingquestions": [
{
"id": 5,
"QuestionType": "assignment",
"secondsFromStart": 10,
"Text": "Assign the persons to the companies",
"FeedbackTextRight": "<h3>Well done!</h3><p>You are really smart!</p>",
"FeedbackTextWrong": "<h3>Wrong answer</h3><p>Please try again</p>",
"Answers": [
{
"id": 50,
"Text": "Steve Jobs",
"Bucket": "Apple"
},
{
"id": 51,
"Text": "Bill Gates",
"Bucket": "Microsoft"
},
{
"id": 52,
"Text": "Steve Ballmer",
"Bucket": "Microsoft"
},
{
"id": 53,
"Text": "Steve Wozniak",
"Bucket": "Apple"
}
]
}
]
}
Cloze
Configuration
{
quizzingquestions: [
{
id: 6,
QuestionType: "close",
secondsFromStart: 10,
Text: "Fill in the blanks",
FeedbackTextRight: "<h3>Well done!</h3><p>You are really smart!</p>",
FeedbackTextWrong: "<h3>Wrong answer</h3><p>Please try again</p>",
Answers: [
{
"Text": "Zwei flinke __Boxer__ jagen die quirlige __Eva__ und ihren __Mops__ durch Sylt."
}
]
}
]
}
Reflection
Configuration
{
quizzingquestions: [
{
id: 7,
secondsFromStart: 10,
QuestionType: "reflection",
Text: "This is just a text. We recommend using CtA instead"
}
]
}
Last updated