Answer:
A constructor is a method that performs initialization or setup operations.
Explanation:
A constructor is a special method that is immediately called just after a memory space as been allocated to an object or when an instance of the class is created.
Constructors perform initialization or setup operations, such as assigning initial values to instance Variables. They are called "constructors" because they assist in constructing an object even though they actually don't construct the object.