what is difference between Exception and Error?
Answers were Sorted based on User's Feedback
Answer / steffy
ERROR:
Erroor will be occur in compile time.
EXCEPTION:
Exception will occured in running time.
| Is This Answer Correct ? | 2 Yes | 7 No |
Answer / milan kumar
Exception means abnormal condition which is occur in our
code during program execution.
but error means it can't handle by the system.for
example,thread dead,out of memory,overflow.
| Is This Answer Correct ? | 7 Yes | 14 No |
Answer / ved
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 ? | 1 Yes | 8 No |
Answer / ankur bhargav
exception mins run time
error mins your logical error in you programming
| Is This Answer Correct ? | 2 Yes | 12 No |
Answer / vinay
Exceptions can be system defined or CAN BE USER DEFINED
(means user can enforce exceptins) whereas run time errors
are thrown by system only.
| Is This Answer Correct ? | 13 Yes | 30 No |
Difference between throw and throws?
os is developed in c no java is more secured then c na why dont the os developed is developed using java
Can you pass functions in java?
When do we use synchronized blocks and advantages of using synchronized blocks?
The class "Class" is belongs to which package?? a) java.lang b)java.lang.reflect c)java.util d)None
Why java uses the concept of the string literal?
what is mean by method signature?
What comes to mind when someone mentions a shallow copy in java?
What is the numeric promotion?
Java support call by reference (pass by reference) ?
What is == and === in javascript?
Explain the importance of finalize() method.