niusouti.com

I wonder if I could use your bicycle for an hour.( ).A. Yes, you need.B. I’m afraid you mustn’tC. Why not? Do it for yourself.D. Of course. Go ahead please.

题目
I wonder if I could use your bicycle for an hour.( ).

A. Yes, you need.

B. I’m afraid you mustn’t

C. Why not? Do it for yourself.

D. Of course. Go ahead please.


相似考题
参考答案和解析
正确答案:D
更多“I wonder if I could use your bicycle for an hour.( ). ”相关问题
  • 第1题:

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

    A. your, your

    B. you, your

    C. your, you


    正确答案:C

  • 第2题:

    Passage Five

    In order to learn a foreign language well, it is necessary to overcome the fear of making mistakes. If the primary goal (目标) of language use is communication (交际), then mistakes are secondary considerations that may be dealt with gradually. On the other hand, students should not ignore their mistakes. The language learner may observe how native speakers express themselves, and how native expressions differ from the way the learner might say them. For example, a Spanish speaker who has been saying "I do it" to express willingness to do something in the immediate future, could, by communicating with native speakers of English, observe that native speakers actually say "I'll do it". The result can serve as a basis for the student to change his way of using the present tense in English. But a student who is unwilling to communicate in the first place would lose this opportunity to learn by trial and error.

    52. According to the passage, the present tense in English is ______.

    A. not used to express one's readiness to do something in the immediate future

    B. used with some verbs but not with others to express future intention

    C. basically the same in English as it is in Spanish

    D. not the most difficult problem for foreign students


    正确答案:A
        52.答案为A  此考题为细节题。根据文章中的...a Spanish speaker who has been sayingI do itto express willingness to do something in the immediate futurecouldby communicating with native speakers of Englishobserve that nativespeakers actually sayI'll do it”,可肯定A正确。

     

  • 第3题:

    随函寄上第303号询价单一份,盼望贵方早日给我们报上海到岸价,包括我方百分之五的佣金。 译文:We are enclosing an ___ note No. 303 and looking forward to receiving, at an early date, your ___ C.I.F. Shanghai including our 5% ___.


    inquiry

  • 第4题:

    与“for(i=0;i<10;i++)putchar('a'+i);”功能不同的语句是______。

    A.for(i=0;i<10;)putchar('a'+(++i));

    B.for(i=0;i<10;)putchar('a'+(i++));

    C.for(i=0;i<10;putchar('a'+i),i++);

    D.for(i=0;i<=9;i++)putchar('a'+i);


    正确答案:A

  • 第5题:

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

  • 第6题:

    int a[5]={1,0,3,4,-2}; 以下正确的打擂台算法求最小值的是

    A.int min,i; for(i=0;i<5;i++) if(a[i]<min) min=a[i];

    B.int min=a[0],i; for(i=0;i<5;i++) if(a[i]<min) min=a[i];

    C.int min=a[1],i; for(i=0;i<5;i++) if(a[i]>min) min=a[i];

    D.int min=a[0],i; for(i=1;i<5;i++) if(a[i]<min) min=a[i];


    D