What is the outcome of comparing these two strings?
String a = "Java";
String b = "java";
boolean isEqual = a.equalsIgnoreCase(b);
System.out.println(isEqual);
What is the outcome of comparing these two strings?
String a = "Java";
String b = "java";
boolean isEqual = a.equalsIgnoreCase(b);
System.out.println(isEqual);