Dick: Who's that speaking?
Tom: This is Tom ___________.
A、talking
B、addressing
C、speaking
D、saying
第1题:
Nicholas: Hello. May I speak to Tom?
Tom: ______
A、Sorry, the number is engaged. Will you hold?
B、Hello. Who're you, please?
C、Hello. Thank you for calling.
D、Yes, speaking.
第2题:
上个月咖啡的价格急剧上升,而销售量没变。5个人中的每个人都提出了一种解释: Tom:需求增加了,但供给完全无弹性 Dick:需求增加了,但供给同时减少 Harry:需求增加了,但供给同时减少 Larry:供给减少了,但需求是单位弹性 Mary:供给减少了,但需求是完全无弹性。 谁可能是正确的?
A.Tom, Dick和Harry
B.Tom, Dick和Mary
C.Tom, Harry和Mary
D.Dick, Harry和Larry
E.Dick, Harry和Mary
第3题:
在猫和老鼠中,Tom在一个高1.5米的餐桌上追Jerry,最后Jerry忽然跑开,Tom以5m/s的速度从桌子的边缘落下,则Tom落地时水平位移是多少(结果保留小数点后两位,不用写单位)?
第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题:
关于以下代码说法正确的是(_____)。 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