qobjects = [
{
question: "Which one of these is a tuple?",
options: [
"thistuple = ('apple', 'banana', 'cherry')",
"thistuple = ['apple', 'banana', 'cherry']",
"thistuple = {'apple', 'banana', 'cherry'}"
],
correct: 0
},
{
fillintheblanks: "exercise_tuples2.htm"
},
{
question: "True or False.
Tuple items cannot be removed after the tuple has been created.",
options: [
"True",
"False"
],
correct: 0
}
]