Answer Posted / 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 |
Post New Answer View All Answers
What is a double vs float?
What is the difference between Error, defect,fault, failure and mistake?
How many boolean functions are there?
What is string literal in java?
Is java 1.7 the same as java 7?
Why we cannot override static method?
What do you mean by mnemonics?
How do generics work in java?
Can you call a method on a null object?
Does isempty check for null?
What is an example of a keyword?
What are synchronized blocks in java?
What do you mean by scope of variable?
What is the importance of main method in Java?
Write an algorithm program in java for the following question.. In a VLSI design techniques,they used rectangles to design circuits. EVery rectangle is to be placed according to x,y coordinates. Check whether or not two rectangles overlap each other. Here overlapping of rectangles is acceptable, if 1) one rectangle intersect with other. 2) one rectangle fully covers other. The time of algorithm should not exceed o(n logn).