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 - Finalize method (5 Questions)

2) What will be the output of the following program?


package finalize;

public class Ques01 {

	public static void main(String[] args) {
		
		MyClass object = new MyClass();
		object = null;
	}
}


class MyClass {
	
	void finalize(){
		System.out.println("finalize");
		super.finalize();
	}
}
  1. The program will output 'finalize'.
  2. It is unsure that the finalize() method will be called by the Garbage Collector.
  3. As soon the object reference 'object' is set to null, there is a possibility that the method 'finalize()' will be called.
  4. The program will cause compile-time errors.

Get more questions on Finalize method

Answer

2) d.

The program will cause compile-time errors and the method finalize() is declared with scope 'protected' in the base class and it is impossible to reduce the visibility in the derived class.

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