qobjects = [
{
question: "What is the name of the file where you can modify the STATICFILES_DIRS list?",
options: [
"manage.py",
"settings.py",
"models.py"
],
correct: 1
},
{
question: "In settings.py, what keyword represents the root directory of the projects?",
options: [
"ROOT_DIR",
"FLOOR_DIR",
"BASE_DIR"
],
correct: 2
},
{
question: "When Django searches for a static file, where will be search start?",
options: [
"In the static folder",
"In the directoriies listed in STATICFILES_DIRS"
],
correct: 1
}
]