Java Programming and Technical

Q. What are checked exceptions?

A. Checked exception are those which the Java compiler forces you to catch. e.g. IOException are checked Exceptions

Read Solution (Total 0)

Java Other Question

Q. What is a Java Bean?

A. A Java Bean is a software component that has been designed to be reusable in a variety of different environments.
Q. What are runtime exceptions?

A. Runtime exceptions are those exceptions that are thrown at runtime because of either wrong input data or because of wrong business logic etc. These are not checked by the compiler at compile time.