qobjects = [
{
question: "What is the result of 15 % 4?",
options: [
"3",
"3.75",
"4"
],
correct: 0
},
{
question: "Which operator is used for exponentiation in Python?",
options: [
"^",
"**",
"exp"
],
correct: 1
},
{
question: "What is the difference between / and // operators?",
options: [
"/ returns a float, // returns an integer",
"/ returns an integer, // returns a float",
"They are the same"
],
correct: 0
},
{
fillintheblanks: "exercise_operators1.htm"
},
{
fillintheblanks: "exercise_operators2.htm"
}
]