Computer Science, asked by skmaaz2006, 6 months ago

2
15. What is true about do
statement?
O
a, do statement executes the code
of a loop at least once
b. do statement does not get
O execute if condition is not matched
in the first iteration
c, do statement checks the
O condition at the beginning of the
loop
O
d, do statement executes the code
more than once always​

Answers

Answered by Anonymous
5

Answer:

Option A is right answer mate..

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