7.7k views
5 votes
PLEASE HURRY!!!!

Which statements will ask the user for a number? Select 2 options.
A) answer = in(“How many sodas do you want? “)
B) answer = in(How many sodas do you want? )
C) answer = input(How many sodas do you want? )
D) answer = input("How many sodas do you want? ")
E) answer = input('How many sodas do you want? ')

User Husni
by
7.5k points

2 Answers

6 votes

Answer:

answer = input('How many sodas do you want? ') and

answer = input("How many sodas do you want? ") is the correct answer. so in other words D and E are correct.

I took the quiz myself

User Conal Tuohy
by
8.1k points
4 votes

Options D and E are correct. The input function takes input from the user, which in this case is a number.

User Hytriutucx
by
7.6k points