214k views
0 votes
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.​

1 Answer

3 votes

Answer:

c. The do while stalement must execute at least once before checking if a condition is met

Step-by-step 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.

User Umar Abbas
by
8.4k points

Related questions