Answer Posted / nikhlesh gupta datia(m.p.)
Abstract Method:- The method which is define in the class without bodies that is without implementation is call as Abstract Method. & all the Abstract Method must be define with abstract keywords.
Abstract Class:- The class which is define with some abstract method is called as Abstract Class. & all the Abstract Method must be define with abstract keywords. We cannot created the object of abstract class.
| Is This Answer Correct ? | 18 Yes | 2 No |
Post New Answer View All Answers
How garbage collection is done in java?
Does string isempty check for null?
What does percent mean in java?
Can a lock be acquired on a class in java programming?
What is return data type?
How do generics work?
What does a void function return?
Why is it important to initialize a variable?
Why are functions called methods in java?
What is the do while loop syntax?
What is the return type of the main method?
What is finalize()? Is finalize() similar to a destructor?
Which browsers work with java?
Explain some best practices you would apply while using collection in java?
which one is more efficient int x; 1. if(x==null) 2.if(null==x) state which one either 1 or 2?