Instantiating an OBJECT
creating an object of the class is called instantiation. It occup fixes the initial memory for the object and returns a reference. An object instantiation in Java provides they blueprint for the class.
Syntax for Instantiation
ClassName objName = new ClassName();
Instantiation In Java:
Book book1 = new Book();
What is instantiation?
Creating an object of a class