Table of Contents
◾️Steps to Create an Original Challenge (Fill-in-the-Blank)
Select the
Questionstab.On the right side, click
+ Create New QuestionFor Question Type, choose
Fill in Blank.Enter a
Titleand compose the Question.Add one or more answers, then click
OK
※ If you add or update a Question that belongs to a Challenge already included in an Exam, be sure to update that Challenge to its latest version.
◾️ Fill-in-the-Blank Syntax
The default placeholder syntax is ${}
When you click Add Blank, ${ANSWER} appears.
You can register the correct answer by replacing ANSWER inside ${}
Example with multiple blanks in one sentence:
The three primary colors of light are ${red}, ${green}, and ${blue}.
The examinee must fill in all three blanks correctly to earn points.
You can also use regular expressions:
※When multiple answers are allowed
// Any of blue, red, or green is correct ${/blue|red|green/}
※Case-insensitive
// red or green is correct, regardless of case ${/^(red|green)$/i}
※Ignore full-width / half-width characters
// 35 or 35 is correct, regardless of character width ${/[33][55]/}




