qobjects = [ { question: "What does an if statement evaluate?", options: [ "A condition that results in True or False", "A variable name", "A string value" ], correct: 0 }, { question: "What will happen if the condition in an if statement is False?", options: [ "The code block will execute", "The code block will be skipped", "An error will occur" ], correct: 1 }, { question: "What is required for proper if statement syntax in Python?", options: [ "Curly brackets", "Parentheses around the condition", "Indentation for the code block" ], correct: 2 }, { fillintheblanks: "exercise_ifelse1.htm" }, { fillintheblanks: "exercise_ifelse2.htm" }, { fillintheblanks: "exercise_ifelse7.htm" } ]