niusouti.com
更多“We should consider the students’ requestthe school library provide more books on popul ”相关问题
  • 第1题:

    People()foxes()clever but sly animals.

    A. consider…to be

    B. consider…as

    C. Consider…X


    参考答案:B

  • 第2题:

    ______ it rain tomorrow moring, the loading ______.

    A.Should / will be postponed

    B.If / shall be postponed

    C.Should / would be postponed

    D.If / has to be postponed


    正确答案:C
    一旦明天早上下雨,装货将被延迟。

  • 第3题:

    用所给的词和词组写出符合逻辑的句子。 we/consider/unless/placing an order/will not/you can/give us/of 10%/a price reduction
    We will not consider placing an order unless you can give us a price reduction of 10%.

  • 第4题:

    ________ the vessel have no safety radiotelegraphy certificate at the time of her delivery,she ________ be held to be unseaworthy.

    A.If/may

    B.Will/shall

    C.Should/would

    D.Would/should


    正确答案:C

  • 第5题:

    The company has the right to end his employment at any time.

    A:offer
    B:continue
    C:stop
    D:provide

    答案:C
    解析:
    这句话的意思是:公司有权在任何时间终止对他的雇用。句中“end”意为“结束”,四个 选项中A项意为“提出”;B项意为“继续”;C项意为“停止”;D项意为“提供”。因此只有C项最为合适。

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