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

Verified
Correct Answer:
Verified
Related Questions
Q25: What is the output of the code
Q26: How many times does the following loop
Q27: Suppose that the chance to hit the
Q28: What does the following code snippet print?<br>Int
Q29: What will be printed by the statements
Q31: Which of the following loop(s) could possibly
Q32: What is the output of the following
Q33: What is the output of this code
Q34: What will be the output of the
Q35: How many times will the following loop