Help

How to Use the Quiz Application

Step 1: Add a JSON File

Create a JSON file with your quiz questions using the following format:

{
  "title": "Test quiz 1",
  "data": [
    {
      "question": "Which sentence is grammatically correct?",
      "options": [
        "She go to school every day.",
        "She goes to school every day.",
        "She going to school every day.",
        "She gone to school every day."
      ],
      "correct_answer": "She goes to school every day."
    }
  ]
}

Step 2: Click the Save Button

Navigate to the Add Quiz page, paste your JSON content into the text area, and click the Save button to create your quiz.

Step 3: Take the Quiz

After saving, you will receive a link. Click on the link to access the quiz and answer the questions.