What is "finally" keyword?
Answers were Sorted based on User's Feedback
Answer / k.santosh kumar
Finally:
finally is block of code written in exception handling.
finally block is executed irrespective whether exception as
occured or not. it will usefull when u want to close user
defined resources like file , opened resources(db stmts).
| Is This Answer Correct ? | 25 Yes | 2 No |
Answer / guest
FINALLY IS KEYWORD USED IN EXCEPTION HANDLING.
IT CREATES A BLOCK OF CODE TO BE EXECUTED AFTER TRY--CATCH
HAS COMPLETED AND BEFORE THE CODE FOLLOWING TRY--CATCH.
| Is This Answer Correct ? | 11 Yes | 4 No |
Answer / taniya
The finally is Java keyword that is used to defined a block
that is always executed in a try-catch-finally statement.It
is use after the try an catch block to handle the unexpected
exception occurred in the try block.
| Is This Answer Correct ? | 4 Yes | 2 No |
Answer / piyush pathak
finally :
finally is a java keyword.It is a block of statement which
is executed surley after the try-catch block whether method
returns normally or throws an exception.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / ss
The finally is Java keyword that is used to defined a block
that is always executed in a try-catch-finally statement.
try{
int x=10/2;
}
finally{
system.out.println("i am from finally");
}
here compiler will not compliant.why?even though x=10/2,x=10/0.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / ravikiran(aptech mumbai)
finally is used to conserve the resources before the
exception is being caught
| Is This Answer Correct ? | 4 Yes | 4 No |
Answer / seem a rana
final is the last class.that will never inherit further....
due to final key word... jus like ,,, final.test.
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / pathan muzafar
Finally is a keyword which is used execute the blocks after try and catch blocks even if exception occured or not in both try and catch block.
Note: Here,Block means collection of statements(variables,methods etc)....
Exception means Run time error during execution
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / sravanthi
In the finally block we usually have code that is used to
perform clean up activities corresponding to the code in the
try block.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is difference between iterator access and index access?
Is empty string in java?
Why java is considered as platform independent?
What are the actions that can occur when a thread enters blocked state?
What is a java lambda expression?
What is the difference between serial and throughput garbage collector?
How many types of the indexof method are there for strings?
What is the difference between a switch statement and an if statement?
can u handle an error if u write Thowable in the catch class lise try { some errorneous code }catch(Throwable e){ ...}
What about features of local inner class?
How the threads are synchronized?
What are dot operator queries?