● Project()is an uncertain event or condition that ,if it occurs ,has a positive or a negative effect on at least one project objective ,such as time ,cost ,scope or quality()A. risk B. problem C. result D. data
第1题:
以下语句错误的是:______ 。
A.Do while(Condition) Statements Loop
B.Do Statements Loop while(condition)
C.Do until(condition) Statements Loop
D.Do until(condition) Statements end do
第2题:
在oneMethod()方法运行正常的情况下,程序段将输出什么? ( ) public void test() { try { oneMethod(); System.out.println("condition 1"); } catch(ArrayIndexOutOfBoundsException e) { System.out.println("condition 2"); } catch(Exception e) { System.out.println("condition 3"); } finally { System.out.println("finally");
A.condition 1
B.condition 2
C.condition 3
D.condition 1 finally
第3题:
有一段小程序,对数组A[n]中所有正整数和负整数求累加和,negat和posit分别返回负整数和正整数的累加和。 int maxInt=32767,minInt=-32768; negat=0;posit=0; for(int i=0;i<n;i++) if(A[i]<0&&A[i]>=minInt-negat)negat=negat+A[i]; else if(A[i]>0&&A[i]<=maxInt-posit)posit=posit+A[i]; 可能的测试路径数是______。
A.3
B.4
C.5
D.6
第4题:
在oneMethod( )方法运行正常的情况下,程序段将输出什么? public void test( ){ try { oneMethod( ); System.out.println("condition 1"); } catch (ArrayIndexOutOfBoundsException e){ System.out.println("condition 2"); } catch(Exception e){ System.out.println("condition 3"); } finally { System.out.pritln("finally"); } }
A.condition 1
B.condition 2
C.condition 3
D.condition 1
第5题:
有一段小程序,对数组A[n]中所有正整数和负整数求累加和,negat和posit分别返回负整数和正整数的累加和。 int maxInt=32767,minInt=-32768; negat=0;posit=0; for(int i=0;i<n;i++) if(A[i]<0&&A[i]>=minInt-negat)negat=negat+A[i]; else if(A[i]>0&&A[i]<=maxInt-posit)posit=posit+A[i]; 可能的测试路径数是______。
A.3
B.4
C.5
D.6
第6题:
48、@while函数的正确使用格式是
A.condition: @while
B.@while():condition
C.@WHILE(CONDITION: )
D.@while{condition}()