Object instantiation
If you are interested in a specific car: Then an instance of the class can be created:
Example : car mycar, RentedCar;
mycar and RentedCar are objects of class car.
It is also possible to set a specific characteristic such as color, if it is public.
Example: mycar.color = green;
If an attribute is private then an access function is needed to set its values.