Here's a class hierarchy consisting of three classes (fields and methods are skipped):
class Person { }
class Employee extends Person { }
class Customer extends Person { }
We have several objects:
Person employee = new Employee();
Person customer = new Customer();
Select all statements that return true.