qobjects = [
{
question: "Which character can be used as a default case value in a match statement?",
options: [
"%",
"*",
"_",
"|"
],
correct: 2
},
{
draganddroptext: "day = 4",
draganddropquestion: "Insert the correct keywords to make a match statement:",
options: [
"
___ day:
___ 6:
print('Saturday')
___ 7:
print('Sunday')
___ _:
print('Looking forward to the weekend')case",
"match",
"case",
"switch",
"case",
"select"
],
correct: [1, [0,2,4], [0,2,4], [0,2,4]]
},
{
question: "Which operator is used as an OR operator in the case evaluation?",
options: [
"%",
"*",
"_",
"|"
],
correct: 3
},
]