Answer:
In terms of object-oriented programming, after a class is defined,
<u>Object</u> can be created for that class.
Explanation:
While talking in terms of Object Oriented Programming, a class can be defined as a blueprint or a skeleton for making different Objects form it by providing initialized variables and attributes and discussing their behavior for implementation such as functions and methods.
All the Instances are inherited from some class. By inheritance we mean that each object is used as a key gradient for reusing code or mechanism when needed.
Example:
If we create a class home, it can be used as a structure or template for many other home instances. Each instance can have the different address, size, style and color for home. Moreover, all the function and methods that be applied on home can be define in the class home.
i hope it will help you!