Can abstract classes have non - abstract methods?
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.