Concept Flow - Method overriding
Define Parent Class with Method
Define Child Class with Same Method
Create Child Object
Call Method on Child Object
Child's Method Runs, Overrides Parent's
Output Result
The child class defines a method with the same name as the parent class, so when called on the child object, the child's method runs instead of the parent's.