qobjects = [
{
question: "What is the result of 5 < 7 and 5 > 7?",
options: [
"True",
"False",
"None"
],
correct: 1
},
{
question: "What is the result of 5 < 7 or 5 > 7?",
options: [
"True",
"False",
"None"
],
correct: 0
},
{
question: "What does the not operator do?",
options: [
"Compares two values",
"Reverses the boolean value",
"Combines two conditions"
],
correct: 1
},
{
fillintheblanks: "exercise_operators5.htm"
}
]