What is the difference between error and exception and
explain in simple words not whatever is given in the book.

Answers were Sorted based on User's Feedback



What is the difference between error and exception and explain in simple words not whatever is g..

Answer / muffy.jad@gmail.com

An error is an irrecoverable condition occurring at runtime.
Such as OutOfMemory error. These JVM errors and you can not
repair them at runtime.

While exceptions are conditions that occur because of bad
input etc. e.g. FileNotFoundException will be thrown if the
specified file does not exist. Or a NullPointerException
will take place if you try using a null reference.

In most of the cases it is possible to recover from an
exception

Is This Answer Correct ?    26 Yes 1 No

What is the difference between error and exception and explain in simple words not whatever is g..

Answer / shridhar shelake

Errors are born during compile-time and which is detected
by programmer while Exceptions are born during Run-Time and
which is not detected by developer.

Is This Answer Correct ?    16 Yes 5 No

What is the difference between error and exception and explain in simple words not whatever is g..

Answer / neha

errors are not expected to be caught.whereas exceptions can
be handled.Ex:system Failure is error whereas
arrayindexoutofbounds is exception.

Is This Answer Correct ?    8 Yes 0 No

What is the difference between error and exception and explain in simple words not whatever is g..

Answer / uv

Errors are generally seen at compile-time WHEREAS
Exceptions are seen at run-time.

Is This Answer Correct ?    15 Yes 10 No

What is the difference between error and exception and explain in simple words not whatever is g..

Answer / neelamadhab mallick

During compilation, JVM check for the error by matching 200
internal instruction code of JVM which is predefine in JVM
by SUN Mc. It is not a class rather than instruction code.
Exception is runtime error witch is handled by Exception
classes present in Java provided by Sun Mc.

Is This Answer Correct ?    5 Yes 1 No

What is the difference between error and exception and explain in simple words not whatever is g..

Answer / srinu

Error:-
Errors are occuried at compile time.These errors are araise
pure understanding the language. i.e small syantax
errors.its give an error at complite time.

Exception:-
It is unwanted ,unexpected event which distrubs the normal
folow of the program.its araise an at Runtime.

Is This Answer Correct ?    4 Yes 0 No

What is the difference between error and exception and explain in simple words not whatever is g..

Answer / vino

error:it will be occured when the human make mistake because
of not understand the proper basic syntaxes...exception:it
occurs due to some small memory space for larger values...

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Core Java Interview Questions

How do you convert an int to a string in java?

0 Answers  


How can we make string upper case or lower case?

0 Answers  


What is hash table in java?

0 Answers  


How GUI component handle its own events?

1 Answers  


Which class cannot be a subclass in java?

0 Answers  






What is array in java?

0 Answers  


how to know the total memory occupied by the objects in the ArrayList(Array list may contain duplicate objects)

0 Answers   Infosys, TCS,


If goto and const is reserve words than why it is not work in java?

0 Answers  


Can we overload the methods by making them static?

0 Answers  


There are two classes named classa and classb. Both classes are in the same package. Can a private member of classa can be accessed by an object of classb?

0 Answers  


Can a final variable be null?

0 Answers  


What is a wrapper method?

0 Answers  


Categories