What can be declared in an abstract class?

1 answer

Answer

1278463

2026-05-07 20:46

+ Follow

Abstract classes are to be extended until to a concrete class.

Can have both abstract & non abstract methods.

An Abstract class can not be instantiated.

A non abstract class can be extended to an abstract class.

If At least one abstract method present in a class then that class must be abstract.

abstract & final modifiers can never be together.

abstract classes can have both abstract methods & non abstract methods.

ReportLike(0ShareFavorite

Copyright © 2026 eLLeNow.com All Rights Reserved.