Answer Posted / niranjanravi
finally is a keyword we have in Exception handling.It
creates a block of code to be executed after try or catch
has completed and before the code following the try or
catch.finally block will be executed whether or not an
exception is thrown.
| Is This Answer Correct ? | 18 Yes | 1 No |
Post New Answer View All Answers
What is singleton class example?
What are the types of casting?
Does java support multiple inheritance or not?
What is object in java?
Can we serialize arraylist in java?
What is private static in java?
Write a factorial program using recursion in java?
Define an enumeration?
What is final keyword in java? Give an example.
How is final different from finally and finalize?
What is private protected in java?
What is vector capacity in java?
What is super?
What does the “static” keyword mean? Can you override private or static method in java?
How to create a base64 decoder in java8?