qobjects = [
{
question: "What does the is operator check?",
options: [
"If two values are equal",
"If two variables point to the same object",
"If a value exists"
],
correct: 1
},
{
question: "What is the result of [1,2] is [1,2]?",
options: [
"True",
"False",
"Error"
],
correct: 1
},
{
question: "What is the difference between is and ==?",
options: [
"is checks identity, == checks value",
"is checks value, == checks identity",
"They are the same"
],
correct: 0
}
]