Computer Science, asked by anutwins2626, 8 months ago

what type of exception can be ignored at compile time

Answers

Answered by anuham97
2

Answer:

run time Exception

Answered by amikkr
0

Runtime Exceptions can be ignored at compile time.

  • Unchecked exceptions take place at the time of execution. Such exceptions are known as Runtime Exceptions. During compilation, these exceptions are avoided but are checked during runtime.
  • No compile error occurs when an unchecked exception is thrown by the program and that exception is not declared.
  • When the users provide bad data then such exceptions take place during user-program interaction.
Similar questions