You need to separate the variable name from the method call:
System.out.println("Area of Rectangle is " + rectangle1getArea());
Needs to be
System.out.println("Area of Rectangle is " + rectangle1.getArea());
and so forth.
Without the separation, the system is looking for a method called
rectangle1getArea
instead of a method called
getArea
in the
Rectangle
class.
With it, the system calls the right method, using the right instance of the class.