170k views
5 votes
The corrected code is:

a) name = input(Enter your name:) print(Howdy)
b) nameinput name=input Enter your name)point (Howdy)
c) name = input(Enter your name:) point (Howdy)
d) nameinput name=input Enter your name)point (Howdy)

User TelJanini
by
7.7k points

1 Answer

1 vote

Final answer:

The subject of this question is Computers and Technology. The correct code is: name = input('Enter your name:') print('Howdy')

Step-by-step explanation:

The subject of this question is Computers and Technology.

The correct code is: name = input('Enter your name:') print('Howdy')

In this code, the input() function is used to take input from the user, which in this case is their name. The print() function is then used to display the greeting 'Howdy'.

User Vivek MVK
by
8.6k points