contestada

Which of the following statements are true about checked and unchecked exceptions.

Respuesta :

There are different kinds of programs. The true statement about checked and unchecked exceptions is that the compiler ensures that the program is handling checked exceptions.

  • A checked exception is known to be often caught at compile time. A runtime or unchecked exception is, is simply known to be at a runtime.

A checked exception is often done using re-throwing but unchecked does not need to be handled.

See full question below

Which of the following statements about checked and unchecked exceptions is true?

A. Checked exceptions are handled by the Java runtime.

B. The compiler ensures that the program is handling unchecked exceptions.

C. The compiler ensures that the program is handling checked exceptions.

D. All exceptions that are descendants of RunTime, Exception are checked exceptions.

Learn more about exception from

https://brainly.com/question/25739714