What is difference between abstract class & final class
Answer Posted / rajabhau
abstract class can not instantiate.
abstract class can not create abstract constructor or static method.abstract class must be inherited. and vice versa final class.
| Is This Answer Correct ? | 25 Yes | 14 No |
Post New Answer View All Answers
How do you ensure that n threads can access n resources without deadlock?
Why do we need hashset in java?
What is reflexive association?
How do you escape a string?
What are the important features of Java 8 release?
Which api is provided by java for operations on set of objects?
How do you differentiate abstract class from interface?
Is java written in c?
Why is the singleton pattern considered to be an anti pattern?
What do you mean by of string::valueof expression in java 8?
What is java regex?
Difference between process and thread?
What is treeset in java collection?
What is lastindexof in java?
Which way a developer should use for creating thread, i.e. Sub classing thread or implementing runnable.