Skip to main content

Create Original Questions – Fill-in-the-Blank

Track Test CS_Seiya Tajima avatar
Written by Track Test CS_Seiya Tajima
Updated over 2 weeks ago

Table of Contents

◾️Steps to Create an Original Challenge (Fill-in-the-Blank)

  1. Select the Questions tab.

  2. On the right side, click + Create New Question

    Questions-Track-Demo-Track-Test-06-23-2025_05_40_PM.png
  3. For Question Type, choose Fill in Blank.

    Questions-Track-Demo-Track-Test-06-23-2025_05_40_PM (1).png
  4. Enter a Title and compose the Question.

  5. Add one or more answers, then click OK

    Questions-Track-Demo-Track-Test-06-23-2025_05_56_PM.png

※ 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]/}


◾️ How to Create Other Types of Original Questions

Did this answer your question?