Final method is a method which cannot be redefined by sub classes . So as in Interface final method can be declared and implemented simil...
Interface attributes can be initiated with values at the time of Interface declaration in any class definition. If we give values like cl...
A class which defines an Interface must implement all of its methods . If any method is missing in the implementation of that class then ...
Interface can only be declared in the public section of any class. Any other section will cause syntax error in the system. Here is a...
Let us suppose we have two abstract classes, class A & class B. Now we know that the abstract class must contains at least one abstr...
Method of a super class always holds super class attributes declared in public/protected/private sections . If the method is redefined in a...
When a sub class contains new components which are not declared in the super class then calling the new components by creating a dynamic re...