铬酸盐制造业工人所患职业性肿瘤为()
A.皮肤癌
B.间皮瘤
C.膀胱癌
D.肺癌
E.肝血管肉瘤
参考答案:D
某段隧道全长9公里,有一辆汽车以每小时60公里到80公里之间的速率通过该隧道,下列可能是该车通过隧道所用的时间[ ]
A、6分钟
B、8分钟
C、10分钟
D、12分钟
下面程序输出的结果是什么 ( ) public class Quiz2 {public static void main(String args[]){ try {throw new MyException(); }catch(Exception e) { System.out.println("It’s caught!"); }finally{ System.out.println("It’s finally caught!"); }} } class MyException extends Exception{}
A.It’s finally caught!
B.It’s caught!
C.It’s caught!/It’s finally caught!
D.无输出