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
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 |
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 |
How do you load an HTML page from an Applet ?
What is the buffer limit?
What is double in java?
What do you mean by global variable?
Can we define private and protected modifiers for variables in interfaces?
Difference between Primary key and unique key?
What is serializable interface?
13 Answers Infosys, Probity Soft, Seed Infotech,
What is the return type of a program?s main() method?
Name and explain the types of ways which are used to pass arguments in any function in java.
What is the biggest integer?
What is parameter example?
What is a ternary operator in java? What is an interface?