+1 vote
in C Plus Plus by
What is abstract class in JAVA?

1 Answer

0 votes
by

A class that is declared using the “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.

Related questions

+2 votes
asked Jun 19, 2019 in C Plus Plus by anonymous
+1 vote
asked May 25, 2020 in JAVA by Robindeniel
0 votes
asked Apr 30, 2021 in JAVA by rajeshsharma
...