Which of the following best describes the flow of execution in this for loop if B always returns false?
for (A; B; C) {
D;
}
B.
The initializer, which is A, runs first.
Then Java checks the condition, which is B, to see if loop execution should start.
Since B returns false, the loop is never entered, and Option B is correct.