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 Exception handling in Java
How do you handle run time errors please explain with an
example

Answers were Sorted based on User's Feedback



What is Exception handling in Java How do you handle run time errors please explain with an examp..

Answer / uv

Exceptions are handled by using "try","catch" and "finally"
block in the program.
The part of code which is suspected to give an exception is
kept under try block.
The exception is then been caught by the "catch" block. In
this way, we can avoid the abnormal termination of the
program and can also display some user friendly messages
which could guide them on how to refrain from exceptions.

finally block contains the code which is necessary to
execute like closing of connections established with
database while running the application.
finally block is always executed irrespective of the
exception.

Is This Answer Correct ?    16 Yes 0 No

What is Exception handling in Java How do you handle run time errors please explain with an examp..

Answer / edward sudhahar chennai

Exception handling is a mechanism to handle unexpected
situations in java. This avoids the program to be
terminated upnormaly.

Is This Answer Correct ?    4 Yes 0 No

Post New Answer

More Core Java Interview Questions

What modifiers are allowed for methods in an interface?

0 Answers  


Can I declare class as static or private?

0 Answers  


These static constructors are correct ? class A { statc intA() { } static A(int x,int y) { } static A(int x) { } }

0 Answers   HCL,


What is dynamic array in java?

0 Answers  


In which way does a Primitive data type is passed ?

5 Answers   Sun Microsystems,


What does t in java mean?

0 Answers  


What is the use of System class?

0 Answers  


What is the difference between throw and throws? What is the similarity between try and throw?

2 Answers  


How to convert string to int in java?

1 Answers  


What is methods and methodology?

0 Answers  


what is difference between String buffer and String builder?

5 Answers   Benchmark,


what is Remote Reference Layer ?

1 Answers  


Categories