更多“He lost his balance and fell over.(英译汉) ”相关问题
  • 第1题:

    阅读下面代码 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。

  • 第2题:

    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

  • 第3题:

    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都不符合题意。

  • 第4题:

    ______ 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。

  • 第5题:

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

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

    答案:D
    解析:

  • 第6题:

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


    A