Computer Science, asked by samishasharma00775, 8 months ago

1
Which of the following loop
executes at least once?
Marks
for
do while
while
none​

Answers

Answered by prakash7461
2

b cocotdtid8yfojkyohigsifxigcg

Answered by Anonymous
1

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