qobjects = [
{
question: "What does the pass statement do?",
options: [
"It skips the entire if statement",
"It's a null operation - nothing happens",
"It raises an error"
],
correct: 1
},
{
question: "Why is the pass statement useful?",
options: [
"To end a program",
"To serve as a placeholder for future code",
"To execute the else block"
],
correct: 1
},
{
question: "Can you use only a comment inside an if statement without pass?",
options: [
"Yes, comments are enough",
"No, it will cause an error",
"Only in Python 3"
],
correct: 1
}
]