When you are instantiating the class with MyHome h = new MyHome(); You are creating an instance of MyHome which is referenced by h. Therefore, h.method1(); calls the method of the object that has been created. On the other hand, MyHome.method1() will call a static (unchanging) method. The...