单选题我是一名水手,在船上干二水。()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

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 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.”相关问题
  • 第1题:

    请分析下列程序。 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

  • 第2题:

    As soon as I ( ) the tools, I shall begin with the work.

    A、have been having

    B、have

    C、do have

    D、am having


    参考答案:A

  • 第3题:

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

    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

  • 第4题:

    下列程序的输出结果为( )。 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()。

  • 第5题:

    —Why do you want to work for our company?

    —This is the job that I for.

    A.looked B.am to look

    C.had looked D. have been looking


    正确答案:D

  • 第6题:

    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
    我船有舵效说明我船有前进的速度,船舶需要驾驶员。

  • 第7题:

    __________

    A.I‘m going to work for
    B.what I’m going to work for
    C.for which I‘m going to work
    D.which I’m going to work for

    答案:D
    解析:

  • 第8题:

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

    • 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

  • 第9题:

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

    • 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

  • 第10题:

    单选题
    I don't like the sports programs on Sundays. ()
    A

    So do I.

    B

    Neither do I.

    C

    So am I.

    D

    Neither Am I.


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

  • 第11题:

    单选题
    Would you mind______quiet for a little while? I am doing my course work.
    A

    keep

    B

    to keep

    C

    kept

    D

    keeping


    正确答案: B
    解析:

  • 第12题:

    单选题
    If there’s a lot of work ______ , I am happy to just keep on until it is finished to do.
    A

    to be done

    B

    to be doing

    C

    done

    D

    doing


    正确答案: C
    解析:
    句意:如果有很多工作要做,我会很高兴去做并且直到把它做完为止。句中表示未完成动作,而且work和do之间是动宾关系,因此要使用不定式的被动语态。故答案是A项。

  • 第13题:

    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。

  • 第14题:

    I am very busy.I have a very difficult problem().

    A、to work

    B、to work out

    C、to be worked out

    D、to work it out


    参考答案:B

  • 第15题:

    I am getting too fat. I have to ( )my weight.

    A. work off

    B. work of

    C. work out


    答案:A

  • 第16题:

    下列程序的输出结果为( )。 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()。

  • 第17题:

    —Why do you want to work for our company?

    —This is the job that I _______for.

    A.looked

    B. am to look

    C. had looked

    D.have been looking


    正确答案:D

  • 第18题:

    _______, I am also enclosing some of the safety programs I designed so you can see first hand the type of work I am capable of performing to bring about the successful safety programs the government requires in organizations today.
    Again, thank you for your time. I am looking forward to hearing from you soon.
    Sincerely,
    Bill J. Doe

    A.Furthers
    B.Beside
    C.In addition
    D.As well as

    答案:C
    解析:

  • 第19题:

    “我船有倾覆危险”的英文翻译是().

    • A、I AM MAKING WATER.
    • B、I AM IN CRITICAL CONDITION.
    • C、I AM IN DANGER OF CAPSIZING.
    • D、I HAVEDANGEROUS LIST.

    正确答案:C

  • 第20题:

    I()my home work this time yesterday evening

    • A、were doing 
    • B、was to do 
    • C、am doing
    • D、was doing

    正确答案:D

  • 第21题:

    我是你们的代理。()

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

    正确答案:A

  • 第22题:

    单选题
    —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。

  • 第23题:

    单选题
    —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项。