更多“16______. A. other B. some C. the other D. another ”相关问题
  • 第1题:

    classWorkimplementsRunnable{Threadother;Work(Threadother){this.other=other;}publicvoidrun(){try{other.join();}catch(Exceptione){}System.out.print("afterjoin");}}classLaunch{publicstaticvoidmain(String[]args){newThread(newWork(Thread.currentThread())).start();System.out.print("afterstart");}}结果为:()

    A.afterjoin

    B.afterstart

    C.afterjoinafterstart

    D.afterstartafterjoin


    参考答案:D

  • 第2题:

    8. There are many tall buildings on ___________sides of the street.

    A.either

    B.all

    C.both

    D.other


    正确答案:C
    8.C【解析】either表示“二者其中之一”,后接单数名词;all指三者或三者以上,街道只有两边,B错误。 both表两个都,other表“其它的”,由句意知选c.

  • 第3题:

    针对下列程序段,需要( )个测试用例才可以满足语句覆盖的要求。
    switch(value){case 0:other=30;break;case 1:other=50;break;case 2:other=300;case 3:other=other/value;break;default:other=other*value;}

    A.2
    B.3
    C.4
    D.5

    答案:C
    解析:
    本题考查白盒测试用例设计方法--语句覆盖法的概念。语句覆盖(Statement Coverage)的含义是:选择足够多的测试数据,使被测程序中的每条语句至少执行一次。

  • 第4题:

    14.

    A.first

    B.another

    C.last

    D.other


    正确答案:A
    A【解析】句意为“世界语是1887年在世界上发明的第一种真正的国际语言。”故选A。

  • 第5题:

    The heights and soundings of Admiralty chart are expressed ______ in Fathoms ______ in Meters.

    A.either,or

    B.neither,nor

    C.another,nor

    D.other,or


    正确答案:A

  • 第6题:

    1、针对下列程序段,需要()个测试用例才可以满足语句覆盖的要求。 switch (value ) { case 0: other = 30; break; case 1: other = 50; break; case 2: other = 300; case 3: other = other/value; break; default: other = other * value; }

    A.2

    B.3

    C.4

    D.5


    4