qobjects = [
{
question: "What is the result of 5 == 5?",
options: [
"True",
"False",
"5"
],
correct: 0
},
{
question: "Which operator checks if two values are NOT equal?",
options: [
"!",
"!=",
"<>"
],
correct: 1
},
{
question: "What does the expression 1 < x < 10 check?",
options: [
"If x is less than 1 or 10",
"If x is between 1 and 10",
"If x equals 1 or 10"
],
correct: 1
},
{
fillintheblanks: "exercise_operators4.htm"
}
]