what is the purpose of the final in the try-catch-final

Answers were Sorted based on User's Feedback



what is the purpose of the final in the try-catch-final..

Answer / vikas

final- declares a constant
finally- handles exceptions
finalize- helps in Garbage collection

Is This Answer Correct ?    10 Yes 1 No

what is the purpose of the final in the try-catch-final..

Answer / srinivasa

Finally is a block where we can write the code to free up
the resources like File closing,socket obj closing .

Is This Answer Correct ?    6 Yes 0 No

what is the purpose of the final in the try-catch-final..

Answer / ramakrishna challapalli

finally is an optional one its not a mandatory statement
after try-catch blocks

Is This Answer Correct ?    3 Yes 0 No

what is the purpose of the final in the try-catch-final..

Answer / guest

finally will execute after catch block if try throw
exception else it will execute after try.

ex:

class a
{
public static void main(String []asd)
{

try
{
throw new Exception();
}catch(Exception e)
{
System.out.println("catch");
}
finally{
System.out.println("finally");
}
}
}

Is This Answer Correct ?    3 Yes 0 No

what is the purpose of the final in the try-catch-final..

Answer / maha

That's not final,that one is finally, which is followed
after the try-catch block,It helps "garbage collection".

Is This Answer Correct ?    3 Yes 3 No

what is the purpose of the final in the try-catch-final..

Answer / srinivas

After executing try catch statements last statement is
finally it must execute in at anycase

Is This Answer Correct ?    0 Yes 0 No

what is the purpose of the final in the try-catch-final..

Answer / madhu

yes it correct it is finally,the use of finally is,if we
did not catch the exception in try/catch block also finnaly
will catch.

Is This Answer Correct ?    1 Yes 6 No

Post New Answer

More Core Java Interview Questions

Give an example of use of pointers in java class.

0 Answers  


Which class represents the socket that both the client and server use to communicate with each other?

0 Answers  


Can Applet have constructors?

5 Answers   Infosys,


what is multi-tasking

3 Answers   Anand Group, Photon Infotech, Tech Mahindra,


Can we extend immutable class?

0 Answers  






What is Transient and volatile

10 Answers   iFlex,


what is meant by Garbage collection?

0 Answers   Cap Gemini,


What are benefits of java?

0 Answers  


what is java

10 Answers  


Can we use switch statement with strings?

0 Answers  


What are predefined functions?

0 Answers  


What is the purpose of a default constructor?

0 Answers  


Categories