更多“I am ()up anchor.”相关问题
  • 第1题:

    I am afraid I won’ t have any influence over my 18-year-old daughter () her mind is made up.

    A. the moment

    B.as soon as

    C.once

    D.since


    参考答案:C

  • 第2题:

    Which of the following is closest in meaning with the sentence: "I am feeling black"?

    A. I am sad.

    B. I am feeling well.

    C. I am dirty.

    D. I am very tired.


    正确答案:A

    38.答案为A  通过第二段...black is depressing可知黑色使人阴郁。

  • 第3题:

    4.—Are you her uncle?

    —_________

    A.I’m not

    B. Yes, I am not

    C. No, I am

    D. No, I am not


    正确答案:D
    4.D【解析】一般疑问句的回答必须用Yes或No开头,所以排除A选项,只有选项D前后一致,选D。

  • 第4题:

    Could you ring them up please? I'm sometimes quitenervous on the phone. —Are you? I am fine。()

    此题为判断题(对,错)。


    参考答案:×

  • 第5题:

    I ______, because I don’t want to be late for school.

    A、am used to getting up early

    B、used to getting up early

    C、am used to get up early

    D、used to get up early


    正确答案:A

  • 第6题:

    A:Could you ring them up please? I'm sometimes quite nervous on the phone. B:( ).

    A. Are you? I am fine.

    B. Yes, why don't you call them?

    C. Yes, of course. I will phone them for you.


    答案:C

  • 第7题:

    I like Angela Carter s works. Up till now I ()ten of her works.

    A、have read

    B、am reading

    C、is reading

    D、had read


    参考答案:A

  • 第8题:

    下列程序的输出结果为( )。 public class Reentrant { public synchronized void a() { b(); System.out.println("here I am, in a()"); } public synchronized void b() { System.out.println("here I am, in b()"); } public static void main(String args[ ]) { Reentrant r=new Reentrant(); r.a(); } }

    A.here I am, in a()/here I am, in b()

    B.hereI am, in b()/here I am, in a()

    C.here I am, in a()

    D.here I am, in b()


    正确答案:B
    解析:此题程序中类Reentrant定义了两个带有synchronized的方法,分别是a()和b()。在Reentrant类的main()方法中,Reentrant类的实例r调用了方法a(),在a()中调用b()。a()的执行过程中,线程的控制将请求并获得r的锁,并开始执行a()方法。由b()的定义可知,线程获得r的对象锁才能运行该方法,而此时r的锁已经由该线程获得,根据Java对象锁的可重入性,该线程将再次获得r的锁,并开始运行方法b()。

  • 第9题:

    I have steerage way. It is said that ______.

    A.I am underway

    B.I am out of control

    C.I am not making way through the water

    D.I have the amount of movement forward which the ship needs to be steered properly


    正确答案:D
    我船有舵效说明我船有前进的速度,船舶需要驾驶员。

  • 第10题:

    我是船舶物料供应商。()

    • A、I am the PSC inspector.
    • B、I am the ship’s chandler.
    • C、I am the ship’s agent.
    • D、I am the engineer of the shipyard.

    正确答案:B

  • 第11题:

    单选题
    — Sam, What can I do to get up early?— Set the alarm at 6:00 am, ______ you’ll make it.
    A

    or

    B

    but

    C

    and

    D

    so


    正确答案: C
    解析:
    考查固定句型。句意:—Sam,我怎么做才能早起呢?—把闹钟定在早上六点,你就能做到早起了。回答的结构为:祈使句+and+陈述句。表示顺承关系。

  • 第12题:

    单选题
    —I’m not going swimming tomorrow afternoon.— ______ . I have to clean up my bedroom.
    A

    So am I

    B

    Neither am I

    C

    Neither I am

    D

    So I am


    正确答案: D
    解析:
    考查特殊句式。句意:——明天下午我不去游泳了。——我也不去,我必须把我的卧室打扫干净。neither +be动词+主语,表示前面提到的否定情况也同样适用于后者。根据语境可知,答案选B。

  • 第13题:

    What is happening when we give gifts? Most important, we are exchanging gifts. If someone gives me a gift for my birthday, I know that I am usually expected to give one on his or her next birthday. A gift builds up or confirms a social oblingation(义务).


    正确答案:F

  • 第14题:

    请分析下列程序。 int main() { printf("This is in main program"); if(fork()==0) printf("I am in child process"); else printf("I am in parent process");} 程序正确运行后结果是

    A.This is in main program I am in child process I am in parent process

    B.This is in main program I am in child process

    C.This is in main program I am in parent process

    D.This is in main program I am in child process This is in main program I am in parent process


    正确答案:A

  • 第15题:

    I am getting a divorce.I can't( )him any longer.

    A.put up with

    B.put up

    C.put out

    D.put down


    参考答案:A

  • 第16题:

    I am really fed up with Larry!_____________

    A.How is she

    B.Are you OK?

    C.Why do you say that


    参考答案:C

  • 第17题:

    A:I don't get up late on Sundays. B:( ).

    A. Neither have I

    B. Neither am I

    C. Neither do I


    正确答案:C

  • 第18题:

    我是一名水手,在船上干二水。

    A.I am a sailor. I work as an OS on board

    B.I am an AB I work as a sailor.

    C.I am a sailor. I work as a quartermaster.

    D.I am an AB I work as an oiler.


    正确答案:A

  • 第19题:

    下列程序的输出结果为( )。 public class Reentrant { public synchronized void a() { b(); System.out.println("here I am,in a()"); } public synchronized void b() { System.out.println("here I am,in b()"); } public static void main(String args[]) { Reentrant r=new Reentrant(); r.a(); } }

    A.here I am,in a()/here I am,in b()

    B.here I am,in b()/here I am,in a()

    C.here I am,in a()

    D.here I am,in b()


    正确答案:B
    解析:此题程序中类Reentrant定义了两个带有synchronized的方法,分别是a()和b()。在Reentrant类的main()方法中,Reentrant类的实例r调用了方法a(),在a()中调用b()。a()的执行过程中,线程的控制将请求并获得r的锁,并开始执行a()方法。由b()的定义可知,线程获得r的对象锁才能运行该方法,而此时r的锁已经由该线程获得,根据Java对象锁的可重入性,该线程将再次获得r的锁,并开始运行方法b()。

  • 第20题:

    ---- I' m surprised to hear that Sue and Paul have __ .

    ----So am I. They seemed very happy together when I last saw them.

    A. broken up B. finished up C. divided up closed up


    正确答案:A

  • 第21题:

    I am weighing up ().

    • A、shackles
    • B、chain
    • C、anchorage
    • D、anchor

    正确答案:D

  • 第22题:

    我是你们的代理。()

    • A、I am your agent.
    • B、I am from the shipyard.
    • C、I am your ship chandler.
    • D、I am the immigration officer.

    正确答案:A

  • 第23题:

    单选题
    I am ()up anchor.
    A

    weight

    B

    heaving

    C

    have

    D

    aweigh


    正确答案: A
    解析: 暂无解析

  • 第24题:

    单选题
    —I’m not going swimming this afternoon.—______ I have to help my mother do some cleaning.
    A

    So am I.

    B

    So I am.

    C

    Neither am I.

    D

    Neither I am.


    正确答案: B
    解析:
    句意:——我今天下午不去游泳了。——我也不去了,我要帮我妈妈打扫卫生。本题考查倒装句的用法。上句为否定句,因此此句要用neither引导,表示否定含义。可先排除A、B项;否定词放在句首要引起完全倒装,谓语动词要放在主语之前,故要用Neither am I。因此答案为C项。