Options:
- Child classes inherit the methods and properties of the parent
- Child classes are of a different type to their parent
- Subclasses are more detailed implementations of a parent class
- You should be able to substitute a child class for a parent without losing any functionality
- The subclass stresses a “has a” relationship with the parent class
2 Answers
Best Answer
The correct answers are:
- Child classes inherit the methods and properties of the parent
- Subclasses are more detailed implementations of a parent class
- You should be able to substitute a child class for a parent without losing any functionality