Which one of the followings is incorrect about magnetic compass?______.A.The magentic compass is compulsory on my vesselB.The magentic compass is prone to errorC.The magentic compass is always placed inside steel constructionsD.The magentic compass needs

题目

Which one of the followings is incorrect about magnetic compass?______.

A.The magentic compass is compulsory on my vessel

B.The magentic compass is prone to error

C.The magentic compass is always placed inside steel constructions

D.The magentic compass needs to be calibrated to compensate for local magnetic distortion


相似考题
更多“Which one of the followings is incorrect about magnetic compass?______.A.The magentic comp ”相关问题
  • 第1题:

    Before switching on gyro-compass, you should make sure that the power supply on board is_______.

    A.high or low

    B.AC or DC

    C.srong or weak

    D.on or off


    正确答案:B
    在打开电罗经之前,你应该确定船电是交流电还是直流电。

  • 第2题:

    对于独立于HGIS(PASS、COMPASS)安装的设备应按()式设备统计。
    敞开

  • 第3题:

    magnetic的意思是______________.


    attractive

  • 第4题:

    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。

  • 第5题:

    对于以下代码,编译器会生成几个函数模板的实例? template <typename S, typename T> int comp(S s, T t) { // do something return 0; } int main(){ comp(1, 8); comp(1.0, 8); comp("Hello", "World"); comp(1.0, 8.0); comp(4.0, 2); }

    A.1

    B.2

    C.3

    D.4


    编译器会根据情况,可能会为结构体生成多个初始化器,宗旨是:保证所有成员都有初始值。

  • 第6题:

    25、以下代码的运行结果是哪个选项? isCorrect = False print("Correct" if isCorrect else "Incorrect")

    A.Correct

    B.Incorrect

    C.nothing

    D.Correct Incorrect


    C