Across
- 2. – Checked: Thrown when attempting to open a non-existent file.
- 4. – Unchecked: Arithmetic error, like division by zero.
- 5. – Unchecked: Invalid method parameter passed
- 6. – Unchecked: Dereferencing a null reference.
- 7. – Checked: Requested method does not exist (common in reflection).
- 8. – Unchecked: Invalid casting between incompatible types
- 9. – Checked: File or stream operations, often used in try-with-resources.
Down
- 1. – Unchecked: Specifically for arrays.
- 3. – Unchecked: Failed conversion from string to number (e.g., "abc" to int).
