qobjects = [ { question: "Consider the following code:
print('Hello', 'World')
What will be the printed result?", options: [ "Hello, World", "Hello World", "HelloWorld" ], correct: 1 }, { question: "Consider the following code:
a = 'Hello'
b = 'World'
print(a + b)

What will be the printed result?", options: [ "a + b", "Hello World", "HelloWorld" ], correct: 2 }, { question: "Consider the following code:
a = 4
b = 5
print(a + b)

What will be the printed result?", options: [ "45", "9", "4 + 5" ], correct: 1 } ]