CBT question setup is managed from the CBT Tests section after saving this job, or import below.
Manual Questions
Add questions one at a time from the CBT Tests section after this job is saved. Use Import CSV/Excel/JSON below for bulk uploads instead.
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.