Ask Question

Which of these is true about do while statements in C++?

The do while statement is used for selection b. The do while statement is used only when a list is involved

The do while stalement must execute at least once before checking ita condition is meet d. The do while

statement does not have a conditional statemeni.

+4
Answers (1)
  1. 3 July, 08:45
    0
    c. The do while stalement must execute at least once before checking if a condition is met

    Explanation:

    The condition is at the end, ie.,

    do {

    ... stuff ...

    } while (condition)

    So it will be executed at least once, and the condition determines if it will execute again.
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “Which of these is true about do while statements in C++? The do while statement is used for selection b. The do while statement is used ...” 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