What is an object?
Answers were Sorted based on User's Feedback
Answer / hima bindu
an instance of a class is called an object...
| Is This Answer Correct ? | 9 Yes | 1 No |
Answer / jagath
object is nothing but which is existing in the real world
and it has some properties,methods
| Is This Answer Correct ? | 8 Yes | 1 No |
Answer / shivanand
object is an instance ok a class through which we can access
class member and data.
| Is This Answer Correct ? | 7 Yes | 1 No |
Answer / srikanth gunnala
In Object Oriented programming Object is a run time
entity(requirement) that binds the methods and data(this
methods are operated with that binded data)together.
| Is This Answer Correct ? | 7 Yes | 1 No |
Answer / devender
object is a real time entity it has state,behavior
ex;animals,vechiles
| Is This Answer Correct ? | 5 Yes | 1 No |
Answer / priya
OBJECT:
*OBJECT IS A RUN TIME ENTITY.
*IT CAN ACCESS THE CLASS MEMBERS.
*WE CAN CREATE AN OBJECT BY THE CLASS NAME.
EXAMPLE:
class myclass
{
public:
int no;
void getdata();
void putdata();
void getdata()
{
cin>>no;
}
void putdata()
{
cout<<"NO:";
}
};
void main()
{
myclass.obj1;[-----------> object was created by the class name]
obj1.getdata();
obj1.putdata();
getch();
}
| Is This Answer Correct ? | 4 Yes | 1 No |
Answer / pasu nayan
object is a software bundle of related state and
behavior.it is a instance of a class.all are real world
entity.
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / poorna chandar rao
object is collection properties and methods object existing
in real world
example : dog is a object its having eye,legs..etc these are
all properties and walk(),eat(),....etc these are all methods
| Is This Answer Correct ? | 3 Yes | 2 No |
Answer / rushi
ok,
If you say class is structure then object is a way to implement class,
that is object is a runtime entity of class.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / anuj tiwari
An object is any thing that exists in and occupies space in storage and on which operation can be performed.
| Is This Answer Correct ? | 0 Yes | 0 No |
explain the concepts of oops?
In which Scenario you will go for Interface or Abstract Class?
1 Answers InfoAxon Technologies,
Conversion from a basic type to a class type may be achieved using______________
What is the difference between pass by value,pass by pointer,pass by reference in the catch block in the exception handling in c++
In OverLoading concept,Why they are not consider return value and why they are consider only parameters in method? For ex: public int Add(int a,int b){...} public String Add(int a,int b){...}
Do you know about multiple inheritance?
WAP find square root of any number (without using sqrt() )?
Program to check whether a word is in all capital letters
What do you mean by inline function?
What is super in oop?
What is difference between function overloading and overriding?
what is difference b/w object based and object oriented programming language?
18 Answers Chaitanya, College School Exams Tests, Educomp, IBM, Infosys, Telko,