what is difference between Exception and Error?

Answer Posted / doshi rinal 9998099633

Error: Any departure from the expected behavior of the
system or program, which stops the working of the system is
an error. Exception:Any error or problem which one can
handle and continue to work normally.
An Exception can be caught and recovered:
ArrayIndexOutOfBoundsException means you tried to access a
position of an Array that does not exist - no big deal.
An Error is unrecoverable: OutOfMemoryError means that
the JVM has no more memory to store.
Java a compile time error is normally called an "error,"
while a runtime erroException can be handled and Error can
not be handled
When Error occur then our program stops and don't run but
If exception occur then nothing happening only try block
will be suspended and after that if any code is written
that will be executed properly means our system or program
work properly.
r is called an "exception."

Is This Answer Correct ?    13 Yes 10 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the difference between the reader/writer class hierarchy and the inputstream/outputstream class hierarchy in java programming?

584


Is java call by value?

563


Find the value of a specified element of the array arr[i] where 0 <= i <= n-1

511


Describe method overriding

552


What are the four corner stones of oop?

521






How do I print a “?

554


What is difference between iterator access and index access?

628


What does exp mean in math?

508


What is field name?

562


What does function identity () do?

493


What is identifier give example?

531


What are the types of exceptions?

564


How finally used under exception handling?

486


How do you declare a variable?

601


What is the flag in java?

588