qobjects = [
{
question: "Which one is NOT a legal function in the Random module?",
options: [
"shuffle()",
"mix()",
"permutation()"
],
correct: 1
},
{
question: "True or False. The permutation() method makes changes to the original array.",
options: [
"True",
"False"
],
correct: 1
},
{
question: "Which one can be called a permutation of the array [1, 2, 3]?",
options: [
"[3, 2, 1]",
"[-1, -2, -3]",
"[4, 5, 6]"
],
correct: 0
}
]