He can work out ________ plans in case one or another risk appears.A emergencyB urgencyC contingencyD efficiency

题目

He can work out ________ plans in case one or another risk appears.

A emergency

B urgency

C contingency

D efficiency


相似考题
参考答案和解析
参考答案C
更多“He can work out ________ plans in case one or another risk appears.A emergencyB urgenc ”相关问题
  • 第1题:

    下面程序的输出结果是( )。 Public class Sun { public static void main(String args[ ]) { int i = 9; switch (i) { default: System.out.println("default"); case 0: System.out.println("zero"); break; case 1: System.out.println("one"); case 2: System.out.println("two"); } } }

    A.default

    B.defauolt, zero

    C.error default clause not defined

    D.no output displayed


    正确答案:B
    解析:该题考查对switch-case-break的理解。每个分支语句后面必须有break语句,否则程序向下执行,直到遇到break语句或程序结束。所以该题i=9时没有匹配的case语句,执行 default分支语句,而default分支语句后没有 break语句,程序继续向下执行case 0分支语句,Case0分支语句后有break语句程序结束。故本题答案是B。

  • 第2题:

    有如下代码段:

    switch ( x ){

    case 1:System.out.println("One");break;

    case 2:

    case 3:System.out.println("Two");break;

    default:System.out.println("end");

    }

    变量x的取值下列哪些情形时,能使程序输出"Two" 。

    A. 1

    B. 2

    C. 3

    D. default


    正确答案:BC

  • 第3题:

    给定如下Java代码片段,编译运行时的结果是() int i=2; switch(i) { default: System.out.println(“default”); case 0: System.out.println(“zero”); break; case 1: System.out.println(“one”); case 2: System.out.println(“two”); }

    A.输出:default

    B.输出:default zero

    C.编译出错,default 语句位置不符合switch结构的语法结构

    D.输出two


    输出:135

  • 第4题:

    给出下列的程序片段,m为( )时将会输出default。 switch (m) case ():Systemt.out.println("case 0"); case 1: System.out.println("case 1");break; case 2:System.out.println("case2");break; default:System.out.println("default");

    A.0

    B.1

    C.2 2

    D.3


    正确答案:D

  • 第5题:

    10.I don-t like this T-shirt. Could you show me _______one,please? .

    A.other

    B.the other

    C.others

    D.another


    正确答案:D

  • 第6题:

    执行下列Java语句:int x = 1; switch (x+1 ) { case 1: System.out.print("One" ); case 2: System.out.print("Two" ); case 3: System.out.print("Three" ); default: System.out.print("Error" ); } 显示器上将显示()。

    A.One

    B.Two

    C.TwoThree

    D.TwoThreeError


    case 后面的常量可以相同。