f. The program that loop will be repeated for ten times till the sum of the 10 point
natural numbers is calculated is an example of
statements.
Sequential
Conditional
O
Iterative
Answers
Answered by
0
Answer:
iterative
Explanation:
The iterative statement execute recursively until a specified condition statisfied
iterative statement are also known as looping statement
some of iterative statement are
for
while
do... while
foreach
program in python execute abova question is
sum = 0
for i in range(1,10):
sum = sum+i
print(sum)
Similar questions