b2KIT

Quiz Maker

Build multiple-choice and true/false quizzes with scoring, timer, and review mode stored locally.

Tested tool guide Tested browser tools Checked August 16, 2026

What Quiz Maker does, with a checked example

Quizzes you build here are graded by the answer key you mark, and they live in the browser's local storage: reopen the page on the same machine and they are still there, but they will not follow you to another browser, another device, or a private window. You write the questions, mark the correct answer for each, then take the quiz against a timer. The score is correct answers divided by total questions, and review mode shows each question with your answer next to the keyed one. The surprise: the tool grades exactly what you told it, so a mis-keyed question is faithfully graded wrong.

Worked example

A concrete input and expected output from the current implementation.

Input

A two-question true/false quiz. Question 1: 'Water freezes at 100 degrees Celsius', keyed False. Question 2: 'Earth orbits the Sun', keyed True. You answer False to question 1 and False to question 2.

Expected output

Score 1 of 2, or 50%. Review mode flags question 2: your answer False, correct answer True. Question 1 is marked correct.

Each answer is graded against the key you set: one of two answers is correct, so the score is 1 of 2, and only the missed question appears in review with its keyed answer.

How the result is produced

1

Building a quiz

You add questions one at a time. Each entry needs a prompt, the answer choices (two fixed options for true/false, more for multiple choice), and a single option marked as correct, which becomes the answer key. The finished question set is saved to local storage, so it survives reloads on the same browser. Nothing is uploaded; the quiz is only as good as the key you set.

2

Taking, scoring, and reviewing

When a quiz runs, questions appear one at a time with their choices, a timer tracks the attempt, and answers are collected without showing whether they are right. Submitting ends the run: the score is the share answered correctly, as a fraction and a percentage. Review mode then walks through every question showing your answer beside the keyed one, and the run's result is kept in local storage.

Good uses

  • Drill for a vocabulary or facts test: turn your study list into multiple-choice questions and repeat runs until the score stabilizes near 100%.
  • Simulate a timed written exam, such as a permit test or certification practice, using true/false items to practice pacing against the clock.
  • Stand up a quick trivia or classroom quiz on a single computer for family or students, with no account, login, or network needed.

Limits and checks

  • Local storage is per browser and per device. The quiz and its results are gone in a different browser, on another machine, in a private window, or if the user clears site data.
  • The score inherits every error in your answer key. If you mark the wrong option while building, the tool grades against your mistake, and the score looks wrong no matter how the taker answers.
  • Grading is all or nothing per question. A nearly correct multiple-choice option earns zero on that item, because only an exact match to the key can be scored.

Common questions

Will my quiz still be there when I reopen the page tomorrow?

Yes, on the same browser and device: the quiz and past results are saved in local storage. No, not elsewhere: a different browser, another computer, or a private window starts empty, and clearing site data deletes everything. There is no account or sync to recover from.

Can I send the quiz to someone so they can take it?

Not directly. There is no sharing link and no hosted copy, because quizzes never leave this browser. Another person can take it only on the machine where it was built, or you rebuild the same questions in their browser from scratch.

References and verification

The example and behavioral notes were checked against the browser implementation. Standards and primary references below define the relevant format, formula, or platform behavior.

Related Tools