What is Constructor ?
Constructor is a type of method which gets executed when an object is created. Constructor name must be similar to class name. There are two types of constructors.
1. Constructor with out arguments (Default constructor).
2. Cons...