123456789101112131415



Question 1: class Test{
public static void main(String args[]){

int x = 0;
int y = 10;
do {
y--;
++x;
} while (x < 5);
System.out.print(x + "," + y);
}
}

What is the result?

1. 5,6
2. 5,5
3. 6,5
4. 6,6