Computer Science, asked by Anonymous, 11 months ago

14. Predict the output :
Integer c = 155;
Integer d = 155;
System.out.println(c == d);
System.out.println(c.equals(d));​

Answers

Answered by Anonymous
2

Explanation:

14. Predict the output :

Integer c = 155;

Integer d = 155;

System.out.println(c == d);

System.out.println(c.equals(d));

output =155

Similar questions