JavaBeat
Search JavaBeat

Certification Kits
SCJP 1.5 Exam Questions
SCJP 1.6 Exam Questions
SCWCD 5.0 Exam Questions
SCBCD 5.0 Exam Questions
SCJP 1.6 Links
SCJP 1.6 Home
What is new?
SCJP Books
Objectives
Mock Exams
NavigableSet
NavigableMap
GarbageCollection
Console
Finalize Method
Forums
SCJP Exam Voucher
Certification Links
SCJP 1.4
SCJP 1.5
SCJP 1.6
SCWCD 1.4
SCWCD 5.0
SCBCD 5.0
SCEA
SCEA 5.0
JavaBeat
Home
Articles
Tips
Code
QnA
Forums
400 Mock Questions on 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.

SCJP 1.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 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