qobjects = [
{
question: "What is a correct syntax for deleting a record?",
options: [
"x.extract()",
"x.remove()",
"x.delete()"
],
correct: 2
},
{
question: "True or False. To delete a record in a database, you must know the ID of the record.",
options: [
"True",
"False"
],
correct: 1
},
{
question: "True or False. When deleting a record from a QuerySet, it is important to run x.save() for the changes to take place in the database.",
options: [
"True",
"False"
],
correct: 1
}
]