Computer Science, asked by chachaadam36, 7 months ago

While loop checks the condition on *
●top
●bottom
●middle
●non of these​

Answers

Answered by jamersorce45
3

Answer:

non of these

Explanation:

i know this answer thats why given to you

HOPE IT HELPS YOU ♥️

Answered by ankhidassarma9
0

Answer:

While loop checks the condition on top .

Explanation:

The general form of while loop is as follows:

Initialize loop counter;

While (test loop counter using a condition)

{

  Do this;

  And this;

Increment loop counter;

}

• The statements which are written within a pair of braces immediately after the while keyword forms the body of while loop.

• The statements within the while loop, i.e. the body of while loop would keep on getting executed till the condition being tested remains true.

• When the coition becomes false, the control passes to the first statement that follows the body of the while loop.

Similar questions