Multiple choice .net c-sharp

An abstract class

  1. may contain instance variables

  2. may contain constructors

  3. may extend another class

  4. a and b

  5. all of the above

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

Abstract classes can contain instance variables, constructors (though not directly instantiated), and extend another class (single inheritance). All statements A, B, and C are true, so E is correct.