Multiple choice technology programming languages

All methods in an abstract class must be declared abstract

  1. True

  2. False

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

Abstract classes can (and often do) contain concrete methods alongside abstract ones. The abstract keyword means the class cannot be instantiated, not that every method must be abstract. Concrete methods provide shared implementation to subclasses.