Respuesta :

What executes first in a do-while loop is the loop condition.

How to execute a Loop in C++?

The DO-WHILE-END sequence creates a loop that executes while a specified condition is true. If the condition is not true, the loop does not execute. The condition must be either a comparative expression or a variable containing a comparative expression.

The do-while loop is an exit-condition loop.  This means that the body of the loop is always executed first.  Then, the test condition is evaluated.  If the test condition is TRUE, the program executes the body of the loop again.  If the test condition is FALSE, the loop terminates and program execution continues with the statement following the while.

Thus, we can say that what executes first in a do-while loop is the loop condition.

Read more about C++ Coding at; https://brainly.com/question/12951071

#SPJ1

ACCESS MORE
ACCESS MORE
ACCESS MORE
ACCESS MORE