qobjects = [ { question: "What is a nested if statement?", options: [ "An if statement inside another if statement", "Multiple if statements at the same level", "An if statement with multiple conditions" ], correct: 0 }, { question: "When does an inner if statement run?", options: [ "Always", "Only if the outer condition is True", "Only if the outer condition is False" ], correct: 1 }, { question: "Can nested if statements be replaced with logical operators?", options: [ "Never", "Always", "Sometimes, depending on the logic" ], correct: 2 } ]