What is difference between abstract class & final class
Answer Posted / pallavi
An abstract class is one which can't be instantiated, as it
contains one or more abstract methods( methods that are
only declared, their implementation is left for
subclasses).An abstract class always needs to be extended
in order to be used.
A Final class is one which can't be extended/inherited.
| Is This Answer Correct ? | 11 Yes | 8 No |
Post New Answer View All Answers
Does unicode support all languages?
What do you understand by the term wrapper classes?
Why convert an applet to an application?
What is the difference between a constructor and a method?
What are loops in java?
What is data member in java?
What is a function easy definition?
Explain what are final variable in java?
What's the difference between an abstract class and interface in java?
What is the use of object and class classes?
what is the role of xml in core java?? and how we can use it?? can somebody give a sample program with explanation and from where i can read more about xml?????
How to split a string in java?
Which package has light weight components?
why would you use a synchronized block vs. Synchronized method? : Java thread
Difference between object and reference?