Constructors are special methods within classes that are used to initialize objects when they are created. They have the same name as the class and are called automatically when an object is instantiated.
congrats on reading the definition of Constructors. now let's actually learn it.
A parameterized constructor is a constructor that accepts parameters/arguments during object creation and uses those values to initialize instance variables.