What is an object?

Object is a software bundle of variables and related methods. Objects have state and behavior.

Showing Answers 1 - 30 of 30 Answers

MAS

  • Jul 4th, 2005
 

Objects also have identity, which makes them distinguishable from other objects.

  Was this answer useful?  Yes

Mohsin

  • Mar 28th, 2006
 

 An Object is an instance of a class. For Ex: ferrari and maruthi are  objetcs of class car. 

sanjiv singh

  • May 3rd, 2007
 

An object is a component of a program that knows how to perform certain actions and to interact with other pieces of the program.As we know, Functions are "black boxes" that take an input and spit out an output. Objects can be thought of as "smart" black boxes. That is, objects can know how to do more than one specific task, and they can store their own set of data.

  Was this answer useful?  Yes

Object, in Object Oriented terminology, is synonymous to Class in C++. However, in C++, Object is synonymous to what is called as an instance in Object Oriented terminology.

In C++, Object is an instance of a Class that has a runtime state, and is associated with certain specific methods that can change its state.

  Was this answer useful?  Yes

niti2679

  • May 14th, 2008
 

object is an intance of a class. Class has only the logical existence while the object has a physical existence.

  Was this answer useful?  Yes

ajish babu

  • Jul 7th, 2008
 


 

Objects are the instance of class. Object has data and the functions for modifying the data and handling messages from other object.

  Was this answer useful?  Yes

Object is a instant of a class. It is possible that there can be many instances of a class i.e many similar objects holding diffent data values. 

  Was this answer useful?  Yes

Objects are the region of storage of data with associated semantics.
 e.g.  int i;
 'i' is object which can store integer data.
It is an instance of class.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions