Discussion :: Java.lang Class
-
What will be the output of the program?
String s = "hello"; Object o = s; if( o.equals(s) ) { System.out.println("A"); } else { System.out.println("B"); } if( s.equals(o) ) { System.out.println("C"); } else { System.out.println("D"); }
- A
- B
- C
- D
Be The First To Comment