hello all,
please confirm the answer with reason:
Question 28: Imagine there are two exception classes called Exception1 and Exception2 that descend from the Exception class. Given these two class definitions: class First {
void
test() throws Exception1, Exception2 { . . . }
}
class Second extends First {
void test() { . . . }
}
Create a class called Third that extends Second and defines a test() method. What exceptions can Third�s test() method throw?
Select all valid answers.
1 -Exception1
2 -Exception2
3 -no checked exceptions
4-any exceptions declared in the throws clause of the Third�s test() method.
ans 3
i think it should be 1 & 2.
kriti