Question: Assuming that the following classes have been defined: public class Water extends Earth { public void method 1 ( ) { System.out.println ( Water

Assuming that the following classes have been defined:
public class Water extends Earth {
public void method1(){
System.out.println("Water 1");
}
public void method3(){
System.out.println("Water 3");
}
}
public class Fire {
public void method1(){
System.out.println("Fire 1");
}
public void method2(){
System.out.println("Fire 2");
method1();
}
}
public class Earth extends Fire {
public void method1(){
System.out.println("Earth 1");
super.method1();
}
}
public class Air extends Fire {
public void method3(){
System.out.println("Air 3");
}
}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!