How to make an auto-graded online quiz
Last updated 6 min read
An auto-graded quiz is one where every question has an answer the software can check: multiple choice, checkboxes, dropdowns, yes/no and short text. Get the answer key right and marking disappears; get it wrong and you will spend the evening apologising to students who answered correctly.
What grades itself, and what never will
- Multiple choice: the most reliable. One defensible correct answer, three to five options.
- Checkboxes: graded, but usually all-or-nothing — partial credit is not a thing in most tools, so split the question if you need it.
- Dropdown: for long option lists such as years, countries or terms.
- Yes/no: for statements that are clearly true or false, not for anything arguable.
- Short text: graded by exact match, so list every acceptable form — singular and plural, with and without the article, common synonyms.
- Long text and file upload: never auto-graded. Keep them for homework, not for a timed test.
Writing an answer key that holds up
Most complaints after a quiz come from the same two places: a short-text answer that was right but spelled differently, and a multiple-choice question with two defensible answers. Both are answer-key problems, not student problems.
Before you publish, take your own quiz as a student would. It takes four minutes and catches the ambiguous question that would otherwise cost you an hour of email.
Keeping it honest without buying proctoring
- Shuffle questions and options so neighbours do not see the same order.
- Use a server-side timer — a timer that runs in the browser is a timer the browser can be told to ignore.
- Limit to one attempt per browser, and publish the link in a window rather than leaving it open all week.
- Prefer comprehension questions over lookup questions: if the answer is a single searchable phrase, the internet will answer it faster than your students.
- Decide deliberately whether to show correct answers immediately — showing them turns the first taker into everyone's answer key.
Where the free tools stop
Google Forms and Microsoft Forms both grade automatically and are free, which makes them the right answer for a one-off quiz. They stop at the same three places: no built-in timer, no certificate for whoever passes, and no way to build the questions from the material you already wrote — every question is typed by hand.
That last one is what decides it for anyone running quizzes weekly rather than once. Building a test from a lesson file takes minutes instead of an evening, and the answer key comes with it for review.
FAQ
Which question types can be graded automatically?
Multiple choice, checkboxes, dropdowns, yes/no and short text. Long-form answers and uploads always need a human.
Why was my student's correct answer marked wrong?
Almost always a short-text question graded by exact match: a plural, an article or a synonym that is not in the key. Add every acceptable form when you write it.
Can I add a timer?
Yes. Make sure it runs on the server — a browser timer can be paused or reset by changing the device clock.
Can students retake the quiz?
Only if you allow it. One attempt per browser is the usual setting for a graded test; practice quizzes are normally left open.
Do I need a paid plan for grading?
No. Grading, a pass mark and results are available on the free plan; paid plans raise the monthly response and assistant limits.