qobjects = [ { question: "What does range(3) produce when converted to a list?", options: [ "[1, 2, 3]", "[0, 1, 2]", "[0, 1, 2, 3]" ], correct: 1 }, { question: "Which call creates 0, 3, 6, 9?", options: [ "range(0, 10, 3)", "range(0, 9, 3)", "range(1, 10, 3)" ], correct: 0 }, { question: "What does list(range(3, 7)) output?", options: [ "[3, 4, 5, 6]", "[3, 4, 5, 6, 7]", "[4, 5, 6, 7]" ], correct: 0 } ]