单项选择题

下列不属于软件工程的3个要素的是( )。

A.工具
B.过程
C.方法
D.环境
<上一题 目录 下一题>
热门 试题

单项选择题
下列代码的执行结果是( )。 public class Test3 public static void main(String args[]) System.out.pnntln(100%3); System.out.pfintln(100%3.0);
A.1和1
B.1和1.0
C.1.0和1
D.1.0和1.0
填空题
请阅读下列程序代码,然后将程序的执行结果补充完整。 程序代码: public class throwsExcepfion static void Proc(int se1) throws ArithmeticException,ArraylndexOutOfBoundsException System.out.println( in Situation +se1); if(se1==0) System.out.println( no Exception caught ); return; else if(se1==1) int iArray[]=new int[4]; iArray [1]=3; public static void main(String args[])[ try Proc(0); Proc(1); catch(ArraylndexOutOfBoundsException e) System.out.println( Catch +e); finally System.out.println( in Proc finally ); 执行结果: In Situation() no ExcepbOn cauSht 【14】 in Proc findly
相关试题
  • public Throwable(String messaSe)构造...
  • 请阅读下列程序代码,然后将程序的执行结果...
  • break语句最常见的用法是在switch语句中,...
  • 使用Swing编写Applet,则该Applet的主类应...
  • 压缩文件输出流类都是 【12】 抽象类的...