Which statement is True?A.The Port State Control Officer has no right to check a SSPB.The Master has the right to refuse the request from a Port State Control Officer to check the confidential part of the SSP on boardC.The Confidential part of a SSP can n

题目

Which statement is True?

A.The Port State Control Officer has no right to check a SSP

B.The Master has the right to refuse the request from a Port State Control Officer to check the confidential part of the SSP on board

C.The Confidential part of a SSP can never be subject to non-flag State

D.Even the flag State has no right to check the SSP thoroughly


相似考题
更多“Which statement is True?A.The Port State Control Officer has no right to check a SSPB.The ”相关问题
  • 第1题:

    classIfs{publicstaticvoidmain(String[]args){booleanstate=false;inti=1;if((++i>1)&&(state=true))i++;System.out.println(i);}}结果是()

    A.5

    B.编译失败

    C.运行时异常被抛出

    D.3

    E.4


    参考答案:A

  • 第2题:

    设置背景选择器时,通过()属性设置按钮按下时效果。

    A.state="true"

    B.state_value="true"

    C.value="true"

    D.state_pressed="true"


    参考答案:D

  • 第3题:

    Which document is NOT required by law to be posted aboard a vessel?

    A.Official Crew List

    B.Certificate of Inspection

    C.Officer's licenses

    D.Muster List


    正确答案:A

  • 第4题:

    在Windows Forms程序中,某CheckBox对象初始化为三态(即:其ThreeState属性值为true).则应使用()属性来检查此CheckBox的状态.

    A. IsSelected

    B. CheckState

    C. Checked

    D. State


    正确答案:C

  • 第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题:

    定义状态机当前状态为state ,次态为next _state; 输入a,输出b, 则下列为Mealy状态机的写法是:

    A.always@(posedge clk) case (state ) 0:next_state<=1; 1:next_state<=x;#B.always@(posedge clk) case (state ) 0: if(a==0)next_state<=1; else next_state<=x; 1:next_state<=x;#C.always@(posedge clk) case (state ) 0: if(state==0)next_state<=1; else next_state<=x; 1:next_state<=x;#D.以上都不对
    MACP