Answer:
In object oriented programming, every object is an instance of the class.
Step-by-step explanation:
In OOP, every object is initialized as an instance of the class. The concept is just similar to the way we simply instantiate a variable of class type, let's say integer, so we write 'int x'. Similar is the case with when you have to instantiate an object of a class. Objects always have the same behaviors of their class. Every time you instantiate a new object from a class, you get a new copy of each of the class's instance variables. These copies are associated with the new object.
Tags: OOP, instance, object, class, object oriented programming