Given the following code, select the correct statements:
class Person {} class Employee extends Person {} class Doctor extends Person {}
D
The code above does not define any method in the class Person that is redefined or implemented in the classes Employee and Doctor.
All three polymorphism concepts or design principles are based on a method, which is missing in these classes.