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

What is garbage collection?



Posted By: Avi Date: 3 November 2010 02:05:51 PM
 Answer:

Garbage collection is the process of releasing memory used by unreferenced objects automatically.


Posted By: avibtech


Date: 3 November 2010 02:05:51 PM
Post a better Answer if you have
 
(Will show your Gravatar icon)  
  Country flag

Loading
Enter the text as shown in the image rOV7o8
Related Questions
Core Java : What is java collections?

What is java collections?

Java collections is a set of classes, that allows operations on  a collection of classes.
Category: Core Java Date: 11/6/2010 1:20:51 AM
Core Java : Which arithmetic operations can result in the throwing of an ArithmeticException?

Which arithmetic operations can result in the throwing of an ArithmeticException?

Integer / and % can result in the throwing of an ArithmeticException.
Category: Core Java Date: 11/6/2010 12:35:55 AM
Core Java : Are the Java run-time system generate class of exceptions?

Are the Java run-time system generate class of exceptions?

Yes, RuntimeException and Error exceptions.
Category: Core Java Date: 11/6/2010 12:14:49 AM
Core Java : What restrictions are placed on the values of each case of a switch statement?

What restrictions are placed on the values of each case of a switch statement?

During compilation, the values of each case of a switch statement must evaluate to a value that can ....
Category: Core Java Date: 11/6/2010 12:03:53 AM
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