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.