131k views
5 votes
User input is required in an iterative program.

True
False
Please respond ASAP. I don’t understand coding completely.

User Arron
by
3.2k points

2 Answers

2 votes

Answer:

false

Step-by-step explanation:

User Layonez
by
3.7k points
2 votes

Answer:

The iterative program sometimes does not require any user input. Hence, this statement is False.

Step-by-step explanation:

Have a look at this example:

i=0

for i in range(0,10):

print(i)

The output of the above iteration (for loop) is

0

1

2

....

and so on. And this requires no user input.

User John Mills
by
2.9k points