Answer Posted / prasviji143@gmail.com
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 |
Post New Answer View All Answers
Does google use java?
Are private methods final?
Define an enumeration?
Differences between C and Java?
Can the interface be final?
What is the use of generics? When was it added to the Java development Kit?
What is the byte order of byte buffer?
what do you mean by stream pipelining in java 8? Explain
What does compareto () do in java?
What is difference between static and abstract class?
Where is jre installed?
What are the differences between getting and load method?
How does thread synchronization occurs inside a monitor? What levels of synchronization can you apply?
why java uses class level type casting ?
What does sprintf mean?