Describe what an Interface is and how it?s different from a
Class.
Answer Posted / amit upadhyay
interface is collection of abstract method.we can not
define any method in interface.we can implement that
abstract method by using the class.there is a restriction
in interface that you have to implement all the abstract
method in the class which is declared in interface.and we
can not create an object of interface.if we want to execute
the interface method then we have to implement first that
interface in any class after that create the object of
class ,then we can access execute that method
but in class we have to define the methods, which is
declered.we can also access that method through the object
of the class.
Is This Answer Correct ? | 9 Yes | 5 No |
Post New Answer View All Answers
i got a backdoor offer in process global,Bangalore..Can i work with it?
What is the renewal class?
What is abstraction example?
Why interface is used?
What does enum stand for?
What is encapsulation in oop?
hi all..i want to know oops concepts clearly can any1 explain??
Why polymorphism is used in oops?
Why do pointers exist?
What are the benefits of polymorphism?
What is interface in oop?
How to hide the base class functionality in Inheritance?
write knight tour problem which is present in datastructure
Can a varargs method be overloaded?
Why is polymorphism used?