1Rectangle rec; rec =2new3Rectangle();
1//Declare Vars Rectangle rec1, rec2;2//Construct Objects rec1 = new Rectangle(); rec2 = new Rectangle();
1//Declare Vars Rectangle rec; Shape shape; Person p;2//Construct Objects rec = new Rectangle(); shape = new Shape(); p = new Person();