Saved Quizzes

Note: Storage is not persistent. Please export your quizzes to make a backup. Maximum number of quizzes is 20.

How to Use

Creating a Quiz

The Quiz Maker supports four types of questions: Multiple Choice, Checkbox (multiple correct answers), Fill the Blank, and Match questions.

You can create a quiz in three ways:

  • Upload a .qz file containing all your questions
  • Type questions directly in the text area
  • Load questions from a URL

The .qz file is a simple text file that contains all your questions in the format described below. You can create it in any text editor and save it with the .qz extension.

Question Formats

Important: Correct answers must end with a capital letter X to mark them as correct.

Multiple Choice:
# Question text
- Option 1
- Option 2
- Correct Answer X

Only one answer should have X (the correct one).

Checkbox (Multiple Correct Answers):
## Question text
- Option 1 X
- Option 2
- Option 3 X

Multiple answers can have X (all correct ones).

Fill Blank:
### Text with ___ blank and ___ another blank
- Answer for first blank
- Answer for second blank

Use ___ to mark blank spaces. Provide answers in order.

Match:
#### Match question
- [Term 1, Definition 1]
- [Term 2, Definition 2]
- [Term 3, Definition 3]

Each pair should be in [term, definition] format.

Adding Images:
# Question with image [Image Title](https://example.com/image.png)
- Option 1
- Correct Answer X

Use markdown format: [Image Title](image-url) anywhere in your question text.

Line Breaks:
# Question with line break<br>This is a new line
- Option 1
- Correct Answer X

Use <br> tag to create new lines in your questions. The example above shows how to use it.