Difference between error and exception

Answers were Sorted based on User's Feedback



Difference between error and exception..

Answer / rams

The mistakes in the syntax are resulted as errors
the mistakes in the logic of a program resulted as exceptions.

Is This Answer Correct ?    16 Yes 1 No

Difference between error and exception..

Answer / modi

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 (probably by giving user a feedback for
entering proper values etc.).

Is This Answer Correct ?    3 Yes 0 No

Difference between error and exception..

Answer / chitraraman

Error in java means the mistake done buy the programmer
logically or syntatically.
Exception is an error thrown by java impllctly like
IOException,Array out of bound Exception

Is This Answer Correct ?    2 Yes 2 No

Post New Answer

More Core Java Interview Questions

What are implicit objects in java?

0 Answers  


What sorting algorithm does javascript use?

0 Answers  


What does a boolean method return?

0 Answers  


Where is core java used?

0 Answers  


Does importing a package imports its sub-packages as well in java?

0 Answers  






Can u overload main()method.Give with example.

6 Answers   IBM, Schimatic Technologies,


Can you explain the difference b/n abtract and interface with a good example,?In what cases we have use abtract and what case interface?

4 Answers   Satyam,


What is 'finally' method in Exceptions?

4 Answers  


What are the Object and Class that classes used for?

3 Answers   Mphasis,


If a variable is declared as private, where may the variable be accessed?

0 Answers  


How we can run a jar file through command prompt in java?

0 Answers  


what is use of business objects?

3 Answers   Tech Mahindra,


Categories