Multiple choice technology programming languages

Abstract methods should override in non abstract child class. If the child class is also abstract class then abstract methods overriding is not mandatory.

  1. True

  2. False

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

Abstract methods declare method signatures without implementation. Non-abstract child classes must provide concrete implementations. Abstract child classes can choose to implement abstract methods or declare them abstract again for their own children to implement.