A、identify with
B、identify as
C、identify to
D、identity for
第1题:
If it rains tomorrow, we()out for a picnic.
A. wouldn't go
B. can't go
C. won't go
第2题:
A. wouldn’t go out
B. can’t go out
C. won’t go out (will not)
第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
第4题:
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题:
A.BOOK&x=&book
B.BOOK&x=book
C.BOOK&x=newBOOK
D.BOOK&x=BOOK
第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)