What is the difference between object and object reference?And what do the the following two statements signify?
Statement1::
String s="Bagmita";
Statement2::
String s=new String("Bagmita ");
Statement1::
String s="Bagmita";
Statement2::
String s=new String("Bagmita ");
Comment