OOP & Design Patterns - Abstraction - Abstract Class vs Interface - When to Use Which
A developer extends an abstract class that provides a concrete method and declares an abstract method. The subclass overrides the concrete method but does not implement the abstract method. What is the outcome?
