Q) What are the different kind of errors encountered during applications / development and execution?
A)
Compiling the program + editing source code = development.
1) Syntactical errors raised by compiler (development time)
2) Run time errors raised by JVM (execution time)
3) Logical errors
->Logical errors are not handling by Exception handling. Compiler and JVM can’t handle these errors, the developer only handling.
->Because these errors given wrong output, but code is correct, but it contain illegal code.
Comments
Post a Comment