what is difference between Exception and Error?

Answers were Sorted based on User's Feedback



what is difference between Exception and Error?..

Answer / shivaprasad

Exceptions are those which can be handled at the run time
where as errors cannot be handled.
Examples for exceptions: Array out of bonds, attempt to
divide by zero etc.
Exceptions can be handled by handlers using try - catch.

Is This Answer Correct ?    279 Yes 48 No

what is difference between Exception and Error?..

Answer / shahnawaz ali shah

Exception is coverable
Error is uncoverable

Exception can be handled
and Error can not be handled

Exceptio is an run time error when an abnormal condition is
occured the jvm detect it and make the object of that
abnormal condition and throws it to its own class and that
object is catched by catched block and catch block handled it

Error is the compile time error not runtime and it is not
covered it is only fixed by a programer.

Note
When Error occur then our programe stops and donot run

but If exception occur then nothing happining only try block
will be suspended and after that if any code is written that
will be executed properly means our system or programe work
properly.

Is This Answer Correct ?    116 Yes 17 No

what is difference between Exception and Error?..

Answer / ganesh

Exception means When a method encounters an abnormal
condition (an exception condition) that it can't handle
itself, it may throw an exception.
Error mens system doesn't handle.For example:Overflow,Out
of memory.

Is This Answer Correct ?    68 Yes 26 No

what is difference between Exception and Error?..

Answer / sandeep tyagi

The functional diiference, in terms of the compiler, is
that you don't have to declare errors in throws clauses on
methods, or catch them.

Conceptually, an Error means something has gone wrong with
your program, which should usually give up and crash,
whereas an exception is for an unusual situation that you,
as a programmer, anticipated as a possibilty. So, for
example, a divide-by-zero is an Error, but attempting to
read a file and finding it doesn't exist is an Exception.

Is This Answer Correct ?    78 Yes 55 No

what is difference between Exception and Error?..

Answer / pranab garai

Exceptions are also kind of errors which we can hadle at
both compile time and run time by using try and catch
blocks.
These are two types: Compile time and runtime.
Sql and IO operations are come under compile time array
index out of bounds and null pointer these are come under
runtime exceptions

Errors are the problems which we cant hadle, like stack
overflow and memory out of bounds like that...

Is This Answer Correct ?    11 Yes 0 No

what is difference between Exception and Error?..

Answer / saurabh kumar gupta

Errors are the abnormal conditions which can not be handled
by your program and the program will immediately interrupt
while exceptions are those abnormal conditions which your
program can handle with the techniques of error handling.
Errors can not be handled and will stop uour program.

Is This Answer Correct ?    12 Yes 4 No

what is difference between Exception and Error?..

Answer / gireesh

Exceptions are also kind of errors which we can hadle at
both compile time and run time by using try and catch
blocks.
These are two types: Compile time and runtime.
Sql and IO operations are come under compile time array
index out of bounds and null pointer these are come under
runtime exceptions

Errors are the problems which we cant hadle, like stack
overflow and memory out of bounds like that...

Is This Answer Correct ?    8 Yes 1 No

what is difference between Exception and Error?..

Answer / mantu

An Exception is an abnormal condition or situation that arises
in a code at run time means they are are run time error.
An exception can be caught handled manually but an error can not be caught or handled.

Is This Answer Correct ?    8 Yes 1 No

what is difference between Exception and Error?..

Answer / zohaib

exception occurs at runtime of your program
while an error may arise during your compile time

Is This Answer Correct ?    12 Yes 6 No

what is difference between Exception and Error?..

Answer / ravikiran

Exception is an abnormal condition occured at runtime.
Error is the one which is of runtime exception type,theat
what we cann't declare in throws clause.

Is This Answer Correct ?    33 Yes 29 No

Post New Answer

More Core Java Interview Questions

What is the tradeoff between using an unordered array versus an ordered array?

0 Answers  


What is serial version uid and its importance in java?

0 Answers  


how to make hashmap object as synchronized object?

2 Answers   BOB Technologies,


What are drawbacks of singleton class?

0 Answers  


How Vector class is synchronized,How to build user defined class as synchronized?

0 Answers  


what is the full form of java

3 Answers  


What is the code inside the public void actionPerformed(ActionEvent ae) override method in Applet [ Condition:- you have one TextField and One Button , you have to enter any color name inside the TextField, when you click on Button Your background will change according to your input color name]

2 Answers   IBM,


Which types of exceptions are caught at compile time?

0 Answers  


What is the parse method in java?

0 Answers  


Name few java util classes introduced with java 8 ?

0 Answers  


What is int argc char * argv?

0 Answers  


What programs use java?

0 Answers  


Categories