[{"question":"What is the correct way to write an if statement in Python?","options":["if x > 5 { }","if x > 5: ","if (x > 5) { }","if x > 5 then"],"correct":1},{"question":"What does range(5) generate?","options":["0, 1, 2, 3, 4, 5","1, 2, 3, 4, 5","0, 1, 2, 3, 4","1, 2, 3, 4"],"correct":2},{"question":"What does the break statement do inside a loop?","options":["Skips the current iteration","Restarts the loop","Exits the loop entirely","Pauses the loop"],"correct":2}]