37. I hate people _______ talk much but do little.A. whomB. whose C. which D. who

题目

37. I hate people _______ talk much but do little.

A. whomB. whose C. which D. who


相似考题
更多“37. I hate people _______ talk much but do little.A. whomB. whose C. which D. who ”相关问题
  • 第1题:

    健康计划的总体目标中的三个"W"指

    A、who,what,when

    B、what,when,why

    C、who,what,which

    D、what,when,where

    E、when,where,which


    参考答案:A

  • 第2题:

    [A] who [B] when [C] where [D] which


    正确答案:C

  • 第3题:

    以下能正确计算1+2+3+…+10的程序段是 。

    A.i=1; s=1; do {s=s+i; i++;} while (i<10);

    B.do {i=1;s=0; s=s+i; i++;} while (i<=10);

    C.do {i=1;s=1; s=s+i; i++;} while (i<=10);

    D.i=1,s=0; do {s=s+i; i++;} while (i<=10);

    E.i=1; s=1; do {s=s+i; i++;} while (i<=10);

    F.i=1,s=0; do {s=s+i; i++;} while (i<10);


    C

  • 第4题:

    ( )– Do you know the boy _______ is playing soccer there?

    – Certainly.He is a friend of my __________.

    A.who;brother’s

    B.who;brother

    C.whom;brother’s

    D.whose;brother


    正确答案:A

  • 第5题:

    以下程序段中,循环次数不超过10的是()

    A.int i=10; do{ i=i+1;} while(i<0);

    B.int i=5; do{ i+=1;} while(i>0);

    C.int i=1; do{ i+=2;} while(i!=10);

    D.int i=6; do{ i-=2;} while(i!=1);


    int i=10; do{ i=i+1;} while(i<0);

  • 第6题:

    15、以下程序段中,循环次数不超过10的是()

    A.int i=10; do{ i=i+1;} while(i<0);

    B.int i=5; do{ i+=1;} while(i>0);

    C.int i=1; do{ i+=2;} while(i!=10);

    D.int i=6; do{ i-=2;} while(i!=1);


    int i=10;do{i=i+1;}while(i<0);