7.9k views
0 votes
Blake is writing code and wants his users to enter their date of birth when prompted. Which of the following is the correct code to use? (5 points)

dob = answer("Hello! When is your birthday?")
dob = input("Hello! When is your birthday?")
dob = question("Hello! When is your birthday?")
dob = value("Hello! When is your birthday?")

User Fomahaut
by
4.5k points

1 Answer

4 votes

Answer:

dob = input("Hello! When is your birthday?")

Step-by-step explanation:

This will actually stop and ask you for the question.

User Taplar
by
4.1k points