113k views
5 votes
The body of a do { ... } while(...); loop will always executes atleast once, no matter what test condition is stated.

Select one:

a. TRUE

b. FALSE

User Nnc
by
5.8k points

1 Answer

3 votes

Answer:

a.True.

Step-by-step explanation:

The structure of do-while loop is as following:-

do{

code;

}

while(condition);

So if the condition is not fulfilled the code will be executed atleast once.

See the structure of the do-while loop the code in the do will be executed first.Then the condition is checked hence the answer is TRUE.

User Mutanic
by
6.4k points