qobjects = [ { question: "What is another name for the one-line if/else statement?", options: [ "Short circuit", "Conditional expression (ternary operator)", "Compact if" ], correct: 1 }, { question: "What is the correct syntax for a ternary operator?", options: [ "value_if_true if condition else value_if_false", "if condition value_if_true else value_if_false", "condition ? value_if_true : value_if_false" ], correct: 0 }, { fillintheblanks: "exercise_ifelse8.htm" } ]