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
What is size of int in java?
What is string in java is it a data type?
What is collection class in java?
Can a class be private or protected in java?
Give me an example of array and linked list? Where they can be used?
What does nextint () do in java?
What does string intern() method do?
What is complexity and its types?
Compare java and python.
define polymorphism in java
Where to store local variables?
Explain a situation where finally block will not be executed?
How to sort a collection of custom Objects in Java?
Explain 5 features introduced in jdk 1.7?
How to disable caching on back button of the browser?