Computer Science, asked by gillak026, 4 months ago

Do while ਲੂਪ ਨੂੰ ......... ਵੀ ਕਿਹਾ ਜਾਂਦਾ ਹੈ।​

Answers

Answered by amanbatth398
0

i don't understand answer

Answered by mad210203
0

Post test loop

Explanation:

  • The do while loop is also called or known as post test loop.
  • The do while loop is quite similar to that of while loop.
  • In do while loop, first statements are executed and then condition is checked.
  • Where as in while loop, first condition is checked and then statements are executed.
  • That is why do while loop is called as post test loop.
  • We will choose do while loop, when we want to execute the statements atleast once.
  • Syntax:

       do

{

Statements;

}

Similar questions