SKH Algorithms Interview Question

What is constructors What is primary key Pattern program

Interview Answer

Anonymous

Dec 5, 2022

Constructor is a special method that is invoked automatically at the time of object creation. It is used to initialize the data members of new objects generally. The constructor has the same name as the class . Constructor is invoked at the time of object creation. It constructs the values i.e. provides data for the object which is why it is known as constructors.

1