Which description correctly distinguishes sequential, conditional, and loop control flow?
Sequential repeats logic, conditional runs everything, and a loop chooses one branch.
All three always execute every statement exactly once.
Sequential runs statements in order, conditional chooses a branch, and a loop repeats logic.
They are three stages of compiling C++ source code.