Ask Question

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

+3
Answers (1)
  1. 13 April, 14:52
    0
    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.
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “The body of a do { ... } while ( ...); loop will always executes atleast once, no matter what test condition is stated. Select one: a. TRUE ...” in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers