Multiple choice .net c-sharp

All methods in an abstract base class must be declared abstract.

  1. True

  2. False

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

An abstract class can contain both abstract methods (without implementation) and concrete methods (with implementation). The presence of at least one abstract method requires the class itself to be declared abstract, but it does not force all other methods to be abstract.