qobjects = [ { question: "What is the name of the method used to ask for user input?", options: [ "prompt()", "input()", "user()" ], correct: 1 }, { question: "What is a correct syntax for adding a prompt to the input() method?", options: [ "input('Enter a number')", "input().addPrompt('Enter a number')", "input().prompt('Enter a number')", "input(prompt='Enter a number')" ], correct: 0 }, { question: "True or False. Python stops executing when it comes to the input function, and continues when the user has given some input.", options: [ "True", "False" ], correct: 0 } ]