01: public class Test {
public static void main(String[] args) {
String first = "Phone:" + "55555";
String second = "Phone:" + 55555;
String third = new String("Phone:") + new String("55555");
String fourth = new String("Phone:") + 55555;
System.out.println(first==second);
System.out.println(first==third);
System.out.println(first==fourth);
}
}