Home
Recent Q&A
Java
Cloud
JavaScript
Python
SQL
PHP
HTML
C++
Data Science
DBMS
Devops
Hadoop
Machine Learning
Azure
Blockchain
Devops
Ask a Question
Which of the following is an example of a checked exception in Java?
Home
JAVA
Which of the following is an example of a checked exception in Java?
0
votes
asked
May 12
in
JAVA
by
rahuljain1
Which of the following is an example of a checked exception in Java?
A) ArrayIndexOutOfBoundsException
B) IllegalArgumentException
C) RuntimeException
D) FileNotFoundException
checked
exception
java
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
May 12
by
rahuljain1
Answer: D
Explanation: FileNotFoundException is an example of a checked exception in JavA) Checked exceptions are checked at compile-time and must be caught or declared in the method signature.
...