题目内容

Given the following code:
public void test() {
try { oneMethod() ;
System. out.println("condition 1") ;
} catch (ArrayIndexOutOfBoundsException e) {
System.out.println("condition 2") ;
} catch (Exception e) {
System. out.println("condition 3") ;
} finally {
System. out.println("finally") ;
}
}
Which will display if oneMethod run normally?

A. condition 1 B.condition 2 C.condition 3 D.finally

查看答案
更多问题

如果一个Java Applet程序文件中定义有3个类,则使用Sun公司的JDK编译器______编译该源程序文件将产生______

定时基准有哪几种传输方式?

目前市场上五种类型应用光纤的编号是______、______、______、______和______。

计算STM-16帧结构的总字节数、总比特数、传输速率。

答案查题题库