1.

What is the output of this program? class output { public static void main(String args[]) { String s1 = "Hello"; String s2 = new String(s1); String s3 = "HELLO"; System.out.println(s1.equals(s2) + " " + s2.equals(s3)); } }

A. true true
B. false false
C. true false
D. false true
Answer» D. false true


Discussion

No Comment Found