{
String s = new String( "Computer" );
if( s == "Computer" )
System.out.println( "Equal A" );
if( s.equals( "Computer" ) )
System.out.println( "Equal B" );
if( "Computer" == s )
System.out.println( "Equal A" );
}
//Explanation Needed....
//Especially for II and III If and their differences.....