Multiple choice

Which of the following is true about ClassNotFoundException?

i. ClassNotFoundException is caused when the class is not found. ii. ClassNotFoundException is caused when the class cannot instantiated. iii. ClassNotFoundException is a Checked Exception. iv. ClassNotFoundException is a Unchecked Exception.

  1. i. and iii. are true

  2. i. and iv. are true

  3. ii. and iii. are true

  4. ii. and iv. are true

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

This answer is correct. ClassNotFoundException is caused when the class is not found and it is a checked exception.