更多“Reading this book, we can ____ the main character. ”相关问题
  • 第1题:

    If it rains tomorrow, we()out for a picnic.

    A. wouldn't go

    B. can't go

    C. won't go


    参考答案:C

  • 第2题:

    If it rains tomorrow, we ______ for a picniC. 一般现在时

    A. wouldn’t go out

    B. can’t go out

    C. won’t go out (will not)


    参考答案:C

  • 第3题:

    27.If we travel by car ,we_________.

    A. can't travel fifty or one hundred miles a day

    B. can-t stop at a hotel to spend the night

    C. can make our own timetable '

    D. can travel to a very far place in several minutes


    正确答案:C
    27.C【解析】从文章最后一段第一、二句可知.

  • 第4题:

    We ______ booked. Look, this restaurant is almost empty.

    A. must have

    B. can’t have

    C. should have

    D. needn’t have


    答案:D

    解析:根据题意选D。

    本句意思:我们应该已经预订过了。看,这家餐厅几乎空无一人。

    must have意思为:“必须已经”;can’t have“不能”;should have意思为:“应该已经”;needn’t have意思为:“不必”,


  • 第5题:

    假定有“structBOOK{chartitle[40]floatprice}book”,则正确的语句为( )。

    A.BOOK&x=&book

    B.BOOK&x=book

    C.BOOK&x=newBOOK

    D.BOOK&x=BOOK


    正确答案:B

  • 第6题:

    在主线程中启动一个子线程执行reading函数。 import threading import time import random def reading(): for i in range(10): print("reading",i) time.sleep(random.randint(1,2)) _______________________________ r.setDaemon(False) r.start() print("The End")

    A.r=threading.Thread(reading)

    B.r=threading.Thread(target=reading())

    C.r=threading.Thread(target=reading)

    D.r=Thread(target=reading)


    不需要调用任何方法