Java - Strings and String Handling
What will be the output of the following Java code?
String str1 = new String("code");
String str2 = new String("code");
System.out.println(str1.equals(str2));