更多“People gave ( ) to each other as gifts.A. eggsB. moneyC. cakesD. sugar ”相关问题
  • 第1题:

    The word “tallied” (Line 3, Para. 2) probably means ______.

    A.calculated

    B.corresponded to

    C.listed

    D.gave


    正确答案:A
    A猜词题。单词所在的句子为“Mr. Luzaich, a mechanical engineer in Windsor, Calif. —in the Sonoma County wine country—first tallied the costs of his reasonable consumption in October 200 1.”(Luzaich先生是加利福尼亚州温莎的机械工程师,他2001年10月第一次……适度饮酒的费用。)文中后面他说的话是他浪费了好多酒的事实,而并未给出他饮酒的费用,因此,四个选项A“计算”,B“符合”,C“列出”,D“给出”中,C、D不符,B也不符合句意,选项A符合逻辑,通过计算他得出自己喝酒其实浪费许多。

  • 第2题:

    当R-EACH采用基本接入模式的时候,对于接入前缀和接入消息的承载信道错误的是:()

    A.R-ACH,R-EACH

    B.R-EACH,R-ACH

    C.R-EACH,R-EACH

    D.R-EACH,R-CCCH


    参考答案:A, B, D

  • 第3题:

    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

  • 第4题:

    当R-EACH采用预留接入模式的时候,它的接入前缀和接入消息承载信道错误的是:()

    A.R-ACH,R-EACH

    B.R-EACH,R-ACH

    C.R-EACH,R-EACH

    D.R-EACH,R-CCCH


    参考答案:A, B, C

  • 第5题:

    针对下列程序段,需要( )个测试用例才可以满足语句覆盖的要求。
    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)的含义是:选择足够多的测试数据,使被测程序中的每条语句至少执行一次。