Computer Science, asked by braniest, 1 year ago

difference between entry and exit controlled loop in java

Answers

Answered by RaviRajSingh
8
If text condition is false, loop body will not be executed. If text condition is false, loop body will be executed once for Loop and while loop are the examples of Entry Controlled Loop. do while loop is the example of Exit Controlled Loop
Answered by samruddhichordiya123
14
entry .. it checks the condition first and then execute.. 1 ..
2.. if the condition is false it will not execute
3. while fir

exit..1..it executes first and then check condition ..
2 it execute at least once even if the conditio is false
3. do while
Similar questions