---
title: "What is difference between Checked and Unchecked Exception?"  
description: "What is difference between Checked and Unchecked Exception?"  
author: "Amit Singh"  
published: 2011-01-11  
updated: 2020-09-20  
canonical: https://www.mindstick.com/interview/318/what-is-difference-between-checked-and-unchecked-exception  
category: "java"  
tags: ["java"]  
reading_time: 1 minute  

---

# What is difference between Checked and Unchecked Exception?

checked Exceptions must be dealt with in either a try/catch block or by declaring a "throws" in a method. Unchecked exceptions normally are Runtime exceptions like NullPointerException or ClassCastException.\

## Answers

### Answer by Amit Singh

checked Exceptions must be dealt with in either a try/catch block or by declaring a "throws" in a method. Unchecked exceptions normally are Runtime exceptions like NullPointerException or ClassCastException.\


---

Original Source: https://www.mindstick.com/interview/318/what-is-difference-between-checked-and-unchecked-exception

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
