public class Person extends Employee{ private String firstName; private String lastName;
public Person(String firstName,String lastName) { this.firstName=firstName; this.lastName=lastName; }
}
Person is a class which inherits Employee and see the code below where Employee also inherit the Class Person.
public class Employee extends Person{ private double salary;
public Employee(String firstName,String...