vijaylaxmi


{ City } pune
< Country > india
* Profession * be
User No # 118401
Total Questions Posted # 0
Total Answers Posted # 1

Total Answers Posted for My Questions # 0
Total Views for My Questions # 0

Users Marked my Answers as Correct # 2
Users Marked my Answers as Wrong # 1
Questions / { vijaylaxmi }
Questions Answers Category Views Company eMail




Answers / { vijaylaxmi }

Question { Wipro, 12812 }

What is an abstract class?


Answer

abstract class is an incomplete class which contains incomplete and complete methods.

incomplete methods contains only the declaration and ended with semicolon (; )

To access the incomplete methods we need create a concrete class with the help of extends keyword.

In concrete class there will be method definitions for incomplete methods.

abstract class is known as superclass and concrete class as subclass.


In concrete class we can create the object and we can call the incomplete methods and execute the program.

Is This Answer Correct ?    2 Yes 1 No