JavaBeat Certifications Certifications Kits Articles Interview Questions OCAJP 7 OCPJP 5 OCPJP 6 OCEJWCD 6 SCBCD 5.0 SCEA SCJA
400 Mock Questions on OCPJP 6 (formerly known as SCJP 1.6)
JUST Rs.300 or 10 USD Send us mail to sales@javabeat.net
more details
Do you have paypal account? Click Here to pay now and get the questions.

OCPJP 6 Mock Exams - GarbageCollection (5 Questions)

3) Which of the following statements are true about the following program?


package gc;

import javax.swing.JButton;

public class Ques01 {

	public static void main(String[] args) {
		
		JButton button = new JButton(); // Line A
		
		StringBuilder sb1 = getSB();  // Line B
		getSB(); // Line C
		
		button = null; // Line D
	}
	
	
	static StringBuilder getSB(){
		return new StringBuilder("");
	}
}
  1. The button object 'button' will become a candidate for garbage collection as soon the execution of Line A ends since the object is not used elsewhere.
  2. The newly created StringBuilder object as a result of method call in Line C becomes eligible for garbage collection.
  3. Even though the object pointed by the reference 'button' is set to null in Line D, the garbage collector, it is unsure that the Garbage collection reclaims the memory used by 'button'.

Get more questions on GarbageCollection

Answer

3) b and c.

The object 'button' wont be eligible for Garbage Collection unless it is explicitly set to null or the method returns.

400 Mock Questions on OCPJP 6 (formerly known as SCJP 1.6)
JUST Rs.300 or 10 USD Send us mail to sales@javabeat.net
more details

JavaBeat Website (2004-2008), India
javabeat | about us | useful resources
Copyright (2004 - 2008), JavaBeat