while do-while comparison – Computer Sir Ki Class

Login


Lost your password?

Don't have an account ?
Register (It's FREE) ×
  

Login
[lwa]



Exam Questions-ICSE2018-02B #JAVA#4042    siteicon   siteicon  

Problem Statement - while do-while comparison

State the difference between while and do while loop.

Solution

TC++ #4042

while loop
– while loop is an entry controlled loop (condition is tested at the beginning of the loop)
– while loop may not execute even once based on the condition.

do-while
– do-while is an exit controlled loop (condition is tested at the end of the loop)
– do-while loop will execute at least once.

 

 


Share

sunmitra| Created: 24-Mar-2018 | Updated: 12-Apr-2019|ICSE2018









Back