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
Q17: Which of the following statements expresses why
Q18: What is the result when the following
Q20: How many times does the following code
Q21: Suppose that the chance to hit the
Q22: How many times will the output line
Q24: What is the output of the code
Q38: In the _ loop header, you can
Q100: How many times does the loop execute
Q107: Which statement about storyboards is true?<br>A)A storyboard
Q121: What is the output of the code