State the difference between entry controlled loop and exit controlled loop.
Short Answer
Views 22
Answer:
Difference between entry controlled loop and exit controlled loop:
- Entry controlled loop: The condition is checked before entering the loop body, so the loop may not execute at all if the condition is false. Examples:
for
,while
. - Exit controlled loop: The loop body is executed at least once, and the condition is checked after execution. Example:
do-while
.
Related Articles:
This section is dedicated exclusively to Questions & Answers. For an in-depth exploration of Java Programming Language, click the links and dive deeper into this subject.
Join Our telegram group to ask Questions
Click below button to join our groups.