qobjects = [
{
question: "What is a correct syntax to add the value 'Hello World', to 3 variables in one statement?",
options: [
"x, y, z = 'Hello World'",
"x = y = z = 'Hello World'",
"x|y|z = 'Hello World'"
],
correct: 1
},
{
fillintheblanks: "exercise_variables5.htm"
},
{
question: "Consider the following code:fruits = ['apple', 'banana', 'cherry']
a, b, c = fruits
print(a)
What will be the result of a",
options: [
"apple",
"banana",
"cherry"
],
correct: 0
},
]