Multiple Choice
What is the last output line of the code snippet given below?
Int i = 0;
While (i < 10)
{
Int num = 1;
For (int j = i; j > 1; j--)
{
System.out.print(j + " ") ;
Num = num * 2;
}
System.out.println("***") ;
I++;
}
A) 3 2 ***
B) 9 8 7 6 5 4 3 2 ***
C) 8 7 6 5 4 3 2 ***
D) 2 ***
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q72: Which of the following for loops is
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
Q83: What will be printed by the statements
Q85: What is the data type of the
Q86: What is the result when the following
Q87: What is the output of the code
Q89: When hand tracing, drawing a line through