Computer Science, asked by abhi171043, 4 months ago

while loop do not execute the statement if condition is false. (true or false).​

Answers

Answered by sameekshand
4

Answer:

False

Explanation:

Answered by Anonymous
2

while loop is executed once before the condition is checked. Its syntax is: do { // body of loop; } while (condition); ... If the condition evaluates to true , the body of the loop inside the do statement is executed again.

Similar questions