Multiple choice technology programming languages

Subclasses of an abstract class that do not provide an implementation of an abstract method are also abstract

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

When a subclass inherits from an abstract class, it must either provide concrete implementations for all inherited abstract methods or be declared as an abstract class itself. Leaving any abstract method unimplemented makes the subclass abstract.