I hear Mary ________ back in two days.A.comesB.comeC.will comeD.coming

题目
I hear Mary ________ back in two days.

A.comes

B.come

C.will come

D.coming


相似考题
更多“I hear Mary ________ back in two days. ”相关问题
  • 第1题:

    一Well, Mary, how are you?

    一_____________

    A. I'm good

    B. I'm nice

    C. I' m fine


    参考答案C

  • 第2题:

    Xiaoyan: I`ve got my fitness programme from the gym for this month,Mary.

    Mary: _____1_____class do you have tomorrow , Xiaoyan?

    Xiaoyan; Tomorrow-Tuesday-I haven`t got a class. I do gym.

    Mary: __2___ do you do gym with?

    Xiaoyan: Nobody, I do two gym sessions on my own a week.

    Mary: So, ___3____ are your classes?

    Xiaoyan: This month, I do aerobics on Saturdays and Tai Chi on Mondays.

    Mary: And_____4____do you do next month ?

    Xiaoyan: I do three gym sessions, but I don`t do Tai Chi-the class is cancelled.

    Mary: _____5____isn't there a class

    Xiaoyan: The trainer is on holiday. But it starts again the month after next. So, the month after next, I do two gym sessions again and I do Tai Chi.

    Mary: Well. Good luck! Enjoy yourself!


    参考答案:1.Which
    2.Who
    3.When
    4.What
    5.Why

  • 第3题:

    Linda: Mary, I'm afraid I have to be leaving now.

    Mary: __________

    A、That sounds wonderful.

    B、Oh,so early?

    C、Not at all.

    D、Good luck!


    参考答案:B

  • 第4题:

    -Well, Mary, how are you? -().

    A、I’m good

    B、I’m pleased

    C、I’m fine

    D、I’m nice


    参考答案:C

  • 第5题:

    Salesgirl: Good morning, miss. Can I help you?

    Mary: Yes, I’d like half a kilo of oranges, please.

    Salesgirl:________. Anything else?

    Mary: No, thank you.

    A: These oranges are for you

    B: Give you the oranges

    C: There you are

    D: Here are you


    参考答案:C

  • 第6题:

    执行下列程序,显示的结果是【 】。

    ne="WORK"

    two=""

    a=LEN(one)

    i=a

    DO WHILE i>=l

    two=two+SUBSTR(one,i, 1)

    i=i-1

    ENDDO

    ?two


    正确答案:KROW
    KROW 解析:DO WHILE—ENDDO语句格式:
    DO WHILE条件>
    语句序列1>
    [LOOP]
    语句序列2>
    [EXIT]
    语句序列3>
    ENDDO
    执行该语句时,先判断DO WHILE处的循环条件是否成立,如果条件为真,则执行DO WHILE与ENDDO之间的命令序列(循环体)。当执行到ENDDO时,返回到DO WHILE,再次判断循环条件是否为真,以确定是否再次执行循环体。若条件为假,则结束该循环语句,执行ENDDO后面的语句。
    而常用函数中:LEN(字符表达式):返回一个字符串的长度,返回值是数值型。
    SUBSTR(字符表达式,起点位置[,长度]):在一个字符串中,从指定位置起返回给定长度的子串,返回值是字符型。