What is an object?

Answers were Sorted based on User's Feedback



What is an object?..

Answer / hima bindu

an instance of a class is called an object...

Is This Answer Correct ?    9 Yes 1 No

What is an object?..

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

What is an object?..

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

What is an object?..

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

What is an object?..

Answer / devender

object is a real time entity it has state,behavior
ex;animals,vechiles

Is This Answer Correct ?    5 Yes 1 No

What is an object?..

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

What is an object?..

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

What is an object?..

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

What is an object?..

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

What is an object?..

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

Post New Answer

More OOPS Interview Questions

What is encapsulation in oop?

0 Answers  


What is encapsulation selenium?

0 Answers  


You attempt to query the data base with this command: SELECT name, salary FROM employee WHERE salary=(SELECT salary FROM employee WHERE last name='Wagner' OR dept no=233) Choose most appropriate option from the following: 1)Sub-queries are not allowed in the where clause. 2)a multiple row sub-query used with a single row comparison operator. 3)a single row query is used with a multiple row comparison operator.

10 Answers   Zycus Infotech,


can you give the dynamic polymorphism types?

2 Answers   Wipro,


What is the example of polymorphism?

0 Answers  






What is class in oop with example?

0 Answers  


what is the difference between <stdio.h>and "stdio.h"?

5 Answers  


What are the 3 principles of oop?

0 Answers  


Write a C++ program to conduct an election of a mayor.Declare a class ELECTION With the following specification: Data member: Name 25 character Age Integer symbol 1 character Member functions: To accept data for 20 contestant To accept symbol as voting from 100 voters. To declare the winner and the loser.

1 Answers   Global Academy, Infotech,


How to create a comment page in C #??

2 Answers  


What is the use of unnamed namespaces in OOPS? The only advantage I know is that they dont need the scope resolution operator while accessing them. I want to know some other advantages of unnamed namespaces...

2 Answers  


What is oops and its features?

0 Answers  


Categories