qobjects = [
{
question: "What does the elif keyword mean?",
options: [
"End the if statement",
"If the previous conditions were not true, try this condition",
"Execute all conditions"
],
correct: 1
},
{
question: "What happens when Python finds a true condition in an if-elif chain?",
options: [
"It executes that block and skips the rest",
"It executes that block and continues checking",
"It checks all conditions first"
],
correct: 0
},
{
question: "How many elif statements can you have?",
options: [
"Only one",
"Maximum of three",
"As many as you need"
],
correct: 2
},
{
fillintheblanks: "exercise_ifelse4.htm"
}
]