Can an unreachable object become reachable again?
Answers were Sorted based on User's Feedback
Answer / shadow
An unreachable object may become reachable again. This can
happen when the object's finalize() method is invoked and
the object performs an operation which causes it to become
accessible to reachable objects....!
CHHAYA
| Is This Answer Correct ? | 10 Yes | 1 No |
Answer / javadreams
String objects are immutable and are placed in a different
pool called as String constant pool. So whenever users try
to create new string object jvm looks out for this pool and
returns the reference for the string object.
So this could be one of the means of getting access to
unreachable string object .
| Is This Answer Correct ? | 1 Yes | 0 No |
Can you override a private or static method in java?
What is the purpose of object oriented programming?
What are the major advantages of internal iteration over external iteration?
How does access modifiers work?
Is Java Platform Independent if then how?
Can you run java program without main method?
What are the latest versions in JAVA related areas?
Explain the scope or life time of class variables or static variables?
what is an objects lock and which objects have locks? : Java thread
how can be object class inherited to all class in a program when java does not support multiple inheritance??
Suppose there is an Online shopping cart application having different objects like Cart, SelectionItem, Billing, COnfiguration, Authentication, Authorization, PersonalDetails etc. Out of this which one can be made a singleton pattern and why?
What do you know about the garbage collector?