Combining concrete methods with abstract methods in a class.
Partial implementation refers to having both implemented and abstract methods in an abstract class. This allows some behavior to be shared, while leaving specific details to subclasses. For example, an abstract class `Transport` might include a concrete `fuelUp()` method and an abstract `move()` method, so each transport type must specify how it moves.
Additional Notes
What is partial implementation in abstract classes?