Concept Flow - Extending parent behavior
Define Parent class with method
Define Child class overriding method
Inside Child method: call super().method()
Execute Parent method code
Execute Child additional code
Return/Finish
This flow shows how a child class method calls the parent class method first, then adds its own behavior.