更多“On a mercator chart, 1 nautical mile is equal to ______.A.1 minute of longitudeB.1 degree ”相关问题
  • 第1题:

    下列程序段的执行结果为 a=95 If a > 60 Then degree=1 If a > 70 Then degree=2 If a > 80 Then degree=3 If a > 90 Then degree=4 Print"degree=";degree

    A.degree=1

    B.degree=2

    C.degree=3

    D.degree=4


    正确答案:D
    解析:如果a>60,则degree=1;如果a>70,则degree=1;如果a>80,则degree=3:如果a>90,则degree=4。注意:If…Then…Else条件语句嵌套结构

  • 第2题:

    You have another ship overtaking you close aboard to starboard.You have 3 radar targets bearing 090° relative at ranges of 0.5 mile,1 mile,and 1.5 miles.In this case,the unwanted echoes are called ______.

    A.Multiple echoes

    B.Spoking

    C.Indirect echoes

    D.Side-lobe echoes


    正确答案:A

  • 第3题:

    给定一个类及对象的定义,以下各选项中使用正确的是 。 class Time { private: int hour; int minute; public: int second; void set() {cin>>hour>>minute>>second;} void display() {cout<<hour<<minute<<second<<endl;} }t1, t2;

    A.t1.hour=10;

    B.t2.minute=20;

    C.t1.second=10;

    D.t1.set;


    A

  • 第4题:

    line chart窗口3的信息来自于哪个地方()

    A.chart 1的 additional info

    B.chart 1的 event

    C.chart 1的 change ms

    D.chart 1的Information Elements


    参考答案:A

  • 第5题:

    默认情况下,一个工作簿包含3个工作表,分别是 ()。

    A.Sheet1、Sheet2 、Sheet3

    B.Shift1、Shift2、Shift3

    C.Chart1 、Chart2、 Chart3

    D.都不对


    错误

  • 第6题:

    下述语句中,()可以在字符串s1和s2相等时显示"Equal."。

    A.if(!strcmp(s1,s2)) puts(“Equal.”);

    B.if(s1==s2) puts(“Equal.”)

    C.if(*s1==*s2) puts(“Equal.”)

    D.if(strcmp(s1,s2)) puts(“Equal.”);


    B