Multiple choice .net c-sharp

Methods that are declared abstract in the base class must show implementation at the time of declaration.

  1. True

  2. False

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

Abstract methods are intended to be placeholders. They only provide the method signature (declaration) and cannot have a body (implementation) in the base class. The implementation must be provided by a non-abstract derived class using the override keyword.