Easy
String str1 = "hello";
String str2 = "HELLO";
System.out.println(str1.equals(str2));
What is the result of the following comparison in Java?
Author: EL MostafaStatus: PublishedQuestion passed 498 times
Edit
String str1 = "hello";
String str2 = "HELLO";
System.out.println(str1.equals(str2));
What is the result of the following comparison in Java?