class p16 extends Tire{
public static void main(String[] args){
new p16().doStuff();
}

// insert code here   -->line 10
System.out.println(7/0);
}

}class MyException extends Exception{}
class Tire{
void doStuff(){}
}And given the following four code fragments:

1.void doStuff(){2.void doStuff() throws MyException{3.void doStuff() throws RuntimeException{4.void doStuff() throws ArithmeticException{
When fragments 1-4 are added, independently, at line 10, which are true?(choose all that apply)A. None will compileB. They will all compileC. Some, but not all, will compileD. All of those that compile will throw an exception at runtimeE. None of those that compile will throw an exception at runtimeF. Only some of those that compile will throw an exception at runtime答案为 C D答案C可以理解。
但是不明白D,或许我没有理解D答案的意思
请各位高手指教