填空题

软件生命周期包括8个阶段。为了使各时期的任务更明确,又可分为3个时期:软件定义期、软件开发期、软件维护期。编码和测试属于 【3】 期。

【参考答案】

软件开发
<上一题 目录 下一题>
热门 试题

单项选择题
下面程序段的输出结果是 public class Test{ public static void main(String args[]){ int x,y; x=(int)Math.sqrt(5) 2+(int)Math.random()*5 2; y=(int)Math.sqrt(3) 2+(int)Math.random()*3 2; if(x>y) System.out.println( x>y ); else if(x==y) System.out.println( x=y ); else System.out.println( x<y ); } }
A.x>y
B.x=y
C.x<y
D.编译错误
单项选择题
下面程序段的输出结果为 public class Test { int a, b; Test() { a=100; b=200; } Test(int x,int y) { a=x; b=y; } public static void main(String args[]) { Test Obj1=new Test(12,45); System.out.println( a=+Obj1.a+ b= +Obj1.B) ; Test Obj2=new Test(); System.out.println( = +Obj2.a+ b= +Obj2.B) ; } }
A.a=100 b=200 a=12 b=45
B.a=12 b=45 a=100 b=200
C.a=12 b=200 a=100 b=45
D.a=100 b=45 a=12 b=200
相关试题
  • 下面的程序是列出目录c: Test中所有的.t...
  • 下面程序段是创建一个Date类的对象并把它串...
  • 执行下面的赋值语句后,a的值为 【8】 ...
  • 要使处于不同层次,甚至是互不相关的类可以...
  • 编译Java Applet源程序文件产生的字节码文...