Partial Implementation can be provided in___
-
Interface
-
Class
-
Abstract Class
-
All
-
None
C
Correct answer
Explanation
Abstract classes can have both abstract methods (without implementation) and concrete methods (with implementation). This allows partial implementation - some methods are implemented, others are left abstract for subclasses to implement. Interfaces require all methods to be implemented by the implementing class, and concrete classes must provide complete implementation.