qobjects = [
{
question: "True or False. To get directed to the 404 template, DEBUG must be set to True.",
options: [
"True",
"False"
],
correct: 1
},
{
question: "If you get a 404 error (page not found) Django will look for a certain file, what is the name of this file?",
options: [
"404.html",
"notfound.html",
"404_error.html"
],
correct: 0
},
{
question: "The 404.html file should be located in this folder:",
options: [
"migrations",
"templates",
"images"
],
correct: 1
}
]