3. Explain the entry controlled loops in Java with example
Answers
Answered by
22
Explanation:
Java Control Statements are used to control the flow of Java ... Entry controlled loops are used when checking of test condition is ... 3. While Loop. Syntax. while( condition). {. Statements. }
mark as brilliant
Answered by
3
Answer:
Here is your answer
Explanation:
Entry controlled loops are used when checking of test condition is mandatory before executing loop body, whereas exit controlled is used when checking of test condition is mandatory after executing.
Hope it's help you
Similar questions