Which of the following is/are true for an abstract class?<br>1. A class is declared abstract by prefacing the definition with the word abstract.<br>2. A class is declare abstract by using the keyword implements.<br>3. It is a class that really isn’t supposed to ever be instantiated but instead serves as a base class.<br>4. Attempting to instantiate an abstract class results in an error.

Correct Answer: Only 2