qobjects = [
{
question: "What is a correct syntax for making a copy of this dictionary:x = {'type' : 'fruit', 'name' : 'apple'}",
options: [
"y = x.clone()",
"y = x.duplicate()",
"y = x.copy()"
],
correct: 2
},
{
question: "One of these codes is NOT a correct way of making a copy of a dictionary named x, which one:",
options: [
"y = dict(x)",
"y = x.duplicate()",
"y = x.copy()"
],
correct: 1
},
{
question: "True or False. Copied dictionaries will not be able to change its item values.",
options: [
"True",
"False"
],
correct: 1
}
]