Can an unreachable object become reachable again?
Answer Posted / niranjanravi
Yes, an unreachable object may become reachable again.This
happens when the object's finalize() method is invoked and
the objct performs an operation which causes it to become
accessible to reachable objects.
| Is This Answer Correct ? | 19 Yes | 1 No |
Post New Answer View All Answers
What exactly is methodology?
Can a class be defined inside an interface?
How do you escape in java?
Can I declare a class as private?
What is the difference between the Reader/Writer class hierarchy and the InputStream/OutputStream class hierarchy?
How many static init can you have?
Which are the two subclasses under exception class?
Can we create our own wrapper class in java?
Write a method to check if input string is palindrome?
Can we use catch statement for checked exceptions when there is no chance of raising exception in our code?
What do you mean by local class?
What is ternary operator in java?
Which is fastest collection in java?
In Java list the methods that can be overridden?
Explain OOPs concept.