Computer Science, asked by sushmalvaddi, 4 months ago

Which of the following loop does not execute even once if the condition is false in the beginning??
Options
a) do while loop
b) while loop
c) for loop
d) nested loop
Please answer fast...​

Answers

Answered by mansibhatia170505
4

Answer:

A

Explanation:

I think it is A, because the program will DO the operation only if the statement in WHILE is correct..

Answered by Anonymous
0

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