The set of built in classes stored under certain name and used as a library in java application, is called as package.
The super most package of JAVA hierarchy is "java"....
Inner classes :To define one class into another, this process is called as inner classes.
There are four type of inner classes
1) Member inner class.
2) Static inner...
Abstract classA partially implemented and partially unimplemented class, is called as abstract class.
Definition : A class which have at least one abstract method,...
We can create the reference of super class and assign the sub class object to it. The execution behavior of this reference variable is depends upon the super class....
InterfaceA special type of class, which is used to declare only abstract methods is called as interface.
Keyword "interface" is used to define this class.
Keyword...
Inheritance:The concept of reutilazation is called as inheritance.
Inheritance is used to eliminate the reduandancy of program.
Note : Keyword "extends" is used to...