An object is an instance of class. It is a specification of a particular class. An object of a class will have data and functionality to act upon that data.
Object are the software entity or run-time entity exist in the object oriented programming system where each thing can be considered as a real world entity.
It is an instant or variable of the user define data type called class which has their own set of data members independent with the other objects
object is the basic run time entity contains data and function. REPRESENTATION OF OBJECT IS. object:student. data:name,date of birth,marks. functions:avg,total.
object is a free standing entity,that can remember and act.or we can say that object is storage space.Every object have a unique name and address.so even if class contains nothing then also the size of the object will be one byte assign by compiler for a unique address.
object is a uniquely identifiable data block containing the value of variables specified by the class. Any function specified by a class can be invoked on its object and when this is done the identity of this object is passed implicitly to the function as a hidden argument called "this" pointer.