qobjects = [ { question: "What is a correct syntax to merge variable x and y into variable z?", options: [ "z = x, y", "z = x = y", "z = x + y" ], correct: 2 }, { question: "What will be the result of the following code:
x = 'Welcome'
y = 'Coders'
print(x + y)
", options: [ "Welcome Coders", "WelcomeCoders", "Welcome
Coders" ], correct: 1 }, { question: "Consider this code:
a = 'Join'
b = 'the'
c = 'party'

What is a correct syntax to print 'Join the party'?", options: [ "print(a + b + c)", "print(a + ' ' + b + ' ' + c)", "print(a b c)" ], correct: 1 }, ]