What is the difference(or similarity if there are some)
between object and a variable?

Answers were Sorted based on User's Feedback



What is the difference(or similarity if there are some) between object and a variable?..

Answer / dipty

A variable can hold asingle type of variable at a time..but an object can hold a number of variables of different type.

int a = 4; // a would be the variable
Car b = new Car();// b is an object
b.carGo();// this is an method in the object car created below.
class Car()
{
void carGo()
{
car moves;
}
}

Is This Answer Correct ?    14 Yes 1 No

What is the difference(or similarity if there are some) between object and a variable?..

Answer / ved.b.tripahti

Variables : variables are the place holder for a particular
type of data and this type actually determine how much space
this var will take in the memory.

int varEx = 2; // here varEx is a integer type variable that
take integer literals and will be used as identifier for the
user.

Object : Object shows the behavior that a particular class
can perform.this object is a medium to access the behaviour
of class.
Object may regards as the blue print of a particular class.

Car carObj = new Car(); // carObj is the reference ID of the
Car class.

here -- new Car() is the actual object that will be created
by JVM.

Note :- Object always created using - new keyword.the
identifier before =, is the reference id of new Car() object,
carObj is not the actual object itself.

Is This Answer Correct ?    2 Yes 0 No

What is the difference(or similarity if there are some) between object and a variable?..

Answer / udayasri

Variable: Variable is a value which is change during the run
time of the program, and it allocates the memory space for
the particular data type which we mention as var = "something"
Object: Object is the blue print of the class i.e. it shows
the behavior of the class. It creates memory for that whole
class and even class is refer by this object only.

Is This Answer Correct ?    1 Yes 2 No

What is the difference(or similarity if there are some) between object and a variable?..

Answer / ameca1

What I know is all variables are objects but not the reverse
. . .

Is This Answer Correct ?    1 Yes 5 No

Post New Answer

More Core Java Interview Questions

why abstract class will have a constructor?

4 Answers  


Can we write any code after throw statement?

0 Answers  


What is the exact difference in between unicast and multicast object? Where we will use?

0 Answers  


What is hypertext?

1 Answers  


What is the use of static keyword in "public static void main()"

10 Answers   College School Exams Tests, Infosys, Six Dee Telecom,






suppose we have an interface & that interface contains five methods. if a class implements that interface then we have to bound that to give tha definition of all five methods in that class. If we declare that class as abstract then can we call only two methods to give the deinition of that method & i don't want to give the definition of all the methods? can it possible

6 Answers   HP, Wipro,


What are the advantages of unicode?

0 Answers  


Do I need java on my pc?

0 Answers  


Can we write method inside a method in java?

0 Answers  


What are the access modifiers in java?

0 Answers  


What is a finally block? Is there a case when finally will not execute?

0 Answers  


How long will it take to learn java?

0 Answers  


Categories