参考答案和解析
参考答案:B
更多“Could you arrange these books in proper()? ”相关问题
  • 第1题:

    This is not an inevitable reaction to high office.

    A:strange
    B:certain
    C:inconsistent
    D:proper

    答案:B
    解析:
    inevitable“不可避免的、必然要发生的”。certain(肯定的、必然的),与inevitable意思相近。例如:It is almost certain that the government will lose the next election.差不多可以肯定,政府在下届选举中要失败。strange“奇怪的”;inconsistent“不一致的”;proper“合适的、得体的”。

  • 第2题:

    It's inevitable that doctors will make the occasional mistake.

    A:strange
    B:certain
    C:inconsistent
    D:proper

    答案:B
    解析:
    本句意思:医生偶尔也犯错误,这是难以避免的事情。strange的意思为“奇怪的”;certain 的意思为“肯定的,不可避免的”;inconsistent的意思为“不一致的,相矛盾的” proper的意思为 “恰当的,合适的”。inevitable的意思为“难以避免的,必然的”,和certain的意思接近。

  • 第3题:

    I__________have been there,but I__________not find the time.

    A.should;would
    B.should;could
    C.might;could
    D.could;could

    答案:B
    解析:
    考查情态动词的用法。句意为:“我本应该去那里,但我没时间。”should have done表示“过去本应做的事而实际上并没有做”,常含有责备、遗憾的语气。

  • 第4题:

    She moves from one exotic location to another.

    A: unusual
    B: familiar
    C: similar
    D: proper

    答案:A
    解析:
    题干意为“她在异国他乡辗转。” 句中划线词意为“异国的,奇异的”。A项unusual意为“不常见的,独特的”;例句:I look on the matter as most unusual.我认为这件事极不寻常。B项意为“熟悉的”;C项意为“类似的”;D项意为“适当的”;故选A。

  • 第5题:

    She moves from one exotic location to another.

    A: familiar
    B: unusual
    C: similar
    D: proper

    答案:B
    解析:
    题干意为“她在异国他乡辗转。”句中划线词意为异国的,奇异的。B项unusual意为不常见的,独特的;例句:I look on the matter as most unusual.我认为这件事极不寻常。A项意为熟悉的;C项意为类似的;例句 D项意为适当的;故选B。

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