Multiple Choice
What values does counter variable i assume when this loop executes? for (int i = 20; i >= 2; i = i - 6)
{
System.out.print(i + ",") ;
}
A) 20, 14, 8, 2
B) 20, 14, 8, 2, -4
C) 20, 14, 8
D) 14, 8, 2
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q75: What will be printed by the statements
Q76: What will be the output of the
Q77: What is the output of the following
Q78: How many times does the code snippet
Q79: Which error type does the "off-by-one" error
Q81: What is the output of the following
Q82: How many times does the following code
Q83: What will be printed by the statements
Q84: What is the last output line of
Q85: What is the data type of the