{
  "worksheetTitle": "WebCoding",
  "questions": [
    {
      "question": "Start and End tags where we store CSS in a HTML file",
      "expected": "<style></style>"
    },
    {
      "question": "Start and End tags where we store JavaScript in a HTML file  ",
      "expected": "<script></script>"
    },
    {
      "question": "Drop Down box for an athlete’s house",
      "expected": "        <select id=\"athHouse\">\n            <option value=\"O'Connor\">O'Connor</option>\n            <option value=\"Murdoch\">Murdoch</option>\n            <option value=\"Hackett\">Hackett</option>\n            <option value=\"Forrest\">Forrest</option>\n        </select>\n"
    },
    {
      "question": "Button to Add an Athlete",
      "expected": "<button onclick=\"addAthlete()\">Add Athlete</button>"
    },
    {
      "question": "CSS for background colour",
      "expected": "background: darkblue;"
    },
    {
      "question": "CSS for foreground colour",
      "expected": "color: green"
    },
    {
      "question": "CSS for borders",
      "expected": "border: 1px solid #eee;"
    },
    {
      "question": "CSS for rounded corners",
      "expected": "border-radius: 12px;"
    },
    {
      "question": "Setting the background colour of the delete button to red",
      "expected": "button.delete { background: red;}"
    },
    {
      "question": "Setting the colour of the buttons to dark blue when a mouse goes over them",
      "expected": "button:hover { background: darkblue; }"
    },
    {
      "question": "results array declaration",
      "expected": "let results = [];"
    },
    {
      "question": "In the deleteItem function, which code checks to see if thh type of item is 'athletes'",
      "expected": "if(type === 'athletes') "
    },
    {
      "question": "Code which runs a function when the Delete button is pressed for an Event",
      "expected": "onclick=\"deleteItem('events', ${e.id})\""
    },
    {
      "question": "Line which calls the render function so that the tables as displayed",
      "expected": "renderAll();"
    },
    {
      "question": "Code which gets the value of the House Field when adding an Athlete",
      "expected": "const house = document.getElementById('athHouse').value;"
    }
  ]
}