Home »
MCQs »
OOPs MCQs
Which statement tells the correct difference between Exception and Error?
92. Which statement tells the correct difference between Exception and Error?
- An exception cannot be recovered. Errors can be recovered.
- An exception can be recovered. Errors cannot be recovered.
Answer: B) An exception can be recovered. Errors cannot be recovered.
Explanation:
Exceptions can be recovered by try-catch blocks, Errors cannot be recovered.