qobjects = [ { question: "What will be the value of x after this code?
x = 10
x += 5
", options: [ "5", "10", "15" ], correct: 2 }, { question: "Which operator assigns a value to a variable AND uses it in an expression?", options: [ "=", ":=", "==" ], correct: 1 }, { question: "What will be the result of the following syntax:
x = 5
x += 3
print(x)
", options: [ "3", "5", "8" ], correct: 2 }, { question: "What does x *= 3 mean?", options: [ "x = x * 3", "x = 3", "x = x + 3" ], correct: 0 } ]