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.