qobjects = [
{
question: "What is the correct syntax to create a user in the Django Admin interface?",
options: [
"python manage.py createsuperuser",
"python manage.py createuser",
"python manage.py user"
],
correct: 0
},
{
question: "Is it possible to bypass the password validation when creating a user?",
options: [
"Yes",
"No"
],
correct: 0
},
{
question: "What is the correct url for entering the built-in Django admin interface?",
options: [
"127.0.0.1:8000/users/",
"127.0.0.1:8000/logon/",
"127.0.0.1:8000/admin/"
],
correct: 2
}
]