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

When is the finally clause of a try-catch-finally statement executed?



Posted By: Avi Date: 9 November 2010 06:02:49 AM
 Answer:

Unless the thread of execution terminates or an exception occurs within the execution of the finally clause.


Posted By: avibtech


Date: 9 November 2010 06:02:49 AM
Post a better Answer if you have
 
(Will show your Gravatar icon)  
  Country flag

Loading
Enter the text as shown in the image Y8mhBm
Related Questions
Core Java : When can an object reference be cast to an interface reference?

When can an object reference be cast to an interface reference?

An object reference be cast to an interface reference when the object implements the referenced inte....
Category: Core Java Date: 11/7/2010 2:46:53 AM
Core Java : Can a java program be compiled without main?

Can a java program be compiled without main?

Yes, it’s not required for the main method for compiling the java program. But it must have a main,....
Category: Core Java Date: 11/7/2010 1:52:47 AM
Core Java : What is anonymous class ?

What is anonymous class ?

An anonymous class is a type of inner class that don't have any name.
Category: Core Java Date: 11/7/2010 1:41:51 AM
Core Java : What is object cloning?

What is object cloning?

It is the process of duplicating an object and the two objects will exist in the memory at the same ....
Category: Core Java Date: 11/7/2010 1:08:51 AM
Core Java : What is the range of the short type?

What is the range of the short type?

from -(2^15) to 2^15 - 1.
Category: Core Java Date: 11/7/2010 12:03:48 AM