Differentiate between entry and exit controlled loop.
Java icse class 10
IN TABULAR FORM if possible.
Answers
Answered by
1
entry controlled loop
* it is While loop
*The while loop will not execute at all if the condition is not satisfied
*The while loop checks the condition first and then execution begins
(hence it is entry controlled loop)
exit controlled loop
it is do-while loop
The do – while loop will continue at least once.
The do – while checks the condition after executing the loop once.
(Hence it is exit controlled loop)
sry for inconvinence
tabular form is not possible
pls mark as brainliest
maihuterimaa:
thanks a lot ❤
Similar questions