niusouti.com
更多“George avoided ______ questions about his drug use. A. to answer B. answered C. ”相关问题
  • 第1题:

    Actonscript中如何申明全局变量( )

    A. global. myName="George"

    B. _global. myName="George"

    C. global. myName="George"

    D. myName="George"


    正确答案:B 

  • 第2题:

    Marsha confessed that she knew nothing about computer.

    A:hoped
    B:admitted
    C:reported
    D:answered

    答案:B
    解析:
    本句意思:玛莎承认她对电脑一无所知。confess承认。admit承认;hope希望;report报 道;answer回答。

  • 第3题:

    Marsha confessed that she knew nothing of computer.

    A:reported
    B:admitted
    C:hoped
    D:answered

    答案:B
    解析:
    本句意思:Marsha承认她对电脑一无所知。confess意思为“承认”,admit与其意思最 接近。

  • 第4题:

    Marsha confessed that she knew nothing of computer.

    A:reported
    B:hoped
    C:admitted
    D:answered

    答案:C
    解析:
    本句意思:Marsha承认她对电脑一无所知。confess意思为“承认”,admit与其意思最 接近。

  • 第5题:

    Marshaconfessed that she knew nothing of computer.

    A:admitted
    B:reported
    C:hoped
    D:answered

    答案:A
    解析:
    本句意思:Marsha承认她对电脑一窍不通。confess在此意为“承认”,与admit(承认)意 思相同。report报告;hope希望;answer回答。

  • 第6题:

    下列对枚举类型的使用的代码中错误的是()。

    A.enum {no, yes, none}answer; if (answer == yes) { printf("Yesn"); }

    B.enum response{no = -1, yes = 1, none = 0}; enum response answer;

    C.answer = yes; printf("%d", answer);

    D.answer = "yes"; printf("%s", answer);


    enum a{a1, a2,a3};