Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


What is the basically use of finally while we know it
is always executed but why?

Answers were Sorted based on User's Feedback



What is the basically use of finally while we know it is always executed but why?..

Answer / reshma

Using finally one can close the resources such as file
handler or a database connection. It ia good to maintain
the internal state of an object.

Is This Answer Correct ?    13 Yes 2 No

What is the basically use of finally while we know it is always executed but why?..

Answer / muffy.jad@gmail.com

The finally block is used to ensure resources are recovered
regardless of any problems that may occur.

finally is important because it allows the programmer to
guarantee the release of memory regardless of what happens
in the try block

finally is necessary when you need to set something other
than memory back to its original state.

Is This Answer Correct ?    11 Yes 0 No

What is the basically use of finally while we know it is always executed but why?..

Answer / sivadasan

Finally block always execute, its not consider whether an
exception is raised or not. Once try block is executed
means finally will be executed.

Finally block is necessary, often sufficient to execute
some important things its nothing but connection close
stmt..

system.exit(0); given in try catch block means finally
block will not be executed.

Is This Answer Correct ?    4 Yes 0 No

What is the basically use of finally while we know it is always executed but why?..

Answer / srinu

In finally block writing the code of clean up code i.e
means release the database connection,close the file.The
finally block complusary be executed block when ever
exception raised or not all ways execute this finally block

Note:
The following write statement write in try or catch block
it will not execute
System.error(0);

Is This Answer Correct ?    2 Yes 0 No

What is the basically use of finally while we know it is always executed but why?..

Answer / guest

it is must after a try statement

Is This Answer Correct ?    0 Yes 3 No

Post New Answer

More Core Java Interview Questions

What is abstraction with strong example program? (not a general program)

3 Answers  


Name some classes present in java.util.regex package.

0 Answers  


What is style and indentation?

0 Answers  


What does three dots mean in java?

0 Answers  


Where local and global variables are stored?

0 Answers  


as we know a static method could access static data and static method only. then how could main method call the object of aclass which is not static and other non static data

1 Answers  


What are the traverses in Binary Tree?

2 Answers   Adobe, Infosys,


What happens if an exception is throws from an object's destructor?

0 Answers   Amazon,


What is variable and its types?

0 Answers  


How do you start a thread?

0 Answers  


11. static class A { 12. void process() throws Exception { throw new Exception(); } 13. } 14. static class B extends A { 15. void process() { System.out.println(”B”); } 16. } 17. public static void main(String[] args) { 18. new B().process(); 19. } What is the result? 1 B 2 The code runs with no output. 3 Compilation fails because of an error in line 12. 4 Compilation fails because of an error in line 15.

6 Answers  


is there a separate stack for each thread in java? : Java thread

0 Answers  


Categories