What is object

Answers were Sorted based on User's Feedback



What is object..

Answer / venkat

You can describe an object in many ways:
Object is anything that exists physically. Or
Object is an instance of a class. or
Object is a bit of memory in the memory.

Is This Answer Correct ?    5 Yes 0 No

What is object..

Answer / dipil t t

Object is an instance of a class.

Is This Answer Correct ?    2 Yes 0 No

What is object..

Answer / parameswaran

Object is the basic run time entity...
>>without object we can create class.but
>>without class we can't create object.
>>when we create class memory is not allocated.
>>when we create object memory is allocated.

ALL THE BEST!

Warm & Regards

Parames(PRC)
Thanjavur

Is This Answer Correct ?    1 Yes 0 No

What is object..

Answer / vasanthi

Object is the real time entity.

Is This Answer Correct ?    1 Yes 1 No

What is object..

Answer / sayyad khalid

Object is an instance of a class.
from where we can access the member of class & modified it.
object is an real time entity which we can described by the help of class.
we can create no.of objects of same class.

Is This Answer Correct ?    0 Yes 0 No

What is object..

Answer / dhawal

object-anything in real world is object,in programatically
anthing that can be programable is object,class is templet
for object,object is basic runtime entity.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Core Java Interview Questions

How do you define a singleton class?

0 Answers  


Does collectionutils isempty check for null?

0 Answers  


Difference between a Scrollbar and a ScrollPane?

1 Answers  


Can memory leak in java?

0 Answers  


What is the output of the following Java program? class Main { public static void main(String args[]){ final int i; i = 10; System.out.println(i); } } 10. What is the output of the following Java program? class Main { public static void main(String args[]){ final int i; i = 10; System.out.println(i); } }

1 Answers  






Explain with example the concept of constant variable in java.

0 Answers   HCL,


Write a program to print count of empty strings in java 8?

0 Answers  


Why should we use singleton pattern instead of static class?

0 Answers  


What is the disadvantage of synchronization?

0 Answers  


Hi all, I am dng a mini project on FileSplitter application which splits the GBs of logfile into Smaller chunks(mbs) depending on the split size." How to handle GBs file? I am getting OutOfMemoryException, when I input such GB sized file. Thx

0 Answers  


Can a double value be cast to a byte?

3 Answers  


How does the garbage collector works in java?

0 Answers   Cyient,


Categories