Java SE 8 Programmer 1Z0–808 Practice Full Test 1
© examsiri.com
Question : 18 of 84
Marks:
+1,
-0
Given
What is the result?
class X {
static int i;
int j;
public static void main (String[] args) {
X x1 = new X();
X x2 = new X ();
x1.i = 3;
x1.j = 4;
x2.i = 5;
x2.j = 6;
System.out.println(
x1.i +" "+
x1.j +" "+
x2.i +" "+
x2.j);
}
}What is the result?
Go to Question: