how many types of Iterative statements.
Answers
Answered by
0
four iteration statements
Iteration Statements (C++)
C++ provides four iteration statements — while, do, for, and range-based for. Each of these iterates until its termination expression evaluates to zero (false), or until loop termination is forced with a break statement.
Answered by
1
The statements which contribute to repeat a set of statements as long as the provided condition is evaluates to true are called iterative statements.
Types of Iterative Statements
Python provides two types of Iterative statements which are: for and while.
Similar questions