"Open your exercise books and ( )the following," the teacher said.A.put downB.put onC.put offD.put up

题目
"Open your exercise books and ( )the following," the teacher said.

A.put down

B.put on

C.put off

D.put up


相似考题
更多“"Open your exercise books and ( )the following," the teacher said. ”相关问题
  • 第1题:

    You’re going to have a quiz ( )by another two in the ( )month.

    A. followed,followed

    B. followed,following

    C. following,followed

    D. following,following


    参考答案:B

  • 第2题:

    ( ) – Is Miss White __________ English teacher, Maria?

    – No, she teaches __________ geography.

    A.your;my

    B.you;mine

    C.you;us

    D.your;us


    正确答案:D

  • 第3题:

    Your ______ working on my vessel has acknowledged the truth of and liability for the damage.

    A.representative

    B.DP

    C.ship-owner

    D.man


    正确答案:A

  • 第4题:

    What's ( )job? Are ( ) British?

    A. your, your

    B. you, your

    C. your, you


    正确答案:C

  • 第5题:

    48.

    A. my

    B. his

    C. their

    D. your


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