An object is an instance of a class.
It contains the data and behavior defined by the class.
You can access object properties using the dot operator.
A constructor is a special function that runs when an object is created.
It is used to initialize object values.
When you create an object, the constructor runs automatically.
A destructor runs automatically when an object is destroyed.
It is used to clean up resources.
Create a class Student and create an object using a constructor. Print the values.