class sample6 { public static void main(String []args) { Double i = 10.0; Double j = 11.0; Double k = ++i; //INCRSystem.out.println("k == j is" + (k == j)); System.out.println("k.equals(j) is" + k.equals(j)); } } Which of the following options correctly describes the behavior of this program?
Reveal answer
Fill a bubble to check yourself