参考答案和解析
参考答案:D
更多“() of the two books holds the opinion that the danger of nuclear war is increasing. ”相关问题
  • 第1题:

    It was difficult to guess what his___________ to the news would be.

    A.reaction

    B. impression

    C. comment

    D. opinion


    参考答案A

  • 第2题:

    The 2008 summer Olympic Games ______ in Beijing.

    A、were held

    B、held

    C、was held

    D、holds


    正确答案:A

  • 第3题:

    From my standpoint,you know,this thing is just funny.

    A: position
    B: point of view
    C: knowledge
    D: opinion

    答案:B
    解析:
    题干意为“从我的角度来看,你知道,这事仅仅是有趣的。”句中划线词为名词,意为立场;观点。B项point of view意为观点;见地;立场;例句:Her point of view cohered with his.她的观点与他的观点一致。A项意为位置,方位;职位,工作;姿态;站位;C项意为知识,学问;认识;学科;D项意为意见;主张;故选B。

  • 第4题:

    A stereotype is a conventional,______,and oversimplified conception,opinion,or image of a group of people.

    A. effective

    B. formal

    C. formulaic

    D. beneficial


    参考答案C

  • 第5题:

    The lifeboat releasing gear lever should be marked with the words ______.

    A.DANGER,DO NOT TOUCH

    B.DANGER,BOAT MAY DROP

    C.DANGER,LEVER RELEASES BOAT

    D.DANGER,LEVER DROPS BOAT


    正确答案:D

  • 第6题:

    30、如下程序的输出结果是 int main() { char books[][20]={"English","Math","Physical"}; int i,j; for(i=0;i<3;i++) { for(j=0;books[i][j]!=0;j++){ if(books[i][0]<books[i][j]) books[i][0]= books[i][j]; } } printf("%c",books[0][0]); return 0; }

    A.E

    B.s

    C.n

    D.h


    B 解析: 本题涉及字符串最基本的两个概念:①字符串的长度是指字符串中字符的个数,但不包括字符串结束符;②以反斜杠“\\”开头的特殊字符序列,意思是把反斜杠后面的字符序列转换成特定的含义,而不是原来的含义,不包含在字符串长度之内,“\\”连同后面的字符为一个长度。