Concept Flow - Abstract methods
Define abstract class
Declare abstract method (no body)
Create subclass
Implement abstract method in subclass
Instantiate subclass and call method
Method runs with subclass implementation
Abstract methods are declared without a body in an abstract class and must be implemented in subclasses before use.