I catch a cold now and then .

题目
I catch a cold now and then .

A: always
B:occasionally
C: constantly
D: regularly
如果没有搜索结果或未解决您的问题,请直接 联系老师 获取答案。
相似问题和答案

第1题:

下列程序的输出结果是( )。 PublicclassTest{ Publicstaticvoidmain(String[]args){ int[]array=(2,4,6,8,10); intsize=6; intresult=-1; try{ for(inti=0;i<size&&result==-1;) if(array[i]==20)result=i; } catch(ArithmeticExceptione){ System.out.println("Catch---1"); } catch(Array IndexOutOfBoundsExceptione){ System.out.println("Catch---2"); } catch(Exceptione){ System.out.println("Catch---3"); } }

A.Catch---1

B.Catch---2

C.Catch---3

D.以上都不对


正确答案:略。

第2题:

I woke up in the night ( ) cold.

A: feeling

B: felt

C: to feel

D: feeled


正确答案: A

第3题:

After running to the bus-stop, I sat down to __________.

A. out of breath

B. catch breath

C. catch my breath

D. lose my breath


参考答案:C

第4题:

下面程序的输出结果是 public class Test{ public static void main(String[] args){ int[]array={2,4,6,8,10}; int size=6; int result=-1: try{ for(int i=0;i<size&&result==-1;i++) if(array[i]==20)result=i; }catch(ArithmeticException e){ System.out.println("Catch---1"); }catch(ArrayIndexOutOfBoundsException e){ System.out.println("Catch---2"); }catch(Exception e){ System.out.println("Catch---3"); } } }

A.Catch---1

B.Catch一--2

C.Catch---3

D.以下都不对


正确答案:B
解析:ArithmeticException是当出现异常的运算条件时,抛出此异常。例如,一个整数“除以零”时,是抛出此类的一个实例;ArrayIndexOutOfBoundsException是用非法索引访问数组时抛出的异常。如果索引为负或大于等于数组大小,则该索引为非法索引。本程序中,数组大小为5个元素,数组下标为0~4,而循环为0~5,数组越界,所以会捕获ArrayIndexOutOfBoundsException。

第5题:

She put a blanket over the baby for fear that he ____________cold.

A、caught

B、has caught

C、catches

D、should catch


正确答案:D

第6题:

8.—Oh,l feel bad.I'm dying.

—_________,you just. catch a cold.

A. Take care

B. Take it easy

C. Nothing

D. Take easy


正确答案:B
8.B【解析】take it easy意为“别紧张”,“放轻松”。

第7题:

Now that she is sick with cold, I feel I ____ have stopped her from going out in the rain.

A. could

B. might

C. must

D. ought to


答案:D

第8题:

I feel like _________ cold.

A. catching

B. to be catching

C. to catching

D. to catch


参考答案:A

第9题:

" It' s cold in this room.” “_______ the heating?"

A、Do you want to turn

B、Turn on

C、Shall I turn on

D、Will I turn on


正确答案:C

第10题:

下列程序的输出结果是( )。 Public class Test{ Public static void main(String[]args){ int[]array=(2,4,6,8,10); int size=6; int result=-l: try{ for(int i=0;i<sizeresult= =-1:) if(array[i]= =20)result=i: } catch(ArithmeticException e){ System.out.println("Catch---1"); } catch(ArraylndexOutOfBoundsException e){ System.out.println("Catch---2"): } catch(Exception e){ System.out.println("Catch---3"): } }

A.Catch---1

B.Catch---2

C.Catch---3

D.以上都不对


正确答案:B
B。【解析】本题考查了数组及for循环。本题数组定义的值为5,下标从0~4。数组越界,所以答案为B。

更多相关问题