Options:
- Superclass variables are typically exposed
- A child class can be substituted for a parent class
- An object can be used as if it were an object of its superclass while still using its overridden methods
- A child class and a parent class have different types
- Subclass-specific versions of a superclass method are implemented in the subclasses
- Methods of the superclass can be used in the subclasses
- Polymorphism is accomplished through inheritance and overriding
1 Answers
Best Answer
- A child class can be substituted for a parent class
- An object can be used as if it were an object of its superclass while still using its overridden methods
- Subclass-specific versions of a superclass method are implemented in the subclasses
- Methods of the superclass can be used in the subclasses
- Polymorphism is accomplished through inheritance and overriding