Multiple choice technology programming languages

Can abstract classes have non - abstract methods?

  1. True

  2. False

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

Abstract classes are allowed to contain both abstract methods (without bodies) and non-abstract (concrete) methods (with implementations). This permits abstract classes to provide default behavior to subclasses while leaving other methods to be overridden. Thus, the statement is true and the distractors are wrong.