重庆大学

He lost his balance and fell over.(英译汉)

题目

He lost his balance and fell over.(英译汉)

如果没有搜索结果,请直接 联系老师 获取答案。
如果没有搜索结果,请直接 联系老师 获取答案。
相似问题和答案

第1题:

阅读下列代码片段

Class InterestTest________ActionListener{

Public void actionPerformed (ActionEvent event) {

Double interest = balance * rate/100;

Balance += interest;

Number Format format =

Number Format.getCurrencyInstance ();

System.out.printlb{ “ balance = ” +

Formatter.format (balance)};

}

Private double rate;

}

在下划线处,应填的正确选项是

A ) Implementation

B ) Inneritance

C ) implements

D ) extends


正确答案:C

第2题:

阅读下面代码 class InterestTest ______ ActionListener { … public void actionPerformed(ActionEvent event) { double interest=balance * rate/100: balance+=interest: NumberFormat format=NumberFormat.getCurrencyInstance(); System.out.printlb("balance="+Formatter.format(balance)); } Private double rate; } 在下画线处,应填入的正确选项是

A.implementation

B.inheritance

C.implements

D.extends


正确答案:C
解析:关键字extends指明该类是子类,它的父类名紧跟在后,子类与父类之间有继承关系。关键字implements指明该类实现的接口,后跟接口名列表。因为ActionListener是时间监听器,是接口,所以这里要填入implements,故答案为C。

第3题:

These beautiful old houses are being () down to make way for a new road.

A、torn

B、tear

C、hit

D、fell


参考答案:A

第4题:

The working parent is not willing to listen to her (his) four-year-old child talking about hissandbox games because she (he) is___________.

A.boring
B.very tired
C.busy
D.angry

答案:B
解析:
通读第四段,注意短语“fartoo beaten down”,可知父母每天工作非常辛苦和疲惫。所以和孩子的交流沟通少了。正确答案为B。A、C、D都不符合题意。

第5题:

You are signing on a deck officer,who will be designated as one of the GMDSS operators,before sailing foreign.Which statement is TRUE ________.

A.He/she must have an STCW certificate endorsed as“Valid for Service on Vessels Operating in the GMDSS System”

B.He/she must present either an FCC-issued license or a Coast Guard-issued license

C.You must consult the“List of Qualifications”on the reverse of his/her FCC-issued license

D.His/her Merchant Mariners Document must have an added endorsement as “Radio Electronics Officer”


正确答案:A

第6题:

I must have thrown away ( ) by mistake.

A、his’

B、his

C、he’s

D、he


参考答案:B

第7题:

______ in the strange city, the poor boy fell to

A. Lost... crying

B. Lost... cry

C. Having been lost... cry

D. To lose... crying


正确答案:A
答案为A。在陌生的城市迷路了,可怜的男孩哭起来了。过去分词lost 做状语,fall to doing sth.“开始做某事”,比较四个选项,只能选A。

第8题:

—What made her so upset?

—______the necklace ______yesterday.

A. Lost, bought

B. Lost, buying

C. Losing, having bought

D. Losing, bought


正确答案:D
17.答案为D  参考译文:——什么事使得她的心情如此不好?——()丢失了昨天新买的项链。本题考查分词的应用。现在分词表示主动或正在进行,过去分词表示被动或已经完成。

第9题:

Stock market price 【tumbled】 after rumor of a rise in interest rate.

A.regulated
B.increased
C.maintained
D.fell

答案:D
解析:

第10题:

写出下面代码的运行结果。def addInterest(balance,rate): newBalance=balance*(1+rate) balance=newBalance def main(): amount=1000 rate=0.05 addInterest(amount,rate) print (amount) main()


A