Core Java Interview Questions and Answers
<< Previous Question Next Question >>
 Question: 293 Page Views: 

Can an unreachable object become reachable again?



Posted By: Avi Date: 3 November 2010 04:37:55 AM
 Answer:

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.


Posted By: avibtech


Date: 3 November 2010 04:37:55 AM
Post a better Answer if you have
 
(Will show your Gravatar icon)  
  Country flag

Loading
Enter the text as shown in the image 2d1oXQ
Related Questions
Core Java : Can a class be declared static, private and final?

Can a class be declared static, private and final?

No, it can be declared private, final and default only.
Category: Core Java Date: 11/5/2010 11:42:47 PM
Core Java : Are arrays primitive data types?

Are arrays primitive data types?

No, they are objects in Java.
Category: Core Java Date: 11/5/2010 11:09:47 PM
Core Java : What is volatile variable?

What is volatile variable?

A volatile variable is not allowed to have a local copy of a variable that is different from the val....
Category: Core Java Date: 11/5/2010 10:58:51 PM
Core Java : What is internationalization?

What is internationalization?

Internationalization is the process of designing an application and it is independent of languages o....
Category: Core Java Date: 11/5/2010 10:25:51 PM
Core Java : What are the wait(), notify(), and notifyAll() methods in Thread class?

What are the wait(), notify(), and notifyAll() methods in Thread class?

The wait(),notify(), and notifyAll() methods are used to provide an efficient way for threads to wai....
Category: Core Java Date: 11/5/2010 9:53:50 PM