Home
Java Variables Quiz 1
What is output of the following sequence of statements?
int a = 10; int b = 20; int x = a; b = x; a = b; System.out.print(a + "," + b);
Your answer: