Point out which one of the following items is not in the charge of Chief Officer in repairing operation. ______.A.hull cleaningB.derusting and paintingC.the maintenance of boilerD.docking and undocking

题目

Point out which one of the following items is not in the charge of Chief Officer in repairing operation. ______.

A.hull cleaning

B.derusting and painting

C.the maintenance of boiler

D.docking and undocking


相似考题
更多“Point out which one of the following items is not in the charge of Chief Officer in repair ”相关问题
  • 第1题:

    编译和执行以下代码,输出结果是( )。 int i=1; switch (i) { case 0: System.out.print("zero,"); break; case 1: System.out.print("one,"); case 2: System.out.print("two,"); default: System.out.println("default"); }

    A.one,

    B.one,two,

    C.one,two,default

    D.default


    正确答案:C

  • 第2题:

    In some countries, _____ is called "equality" does not really mean equal rights for all people.

    (A) which (C) that

    (B) what (D) one

     

     


    选B


    这句话貌似定语从句。而实际上,前面的部分就是状语,后半句与countries没有修饰关系(因为1.后半句缺主语,但空格的位置用countries不能替换,否则语义不对。2.后半句不缺宾语。)所以后半句的()is called equality作主语.是主语从句。
    在选项中,只有what引导主语从句。
    意思:在一些国家里,所谓平等,并不意味着所有公民的平等权利

  • 第3题:

    It's said that he's looking for a new job, one_________ he can get more free time.

    A.when
    B.where
    C.that
    D.which

    答案:B
    解析:
    考查定语从句。one是a newjob的同位语,同时one是先行词,后面是个定语从句,由于定语从句he can get more free time不缺少任何成分,说明空格处在从句中作状语,需要用where引导,意为“从新工作中获得更多的自由时间”。如果选which的话,应该是one(a job)from which he can get more free time,故选B。

  • 第4题:

    下面程序的输出结果是( )。 Public class Sun { public static void main(String args[ ]) { int i = 9; switch (i) { default: System.out.println("default"); case 0: System.out.println("zero"); break; case 1: System.out.println("one"); case 2: System.out.println("two"); } } }

    A.default

    B.defauolt, zero

    C.error default clause not defined

    D.no output displayed


    正确答案:B
    解析:该题考查对switch-case-break的理解。每个分支语句后面必须有break语句,否则程序向下执行,直到遇到break语句或程序结束。所以该题i=9时没有匹配的case语句,执行 default分支语句,而default分支语句后没有 break语句,程序继续向下执行case 0分支语句,Case0分支语句后有break语句程序结束。故本题答案是B。

  • 第5题:

    The authority to grant an alternate procedure for oil transfer operations rests with the ______.

    A.nearest Coast Guard office

    B.Officer-in-Charge,Marine Inspection

    C.Area Commander

    D.Captain of the Port


    正确答案:D

  • 第6题:

    执行下列Java语句:int x = 1; switch (x+1 ) { case 1: System.out.print("One" ); case 2: System.out.print("Two" ); case 3: System.out.print("Three" ); default: System.out.print("Error" ); } 显示器上将显示()。

    A.One

    B.Two

    C.TwoThree

    D.TwoThreeError


    case 后面的常量可以相同。