A.is sure to come
B.will be sure to come
C.be sure to come
D.to be sure to come
第1题:
A)用所给动词的适当形式填空。(5分)
1. They'll go to the Great Wall if it_________(not rain) tomorrow.
第2题:
A.Tom家的电话是无绳电话
B.Tom家没有使用分离器
C.Tom家的ADSLModem中PVC配置经常丢失
D.Tom使用的拨号软件和Windows操作系统兼容性不好
第3题:
能获取系统当前时间分钟数的方法是以下哪个?
A.time.strftime(“% m”, time.localtime())
B.time.strftime(“%M”, time.localtime())
C.time.strftime(“%t”, time.localtime())
D.time.strftime(“%T”, time.localtime())
第4题:
Philip: Hello! Is that you, Tom?
Tom: Yes, (56)
Philip: I can't believe I (57) you at last. And what have you been doing?
Tom: Yeah, I haven't been home a lot lately. And I've had a lot of work and social engagements. Oh,
Philip, (58) to London?
Philip: I just came back about a week ago, I (59) by phone several times, but you were not in.
Tom: Sorry, Sorry. Did you have a nice holiday, then?
Philip: Lovely. I went to Scotland and traveled around.
Tom: (60) ! I need a holiday indeed.
Philip: Well, I suppose so.
Tom: Oh , somebody's at the door. I have to go. And I have to say " good-bye'. Nice talking to you.
Philip: Same here, bye-bye.
56.
A. when did you get back
B. What a surprise I got
C. How I admire you
D. I am Tom
E. got hold of
F. got through
G. this is Tom
H. tried to contact you
第5题:
第6题:
关于以下代码说法正确的是(_____)。 class Student: def language(self): print ("All the students like Python") class Mary(Student): def work(self): print("Mary is programming") class Tom(Student): def language(self): print("Tom likes JAVA") mary = Mary() tom = Tom()
A.mary.language()会打印出All the students like Python
B.tom.language()会打印出All the students like Python
C.tom.work()会打印出Tom is programming
D.tom.language()会打印出Tom likes JAVA