婷婷同学的手经常脱皮,经医生诊断缺少维生素。婷婷同学应多吃下列食物中的( )
A.水果
B.花生
C.面条
D.鸡蛋
答案:A
富含维生素的食物是蔬菜、水果。
什么是事故隐患?
下面程序输出的结果是什么 ( ) 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.无输出