When is an object in the mean to garbage collection?
Answers were Sorted based on User's Feedback
Answer / chandrarekha
whenever the object goes out of scope or when it is no
longer being referenced, in such cases it can be a garbage
object. Garbage collection is implicitly invoked whenever
resources have to be allocated to the new objects that are
created and approach to detect a garbage object can be done
through reference-counting collectors,tracing
collectors,compacting collectors. The garbage collectors
can also be explicitly invoked by gc() supported by JVM
which is in the java.lang package
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / sathya
When the object is no longer referenced, its eligible for
Garbage Collection
| Is This Answer Correct ? | 0 Yes | 1 No |
Make a data structure and implement an algorithm to print all the files in a directory. (The root directory can have sub-directories too.)
What is difference between throw and throws ?
What is an array in java?
What is r in java?
What is the use of volatile in java?
What is lazy programming?
What is the difference between private & public & friendly classes?
What is the difference between assignment and initialization?
What is the java reflection api? Why it’s so important to have?
What is unicode?
Differentiate between nested and inner class in java.
0 Answers Akamai Technologies,
What is variable declaration and definition?