niusouti.com

What is the minimum requirement of a GMDSS operator?A.GMDSS operator licenseB.Third officer licenseC.General Radiotelephone Operator license and Radar EndorsementD.General Radiotelephone license or First or Second Class Radiotelegraph license with GMDSS R

题目

What is the minimum requirement of a GMDSS operator?

A.GMDSS operator license

B.Third officer license

C.General Radiotelephone Operator license and Radar Endorsement

D.General Radiotelephone license or First or Second Class Radiotelegraph license with GMDSS Radio Officer’s endorsement


相似考题
更多“What is the minimum requirement of a GMDSS operator?A.GMDSS operator licenseB.Third office ”相关问题
  • 第1题:

    如果表达式x * y+z中,“*”是作为友元函数重载的,“+”是作为成员函数重载的,则该表达式还可为 ( )。

    A.operator+(operator$(X,Y),z)

    B.x.operator+(operator * (x,y),Z)

    C.Y.operator * (operator+(x,Y),z)

    D.x.operator+(operator{(X,Y))


    正确答案:A
    C++中用成员函数重载x*y为:x.oper-ator}(y),用友元函数重载x*Y为:(,perator*(x,Y),用成员函数重载x+Y为:x.operator+(Y),用友元函数重载x+Y为:operator+(x,Y)。

  • 第2题:

    如果表达式--X+y中,--是作为成员函数重载的,+是作为成员函数重载的,则该表达式还可为

    A.y.operator+(x.operator--(0))

    B.y,operator+(x.operator--( ))

    C.y.operator+(operator--t(x,0))

    D.operator+(x.operator- -t( ))


    正确答案:B
    解析:C++语言中用成员函数重载--x为:x.operator--(),用成员函数重载x+y为:x.operator+(y)。

  • 第3题:

    如果表达式++i*k时中的“++”和“*”都是重载的友元运算符,则采用运算符函数调用格式,该表达式还可表示为()。

    A.operator* (i. operator++(), k)

    B.operator* (operator++(i), k)

    C.i.operator++(). operator* (k)

    D.k. operator* (operator++(i))


    operator*(operator++(i),k)

  • 第4题:

    如果表达式--x/y中的“--”和“/”都是作为友元函数重载的运算符,采用运算符函数调用格式,该表达式还可表示( )。

    A.operator/(x. operator--(),y)

    B.operator/(operator--(x),y)

    C.x. operator--().operator/(y)

    D.y. operator/(operator--(x))


    正确答案:B

  • 第5题:

    如果表达式--x+y中,--是作为成员函数重载的,+是作为成员函数重载的,则该表达式还可为( )

    A.y.operator+(x.operator--(0))
    B.y.operator+(x.operator--())
    C.y.operator+(operator--(x,0))
    D.operator+(x.operator--())

    答案:B
    解析:

  • 第6题:

    如果表达式++i*k中的“++”和“*”都是重载的友元运算符,若采用运算符函数调用格式,则表达式还可以表示为()。

    A.operator*(i.operator++(),k)

    B.operator*(operator++(i),k)

    C.i.operator++().operator*(k)

    D.k.operator*(operator++(i))


    operator*(operator++(i),k)