Multiple Choice - caleb-sudo/StudyHelper GitHub Wiki

How to add a multiple choice question to the question bank

Step 1

  • Once you have found the right spot to place the question(s) add curly brackets to the correct section, as follows:
  • If there is a question under your new question ADD A COMMA(,) AT THE END OF THE CURLY BRACKETS

Step 2

  • Once you have added the curly brackets add the following inside the curly brackets.
"type": 0,
"question": "insert your question here",
"options": [
    "choice A",
    "choice B",
    "choice C",
    "choice D"
],
"answer": 0

Step 3

  • replace the "insert your question here" with the question you are adding.
  • replace the "choice A" and following with the choices to the question you want to add.
  • replace the 0 in answer with the answer.
    • A = 0
    • B = 1
    • C = 2
    • D = 3

Step 4