qobjects = [
{
question: "You cannot change the items of a tuple, but there are workarounds. Which of the following suggestion will work?",
options: [
"Convert tuple into a list, change item, convert back into a tuple.",
"Convert tuple into a set, change item, convert back into a tuple.",
"Convert tuple into a dictionary, change item, convert back into a tuple."
],
correct: 0
},
{
question: "Which is a correct syntax to delete a tuple?",
options: [
"delete mytuple",
"mytuple.delete()",
"del mytuple"
],
correct: 2
},
{
question: "True or False. You are allowed to add a tuple to an existing tuple.",
options: [
"True",
"False"
],
correct: 0
}
]