更多“ I rarely play basketball.”相关问题
  • 第1题:

    I have a ping-pong ball and two bats.L _______play ping-pong.


    正确答案:
    34.Let's

  • 第2题:

    I _________ table tennis quite well, but I haven ’t had time to play since the New Year.

    A. will play

    B. have played

    C. play


    参考答案:C

  • 第3题:

    --What do you usually do at weekends?

    --- ____

    A. I play football with a group of friends

    B. It's lovely. Thank you

    C. I started learning tennis when I was 6


    参考答案:A

  • 第4题:

    —What’s after the play?—()

    A.Is it very interesting?

    B.I don’t mind watching this play.

    C.That’s all right.

    D.I’m not sure.May be it’s a football match.


    参考答案:D

  • 第5题:

    — I wish you wouldn’t play the TV so loud.

    A、No, I wouldn’t.

    B、Yes, I would.

    C、Thanks.

    D、Sorry. Was I disturbing you?


    参考答案:D

  • 第6题:

    I play Kung Fu every Friday.()


    正确答案:错

  • 第7题:

    I rarely wear a raincoat because I spend most of my time in a car.

    A:normally
    B:seldom
    C:frequently
    D:usually

    答案:B
    解析:

  • 第8题:

    I do not know how I shall manage this winter. I ________it not for the weather which is rarely fierce, but for the loneliness.

    A. intimidate
    B. fear
    C. terrify
    D. dread

    答案:D
    解析:
    考查词义辨析。本句意为:我不知道怎样渡过这个寒冬,我害怕的不是鲜有的寒冷,而是孤独。intimidate 恐吓;威胁;fear 害怕;惧怕,通常指害怕受到某事的伤害;terrify 恐吓,吓唬;dread 害怕,担心,通常指为某事的到来感到紧张或不快。此处表示害怕冬天的孤独,故dread 更合句意。

  • 第9题:

    I rarely wear a raincoat because I spend most of my time in a car.

    A:normally
    B:seldom
    C:frequently
    D:usually

    答案:B
    解析:

  • 第10题:

    Ben, would you like to play football with us?()but I have to wash the dishes first.

    • A、No, I can't
    • B、I don't want to 
    • C、Yes, please
    • D、I'd love to

    正确答案:D

  • 第11题:

    单选题
    I _____ ping-pong quite well, but I haven’t had time to play since the new year.
    A

    will play

    B

    have played

    C

    played

    D

    play


    正确答案: C
    解析:
    句意:我的乒乓球打得很好,但是我自从新年后就没有时间打。本题考查动词时态。“我乒乓球打得好”是经常性的行为,要用一般现在时。故D项正确。

  • 第12题:

    单选题
    —Why don’t you go out to play, Rose?—I’m afraid I can’t. I have much homework ______.
    A

    do

    B

    does

    C

    doing

    D

    to do


    正确答案: D
    解析:
    句意:——Rose,你为什么不出去玩呢?——我恐怕不能去。我有好多作业要写。动词不定式做后置定语修饰其前的名词或名词短语“有许多作业要做”。故选D。

  • 第13题:

    A

    The music club

    The music club needs two people. Read about the four people. How many things can each student do?

    Ma Hui

    I can’t sing and I can't dance. I can play the violin and the piano.

    Petrus

    I can’t dance, but I can sing. I can play the violin.

    Angela

    I can sing, but I can-t dance. I can play the trumpet and the guitar.

    Albert

    I can sing and dance. I can play the trumpet and the guitar.

    ( )21. How many things can Ma Hui do?

    A. One

    B. Two

    C. Three

    D. Four


    正确答案:B
    21.B【解析】根据Ma Hui的自述l can play the violin and the piano.可知。

  • 第14题:

    A:Have you ever tried to play snooker?

    B:_____

    A. No,I tried

    B. No,I haven't

    C. No,I didn't


    参考答案:B

  • 第15题:

    Only on Saturdays ___ play basketball.

    A.he does

    B.can he

    C.he can

    D.does he


    正确答案: B

  • 第16题:

    Mark and I are play basketball.()


    参考答案: 错误

  • 第17题:

    Olivia:Do you mind if I play some music?

    Bill:______. I'm writing my assignment.

    A、Of course I do

    B、Not at all

    C、Of course not

    D、Certainly


    参考答案:A

  • 第18题:

    A)根据首字母提示完成单词。(5分)

    1. Brad can play basketball. He wants to j______ the basketball club.


    正确答案:
    1.join

  • 第19题:

    阅读下列说明、C++代码和运行结果,填补代码中的空缺,将解答填入答题纸的对应栏内。
    [说明]
    对部分乐器进行建模,其类图如下图所示,包括:乐器(Instrument)、管乐器(Wind)、打击乐器(Percussion)、弦乐器(Stringed)、木管乐器(Woodwind)、铜管乐器(Brass)。

    类图
    下面是实现上述设计的C++代码,其中音乐类(Music)使用各类乐器(Instrument)进行演奏和调音等操作。

    using namespace std; enum Note(/*枚举各种音调*/ MIDDLE_C,C_SHARP,B_FLAT }; classInstrument{/*抽象基类,乐器*/ public: ______; //play函数接口 virtual voidadjust()=0; //adjust函数接口 }; class Wind ______{ public: void play(Note n) { cout<<"Wind.play() "<<n<<endl; } void adjust(){cout<<"Wind.adjust()"<<endl; } ); /*类Percussion和Stringed实现代码略*/ class Brass ______{ public: void play(Note n) {cout<<"Brass.play() "<<n<<endl; } void adjUSt(){cout<<"Brass.adjust()"<<endl;) }; classWoodwind:public Wind{ public: void play(Note n) { cout<<"Woodwind.play()"<<n<<endl; } }; class MusiC { public: voidtune(Instrument*i) { i->play(MIDDLE_C.; } voidadjust(Instrument*i){ i->adjust(); } void tuneAll(______ e[],int numIns){ /*为每个乐器定调*/ for(int i=0; i<numIns; i++){ this->tune(e[i]); this->adjust(e[i]); } } }; /*使用模板定义一个函数size,该函数将返回数组array的元素个数,实现代码略*/ int main(){ Music*music=______ Music(); Instrument*orchestra[]={new Wind(),new Woodwind() }; music->tuneAll(orchestra,size(orchestra));/*size返回数组orchestra的元素个数*/ for(int i=0;i<size(orchestra);i++) deleteorchestra[i]; delete music; }

    本程序运行后的输出结果为:

    Wind.play()0 Wind.adjust() Woodwind.play()0 Wind.adjust()


    答案:
    解析:
    virtual void play(Noten)=0
    :public Instrument
    :public Wind
    Instrument*
    new

  • 第20题:

    I like playing football best,but occasionally I play table tennis,too.

    A:sometimes
    B:frequently
    C:usually
    D:always

    答案:A
    解析:
    本句意思是:我最喜欢踢足球,但是有时也会打网球。句中occasionally 意为“偶尔”,如:We occasionally meet for a drink after work.我们下班后偶尔相聚小酌。sometimes意为“有时”。frequently意为“往往”,如:The illness frequently coexists with other chronic diseases.这种病往往与其他慢性病同时存在。usually意为“经常地”, always意为“总是,一直”。只有选项A同句中画线词语含义接近。

  • 第21题:

    I rarely wear a raincoat because I spend most of my time in a car.

    A:normally
    B:seldom
    C:continuously
    D:usually

    答案:B
    解析:
    本句意思:我很少穿雨衣,因为大部分时间我都在车里。rarely意为“很少,罕有”,与seldom(很少,罕见)意思相近。normally通常;continuously连续不断地;usually通常。

  • 第22题:

    单选题
    I always tell my students ______ on the road because it’s really dangerous.
    A

    not to play

    B

    to play not

    C

    not playing

    D

    not play


    正确答案: B
    解析:
    考查非谓语动词。句意:我总是提醒学生,不要在街上玩,那样很危险。tell sb. not to do sth.意为“告诉某人做某事”。

  • 第23题:

    单选题
    _____ got on the train when it started to move.
    A

    I rarely had

    B

    Scarcely had I

    C

    No sooner I had

    D

    No sooner had I


    正确答案: C
    解析:
    句意:我刚一上火车,火车就开动了。考查倒装句。scarcely意为几乎不,常用于句型scarcely ... when ...刚一……就……,采用部分倒装:scarcely+助动词+主谓结构。此题中用的是when,因此要用scarcely与之搭配,因此答案选择B项。no sooner立即,放在句首就要倒装,常用于句型:no sooner ... than ...一……就……。