The firemen acted quickly because lives were at stake.A:in danger B:in despair C:out of condition D:out of danger

题目
The firemen acted quickly because lives were at stake.

A:in danger
B:in despair
C:out of condition
D:out of danger
参考答案和解析
答案:A
解析:
本句意思:生命危在旦夕,所以消防员们火速行动。at stake危险,濒于险境,处于成败关 头。in danger处于危险中;in despair处于绝望中;out of condition不健康,身体不好,不能使用; out of danger脱离危险。
如果没有搜索结果或未解决您的问题,请直接 联系老师 获取答案。
相似问题和答案

第1题:

已知如下代码: switch(m) { case 0: System.out.println("Condition0"); case 1: System.out.println("Condition 1"); case 2: System.out.println("Condition 2"); case 3: System.out.println("Condition 3"); break; default: System.out.println("Other cCndition"); } 当m为( )时,"Condition 2"会出现在输出结果中。

A.2

B.0、1

C.0、1、2

D.0、1、2、3


正确答案:C
解析:在switch-case语句中,如果case后没有break,程序会继续执行后面的case语句,直到遇到break或者switch结束。这个程序中只有case 3后才有break,所以当m=0、1、2都将执行case 2后的语句。m=3时,前三个case不满足,所以不执行case 2后的语句,因此选C。

第2题:

Not only ______ our money, but we were also in danger of losing our lives.

A:we lost

B:lost we

C:we did lose

D:did we lose


正确答案:D

第3题:

Don’t you know how ______ it can be out here in the mist?

(A) dangerous

(B) danger

(C) big

(D) heavy


正确答案:A
解答参考:A.词义辨析题。dangerous,形容词,危险的;danger,名词,危险。【译文】难道你不知道出来在这薄雾里有多危险吗?

第4题:

在oneMethod()方法运行正常的情况下,程序段将输出什么? ( ) public void test() { try { oneMethod(); System.out.println("condition 1"); } catch(ArrayIndexOutOfBoundsException e) { System.out.println("condition 2"); } catch(Exception e) { System.out.println("condition 3"); } finally { System.out.println("finally");

A.condition 1

B.condition 2

C.condition 3

D.condition 1 finally


正确答案:D

第5题:

已知如下代码: switch(m) { case 0: System. out. println("Condition 0 "); case 1: System. out. println("Condition 1 "); case 2: System. out. println("Condition 2 "); case 3: System. out. println("Condition 3 "); break; default: System. out. println("Other Condition"); 当m的值为( )时,可以输出“Condition 2”。

A.2

B.0,1

C.0,1,2

D.0,1,2,3


正确答案:C
解析:由于前三个case语句中没有break语句,因此执行case0之后,会继续执行case1和 case2,所以可以输出“Condition 2”,同理执行case 1和case 2都可以输出“Condition 2”,执行 case 3的时候,无法输出“Condition 2”。

第6题:

In-flight emergency In the plane, Dr Wong and I ________(1) were called by the attendant to see a passenger, Paula, who had broken her arm ________(2) to the airport. It seemed to us at first that she was not in a serious condition, so we decided to put the arm into a splint after the plane had taken off. This treatment was carried out successfully, and the patient was left to get a good night’s sleep. But ________(3)we were called again later in the night, we found Paula suffering from severe pain in the chest because one of her lungs had ________(4). Her condition was rapidly becoming worse, and she would die very quickly without immediate ________(5). We decided to carry out an emergency operation using whatever instruments were available. Fortunately, the operation turned out to be successful, and Paula completely recovered two weeks later.

1.

A、ourselves

B、himself

C、myself

D、us

2.

A、in the way

B、by the way

C、to the way

D、on the way

3.

A、before

B、since

C、until

D、when

4.

A、exploded

B、exposed

C、collapsed

D、clashed

5.

A、medicine

B、treatment

C、measurement

D、solution


参考答案:CDDCB

第7题:

Why do people willingly ______ danger?

A.seek out

B.look out

C.keep out

D.take out


参考答案:A

第8题:

如下代码:publicvoidTest(){try{oneMethod();System.out.println("condition1");}catch(ArrayIndexOutOfBoundsExceptione){System.out.println("condition2");}catch(Exceptione){System.out.println("condition3");}finally{System.out.println("finally");}}如果oneMethod正常运行,则输出结果中是?()

A.condition1finally

B.condition2finally

C.condition3finally

D.finally


参考答案:A

第9题:

在oneMethod()方法运行正常的情况下,程序段将输出______。 public void test() { try{ oneMethod(); System.out.println("ndition 1"; } catch (ArrayIndexOutOfVoundsException e){ System.out.println("ondition 2"; } catch (Exception e){ System.out.println("ondition 3"; } finally{ System.out.println ( "inally"; } }

A.condition1

B.condition2

C.condition3

D.condition1 finally


正确答案:D
解析:如果try块中的语句在执行时发生异常,则执行从该处中断而进入catch块,根据异常的类型进行匹配,最前面的优先进行匹配比较,只要该异常是catch中指定的异常的子类就匹配成功进而执行相应的catch中的内容,而finally块中的内容无论是否发生异常都将被执行。

第10题:

What are not the resulting effects on cities when those people moved out?

A. There were more crimes.

B. Cities were in a bad condition.

C. Only one mass transit system was completed.

D. Some small companies move in while larger ones moved out.


正确答案:D

32.答案为D。根据全文,选项ABC在文中均提到是迁移的后果,而选项D没有提到。

更多相关问题