Nelnet Interview Question

How would you instantiate an abstract class?

Interview Answer

Anonymous

Feb 25, 2020

An abstract class cannot be instantiated. It can however be inherited, the purpose of an abstract class is to be a base class for something else.

1