Question 91
Given the code fragment:

What is the result?

What is the result?
Question 92
Given the code fragment:

What is the result?


What is the result?

Question 93
Given the code fragment:

What is the result?
2012-02-10 00:00

What is the result?
2012-02-10 00:00
Question 94
Given:

What is the result?

What is the result?
Question 95
Given:
public 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?
public 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?

