CBT question setup is managed from the CBT Tests section after saving this job, or import below.
Manual Questions
Save this job first, then add questions one at a time below. They're saved immediately to this job's CBT test.
Save the job once first (with CBT interview type selected) to unlock manual question entry.
CSV Format Guide
Save your file as plain .csv with exactly these 6 columns, in this order, with a header row:
Question,Option A,Option B,Option C,Option D,Correct Answer
What is PHP?,Language,Database,Server,Framework,A
The Correct Answer column must contain a single letter: A, B, C, or D, matching the correct option for that row.
Excel Format Guide
Use the exact same 6 columns as the CSV format, on the first sheet of your workbook:
Question | Option A | Option B | Option C | Option D | Correct Answer
Tip: if you're not sure your Excel export will parse cleanly, save/export it as .csv from Excel first (File → Save As → CSV) for the most reliable import.
JSON Format Guide
Upload a .json file containing an array of question objects:
[
{
"question": "What is PHP?",
"a": "Language",
"b": "Database",
"c": "Server",
"d": "Framework",
"answer": "A"
}
]
Keys a/b/c/d can also be written as option_a/option_b/option_c/option_d, and answer can also be correct_answer.
If you upload more questions than "Questions Per Attempt", each candidate gets a random, non-repeating subset of that size - making it harder to share answers between candidates.