What will be the output of the following program?
public class PabloPicasso {
public static void main(String[] args) {
String name = "Pablo Picasso";
String nameObj = new String(name);
System.out.println("name and nameObj are same " + (name == nameObj));
}
}