qobjects = [
{
question: "What does the in operator do?",
options: [
"Checks if a value exists in a sequence",
"Adds a value to a list",
"Compares two values"
],
correct: 0
},
{
question: "What is the result of 'a' in 'apple'?",
options: [
"True",
"False",
"Error"
],
correct: 0
},
{
question: "Are membership operators case-sensitive when used with strings?",
options: [
"Yes",
"No",
"Only sometimes"
],
correct: 0
},
{
fillintheblanks: "exercise_operators3.htm"
}
]