Java - Strings and String Handling
What will be the output of this code snippet?
String a = "Test";
String b = "test";
System.out.println(a.equals(b));
System.out.println(a.equalsIgnoreCase(b));
