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 happens if I remove static from main method?
Explain about main() method in java ?
Can we print null in java?
What is the use of static methods?
Why is java called java?
What is array and arraylist in java?
What is an example of procedure?
Can we overload run() method in java?
Why declare Main() method as a static in java ?
Explain the pointers in Java?
Write a java program to print fibonacci series?
List out benefits of object oriented programming language?
Distinguish between a predicate and a function?
Detail discussions on JVM, memory management and garbage collector.
What is array pointers ?