Multiple choice technology programming languages

Partial Implementation can be provided in___

  1. Interface

  2. Class

  3. Abstract Class

  4. All

  5. None

Reveal answer Fill a bubble to check yourself
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.