Ask Question
18 August, 09:14

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. 18 August, 11:13
    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 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