All quizzes
JavaIntroPredict the output

What does this program print?

Integer a = 127, b = 127;
Integer c = 128, d = 128;
System.out.println((a == b) + " " + (c == d));