Respuesta :

Answer:

a.True.

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.