Ask Question
9 July, 02:52

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. 9 July, 06:24
    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 and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers