Dear Jeanne,
The question states the following:
Which of the following statements about overriding a method is incorrect?
A. The return types must be covariant.
B. The access modifier of the method in the child class must be the same or broader than the method in the superclass.
C. A checked exception thrown by the method in the parent class must be thrown by the method in the child class.
D. A checked exception thrown by a method in the parent class must be the same or narrower than the exception thrown by the method in the child class.
And it states that the correct answer is C, and thus claiming that D (A checked exception thrown by a method in the parent class must be the same or narrower than the exception thrown by the method in the child class) is a valid statement, which it is not.