what is difference between interface and abstract class..?
Answer Posted / vinod kumar
Abstract: The members of abstract class is implemented
immediately in next class and the methods of abstract class
is blank.. as follows
abstract clas A
{
static void example();
static void ex1();
}
Interface: interface class can be implemented in other
program also....
| Is This Answer Correct ? | 8 Yes | 2 No |
Post New Answer View All Answers
What are the steps that are followed when two computers connect through tcp?
Explain scope or life time of local variables in java?
What do you understand by access specifiers in Java?
I want to re-reach and use an object once it has been garbage collected. Define how it’s possible?
How many types of methods are there?
What is the maximum size of arraylist in java?
how can i use a nonsynchronized hashtable?
Why java is not 100% object-oriented?
Is java owned by oracle?
How do you calculate roots in java?
What is a map in java?
How can you share data between two thread in Java?
How can we avoid including a header more than once?
Can we serialize static variables in java?
Describe method overriding