Multiple Choice
What will be printed by the statements below?
Int a = 10;
While (a > 5)
{
A = a - 2;
System.out.print (a + " ") ;
}
A) 10 8 6
B) 10 8 6 4
C) 8 6
D) 8 6 4
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q72: Which of the following for loops is
Q78: How many times does the code snippet
Q79: Which error type does the "off-by-one" error
Q80: What values does counter variable i assume
Q81: What is the output of the following
Q82: How many times does the following code
Q84: What is the last output line of
Q85: What is the data type of the
Q86: What is the result when the following
Q87: What is the output of the code