employer cover photo
employer logo
employer logo

General Dynamics Mission Systems

Engaged Employer

General Dynamics Mission Systems Interview Question

What is an abstract class and why would you use it?

Interview Answers

Anonymous

Jul 30, 2016

In Java, an abstract class is a class which contains abstract methods, which are methods with declarations but no implementations. The methods are implemented by sub-classes of the abstract class. This gives more flexibility to those methods making it easier to tailor them to your use.

1

Anonymous

Mar 8, 2012

It's used to subclassing.