Discover Interview Question

What is difference between abstract class vs non-abstract class in Java.

Interview Answers

Anonymous

May 20, 2022

A class that is declared using “abstract” keyword is known as abstract class. It can have abstract methods(methods without body) as well as concrete methods (regular methods with body). A normal class(non-abstract class) cannot have abstract methods.

Anonymous

May 20, 2022

abstract methods can either be hidden or overridden, but non abstract methods can only be hidden

Anonymous

Feb 21, 2020

can you elaborate more on the interview process ? was it in riverwoods?

Anonymous

Jan 16, 2020

I have answered very well.