Java - Strings and String Handling
Find the problem in this code:
String s1 = null;
String s2 = "hello";
if (s1.equals(s2)) {
System.out.println("Match");
} else {
System.out.println("No Match");
}
