In which year was the COSPAS-SARSAT system established?()

题目
单选题
In which year was the COSPAS-SARSAT system established?()
A

1980

B

1981

C

1979

D

1982

如果没有搜索结果或未解决您的问题,请直接 联系老师 获取答案。
相似问题和答案

第1题:

In the system development process,modularity is a very well-established principle used in the______phase.

A.design

B.analysis

C.implementation

D.testing


正确答案:A
解析:早期的远程通信方法是电报这种通讯方式。

第2题:

下面程序是判断某一个是否为闰年,请改正程序中的错误(有下划线的语句),使程序能输出正确的结果。(闰年的条件是符合下面两者之一:①能被4整除,但不能被100整除;②能被4整除,又能被100整除)。

注意:不改动程序的结构,不得增行或删行。

import java.io.*;

public class LeapYear

{

public static void main(String args[])

{

int year=1979;

if((year %4= =0 || year % 100 !=0) || (year % 400= =0))

System.out.println(year+"是闰年.");

else

System.out.println(year+"不是闰年。");

year=2000;

boolean leap;

if(year % 4 !=0)

leap=false;

else if(year % 100 !=0)

leap=true;

else if(year % 400 !=0)

leap=false;

else

leap=true;

if(______)

System.out.println(year+"是闰年。");

else

System.out.println(year+"不是闰年。");

year=2010;

if(year % 4= =0)

{

if(year % 100= =0)

{

if(year % 400= =0)

leap=true;

else

______

}

else

leap=false;

}

if(1eap= =true);

System.out.println(year+"是闰年。");

else

System.out.println(year+"不是闰年。");

}

}


正确答案:(year%4= =0&&year%100!=0)||(year%400 ==0) Year%4==0
(year%4= =0&&year%100!=0)||(year%400 ==0) Year%4==0 解析:本题综合考查Java语言的数据类型及运算和分支语句。第1处的错误是:(year%4==0||year%100!=0)||(year%400==0);闰年的条件是符合下面二者之一:①能被4整除,但不能被100整除;②能被4整除,又能被100整除。因此判断某一年是否为闰年的表达式应该为(year%4==0&&year%100!=0)||(year%400==0)。第2处的错误是year%4!=0;应该填写year%4==0,用来判断该年是否能被4整除。

第3题:

A committee which is established on a permanent basis is known as an ad hoc committee.()

此题为判断题(对,错)。


正确答案:×

第4题:

Which of the following is the proper pronunciation of "this year" as a result of assimilation?


答案:B
解析:

第5题:

本题提示输入年份,然后判断该年份是否为闰年。 importjava.io.*; public class javal{ public static void main(String[]args){ InputStreamReader ir; BufferedReader in; ir=new InputStreamReader(System.in); in=new BufferedReader(ir); int year=1900; System.out.print("请输入年份:"); try{ String s=in.readLine; ; } (Exception e){ } if( ) System.OUt.println(year+"是闰年"); else System.out.println(year+"不是闰年"); } }


正确答案:
第1处:year=Integer.parseInt(s)
第2处:catch
第3处:year%4= =0year%100 !=0 ||year%400= =0
【解析】第1处是将String型的s转换成整型;第2处是捕获异常的catch子句,用来处理由try所抛出的异常事件;第3处是判断是否为闰年的条件,即能被4整除且不能被100整除的或能被400整除的就是闰年。

第6题:

London was established on a ____ which had many advantages.

A、situation

B、lodge

C、basement

D、site


答案:D

第7题:

common laws are laws which have been established through common practice in the courts. ()


参考答案:正确

第8题:

A major indicator of a country's economic growth is the change in its gross national product, or GNP, which is the total value of goods and services produced by an economic system in a year.()

此题为判断题(对,错)。


正确答案:√

第9题:

Refer to the exhibit. Autonomous systems 200 and 300 have EBGP sessions established with their directly connected routers in au tonomous system 100. IGP has been configured on all routers in autonomous system 100 and they successfully exchange routing updates. Traffic originated in autonomous system 200 cannot reach the destination autonomous system 300. What configuration shoul d be done on the routers in autonomous system 100 in order for the traffic coming from autonomous system 200 to be forwarded to autonomous system 300?()

A. IBGP session must be established between routers R1 R2 and R2 R3, and the synchronization must be turned off.

B. IBGP speakers within autonomous 100 must be fully meshed, and the synchronization must be turned on.

C. IBGP session must be established between routers R1 R2 and R2 R3, and the synchronization must be turned on.

D. IBGP session mu st be established between routers R1 and R3, and the synchronization must be turned off.

E. IBGP speakers within autonomous 100 must be fully meshed, and the synchronization must be turned off.

F. IBGP session must be established between routers R1 and R3, and the synchronization must be turned on.


参考答案:E

第10题:

The heating system of this building is much more cost-effective than that of the previous system _______ we used last year.

A.in where
B.where
C.in which
D.which

答案:D
解析:

更多相关问题