qobjects = [
{
question: "What is the result of 2 + 3 * 4?",
options: [
"20",
"14",
"24"
],
correct: 1
},
{
question: "Which operator has higher precedence?",
options: [
"+ (addition)",
"* (multiplication)",
"They have the same precedence"
],
correct: 1
},
{
question: "What is the result of 10 - 5 + 3?",
options: [
"2",
"8",
"12"
],
correct: 1
}
]