difference between class and object

Answers were Sorted based on User's Feedback



difference between class and object..

Answer / srinivas konga

class is acollection of methods
it is a logical representation



object is a instance of class

it is physical representation
it is always in local declaration

Is This Answer Correct ?    27 Yes 4 No

difference between class and object..

Answer / pradeep kumar shukla

class is a reserved keyword to create user define data type
class is a machanism to create abstract, customize data type

object is a collection of variable ,an object made at run time
it is instance of class

Is This Answer Correct ?    4 Yes 0 No

difference between class and object..

Answer / selva

class is a blueprint of an object.

object is instance of class.

Is This Answer Correct ?    3 Yes 0 No

difference between class and object..

Answer / sahil

CLASS IS A COLLECTION OF METHODS
IT IS ALOGICAL REPRESENTATION


OBJECT IS AINSTANCE OF CLASS
IT IS A PHYSICAL REPRESENTATION
IT IS ALWAYS IN LOCAL DECLERATION

Is This Answer Correct ?    2 Yes 0 No

difference between class and object..

Answer / sravani

class tells us how our s/w object looks like after its
construction.it is a logical representation.




object is a physical representation of a class.

Is This Answer Correct ?    2 Yes 0 No

difference between class and object..

Answer / manoj kumar

class is a blueprint or template for creating objects.class
is imaginary.it does not exits in real world .

while , object is an entity with some characteristic and
behavior.it is a real world entity .

In oops ,object is an entity that can store data value and
has its interface through its function.

we can create an object like that:

classname objectname=new classname();

example :

Rectangle s=new Rectangle();

Is This Answer Correct ?    1 Yes 0 No

difference between class and object..

Answer / saquib

class is compiled.
class is a keyword which is used to create customise data type.
class without object is logical.


but object never compiled it only executed.
object is a physical representation of a class

Is This Answer Correct ?    0 Yes 0 No

difference between class and object..

Answer / rajdeep gupta

class in a keyword to create user define data type.it is
only on logical perception .it is collection of similar
types of variable.

object is a variable of class type .there is no meaning of
class without creating object.object is made at run time on
the heap portion of ram

Is This Answer Correct ?    0 Yes 0 No

difference between class and object..

Answer / nishant kumar

class is the collection of data member and member function associated with it.
object is a instance of class.
class is a user define key-word.

Is This Answer Correct ?    0 Yes 0 No

difference between class and object..

Answer / maheshbirajdar

Class -
Class is collection of data member and member function .....
Class is logical entity...
Class is blueprint of object.....

class is collection of objects which holds properties of class...occupy
Object -

object that holds state , behaviour and identity properties

object is nothing but the having same memory space in ram.(minimum 1 byte compiler dependent).....

object is instance of class...............

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More OOPS Interview Questions

What are different types of JVM's? for example we use dalvik jvm for android then what about the remaining operating systems?

0 Answers   IBM,


Can you name some types of inheritance?

0 Answers   Motorola,


What is the difference between a mixin and inheritance?

0 Answers  


Why many objects can working together? How objects working togetherM I want to see example code.

2 Answers  


What is multiple inheritance ?

17 Answers   Blue Star, C DAC, CDAC, Impetus, Ness Technologies, Softvision Solution,






what is diff between .net 1.1 and .net 2.0

4 Answers  


What is friend function?

12 Answers   Wipro,


There are 2 empty jars of 5 and 3 liters capacity. And a river is flowing besides. I want to measure 4 liters of wanter using these 2 jars. How do you do this?

4 Answers  


What is abstraction example?

0 Answers  


How do you achieve runtime polymorphism?

0 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  


Why do we need oop?

0 Answers  


Categories