qobjects = [
{
question: "Which one of these is a set?",
options: [
"myset = ('apple', 'banana', 'cherry')",
"myset = ['apple', 'banana', 'cherry']",
"myset = {'apple', 'banana', 'cherry'}"
],
correct: 2
},
{
question: "True or False.
Set items cannot be removed after the set has been created.",
options: [
"True",
"False"
],
correct: 1
},
{
question: "True or False.
A set cannot have two items with the same value.",
options: [
"True",
"False"
],
correct: 0
},
{
draganddroptext: "fruits = {'apple', 'banana', 'cherry'}print(___(fruits))",
draganddropquestion: "Select the correct function for returning the number of items in a set:",
options: [
"length",
"size",
"len",
"items"
],
correct: [2]
}
]