Question

What is the result of the following code?     Integer a = 127;     Integer b = 127;     System.out.println(a ==
b);     Integer c = 200;     Integer d = 200;     System.out.println(c ==
d);

A true, true
B false, false
C true, false
D false, true
E Compilation error
Practice Next

Hey! Ask a query