- What is a Bug ?
- What is an Exception ?
- What is Debugging ?
- What are the types of Errors ?
- What is an Exception Object and what it contains ?
- What is meant by Throwing an Exception ?
- What is an Exception Handler ?
- What is a Call Stack ?
- How many types of Exceptions are there ?
- What are Checked Exceptions ?
- What are Unchecked Exceptions ?
- How can we Catch and Handle Exceptions ?
- Explain about Try Block ?
- Explain about Catch Block ?
- Explain about Finally Block ?
- In what way we put all Try, Catch and Finally Blocks ?
- How an Exception Thrown by a Method without Handle It ?
- Explain Hierarchy of the Throwable Class ?
- Explain about Throw Statement in Java ?
- What is meant by Chained Exception ?
- What is meant by Stack Trace ?
- How to Access Stack Trace Information ?
- What are the steps to follow to crate our own Exceptions ?
- What is the Difference between Throw and Throws ?
- What is difference between an Error and an Exception ?
- Does it matter in what order catch statements for FileNotFoundException and IOException are written ?
- What is NullpointerException? how to handle/avoid it?
- What is ClassNotFoundException ?
- When NoClassDefinitionFoundException Occur ?
- What is NumberFormatException ?
- In Java 1.5 what are Assertions ?
- How to solve java.lang.nosuchmethoderror in main ?
- How to eliminate Exception in thread main java.lang.NoClassDefFoundError ?
- What is the difference b/w switch default & java exception?
- What happens if an exception occurs in finally block??
- How to skip Finally Block
- Explain about the 'throws' keyword ?