Computer Science, asked by shridharkakiwar, 4 months ago

24. If condition is given at the
end of a loop after loop in a do
while loop, how many times
the loop execute even if the
condition is false?
O 1
O2
O 3
O4

Answers

Answered by aswinasok1245
2

Answer:

1

Explanation:

Compared to other loops the speciality of "do while" loop is that the if condition is checked at the end only just like the syntax shows, i.e. after at least one iteration(loop) has been completed.

Syntax

do

{

Statements

}

while(condition):

Similar questions