Control Flow
Casual Mode - Take your time!
1 / 11
Correct
0
Incorrect
0
Score
0%
Multiple Choice
What will be the output of the program?
int x = l, y = 6;
while (y--)
{
x++;
}
System.out.println(x = + x + y = + y);
- x = 6 y = 0
- x = 7 y = 0
- x = 6 y = -1
- compilation fails