● Project(71)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.(71)A.riskB.problemC.resultD.data

题目

● Project(71)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.

(71)

A.risk

B.problem

C.result

D.data


相似考题
参考答案和解析
正确答案:A
更多“● Project(71)is an uncertain event or condition that, if it occurs, has a positive or a ne ”相关问题
  • 第1题:

    In(71)programming,the user determines the sequence of instructions to be executed,not the programmer.

    A.top-down

    B.structure

    C.data-driven

    D.event-driven


    正确答案:D
    解析:在事件驱动的程序中,由用户而不是程序员决定将被执行的指令的序列。

  • 第2题:

    以下语句错误的是:______ 。

    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


    正确答案:D

  • 第3题:

    在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


    正确答案:D

  • 第4题:

    Project(71)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


    正确答案:A
    风险是一个不确定因素或条件,如果它一旦发生,可能对至少一个项目目标,如项目进度、项目成本、项目范围或项目质量产生负面或正面的影响。选项A是风险,选项B是问题,选项C是结果,选项D是数据。根据项目风险定义,风险包括两方面含义:一是未实现目标;二是不确定性。因此应选择A。

  • 第5题:

    在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


    正确答案:D
    解析:如果try块中的语句在执行时发生异常,则执行从该处中断而进入catch块,根据异常的类型进行匹配,最前面的优先进行匹配比较,只要该异常是catch中指定的异常的子类就匹配成功进而执行相应的catch中的内容,而finally块中的内容无论是否发生异常都将被执行。