Froggy Jumps Python_Level1_Session 4Online version Input & Data Conversion by CODEleader 1 What does the input() function do in Python? a Adds two numbers b Asks the user to type something c Prints text on the screen 2 Which of these is the correct way to ask the user for their name? a name = input("Enter your name: ") b name = print("Enter your name: ") c name("Enter your name: ") 3 What data type does input() return by default? a int b float c Str 4 Which line converts what the user typed into a number (integer)? a age = input("Age: ") b age = str(input("Age: ")) c age = int(input("Age: ")) 5 What will this code store in x? x = input("Type something: ") a A number b A string c A boolean 6 How do you turn "10" (a string) into the number 10? a int("10") b "10" + 0 c str(10) 7 What will this code print if the user types 5? a 52 b 7 c Error