—Could I borrow your English Dictionary? —A. Thank you very much.B. No, I am not available.C. I’m sorry. It’s not at hand now.D. It’s very kind of you.

题目
—Could I borrow your English Dictionary? —

A. Thank you very much.

B. No, I am not available.

C. I’m sorry. It’s not at hand now.

D. It’s very kind of you.


相似考题
更多“—Could I borrow your English Dictionary? — ”相关问题
  • 第1题:

    ____ I?know,?there?isn’t?such?a?word?in?English.

    A、As much as

    B、So far as

    C、As long as

    D、As soon as


    参考答案:B

  • 第2题:

    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表示“过去本应做的事而实际上并没有做”,常含有责备、遗憾的语气。

  • 第3题:

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

  • 第4题:

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

    – No, she teaches __________ geography.

    A.your;my

    B.you;mine

    C.you;us

    D.your;us


    正确答案:D

  • 第5题:

    Dictionary对象的缺省属性为(),所以可以直接对Dictionary对象进行缺省操作。
    Item

  • 第6题:

    29、如下程序的输出结果是 int main() { char books[][20]={"English","Math","Physical"}; int i,j; for(i=0;i<3;i++) { strcat(books[i],"book"); } printf("%s",&books[i-1][3]); return 0; }

    A.Physicalbook

    B.sical

    C.Physical

    D.sicalbook


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