go to previous page   go to home page   go to next page

Answer:

try
{
  // statements which might throw an ArithmeticException
  // or some type of RunTimeException
}

catch ( ArithmeticException ex )
{
  // statements to handle this
  // type of exception
}

catch ( RunTimeException ex  )
{
  // statements to handle this
  // type of exception
}
 
// Statements following the structure

Compact Diagram

A more compact way of showing the hierarchy is:

Exception

    IOException

    AWTException

    RunTimeException
        ArithmeticException
        NoSuchElementException
            InputMismatchException
        IndexOutOfBoundsException
            ArrayIndexOutOfBoundsException
        Others

    Others

Don't memorize this diagram (for one thing, it is far from complete). But look at it to see what it says.


QUESTION 11:

Which should come first in the catch blocks:

ArithmeticException or IndexOutOfBoundsException?


go to previous page   go to home page   go to next page