题目内容

用来手工抛出异常的关键字是( )。

A. throws
B. throw
C. try
D. catch

查看答案
更多问题

异常产生的原因很多,常见的有()。

A. 程序运行环境发生变化
B. 程序设计本身存在缺陷
C. 硬件设备出现故障
D. 以上都有可能

找不到文件异常是( )。

A. FileNotFoundException
B. ArithmeticException
C. RuntimeException
D. ArrayIndexOutOffBoundException

找不到文件是()异常。

A. 运行时
B. 非运行时

下列程序输出的结果是()public class Test {public static void main(String[] args) {try{int i=1/0;}catch(ArithmeticException e){System.out.println("ArithmeticException");}catch(Exception e){System.out.println("exception");}finally{System.out.println("finally");}}}

ArithmeticExceptionexception
B. exception
C. exceptionfinally
D. ArithmeticExceptionfinally

答案查题题库