Online Quiz

You might also like

Download as pptx, pdf, or txt
Download as pptx, pdf, or txt
You are on page 1of 1

What is the result of

compiling and running the


following code?
public static
void main(String[] args)
{
int x = 5, y;
while (++x < 7)
{
y = 2;
}
System.out.println(x + y);
}

You might also like