【简答题】【消耗次数:1】
Direction: Fill in the blanks with the phrases given below. Change the form if necessary.[have access to; go off; desperate for; put up with; always the case; give advice; concentrate on; arrive at; make an effort; come in handy]1. We may[填空1], but we cant give conduct.
参考答案:
复制
纠错
相关题目
【简答题】 Direction: Fill in the blanks with the phrases given below. Change the form if necessary.[have access to; go off; desperate for; put up with; always the case; give advice; concentrate on; arrive at; make an effort; come in handy]9. But in reality this is not[填空1].
【简答题】 Direction: Fill in the blanks with the phrases given below. Change the form if necessary.[have access to; go off; desperate for; put up with; always the case; give advice; concentrate on; arrive at; make an effort; come in handy]10. I calculated that he would[填空1]the meeting.
【简答题】 Direction: Fill in the blanks with the phrases given below. Change the form if necessary.[have access to; go off; desperate for; put up with; always the case; give advice; concentrate on; arrive at; make an effort; come in handy]8. The prisoner[填空1]to escape, but he couldnt climb up the prison wall.
【简答题】 Direction: Fill in the blanks with the phrases given below. Change the form if necessary.[have access to; go off; desperate for; put up with; always the case; give advice; concentrate on; arrive at; make an effort; come in handy]4. A few minutes later the bomb[填空1]destroying the vehicle.
【简答题】 Direction: Fill in the blanks with the phrases given below. Change the form if necessary.[have access to; go off; desperate for; put up with; always the case; give advice; concentrate on; arrive at; make an effort; come in handy]3. This means that across the country all students will[填空1]computers.
【填空题】 Direction: Fill in the blanks with the phrases given below. Change the form if necessary.[have access to; go off; desperate for; put up with; always the case; give advice; concentrate on; arrive at; make an effort; come in handy]5.Ill have to[填空1]the noise till I move next week.
【简答题】 Direction: Fill in the blanks with the phrases given below. Change the form if necessary.[have access to; go off; desperate for; put up with; always the case; give advice; concentrate on; arrive at; make an effort; come in handy]2. Dont throw those old textbooks away. They may[填空1]some day.
【简答题】 Direction: Fill in the blanks with the phrases given below. Change the form if necessary.[have access to; go off; desperate for; put up with; always the case; give advice; concentrate on; arrive at; make an effort; come in handy]6. In doing so, businessmen will be able to[填空1]how to do their best.
【简答题】 Direction: Fill in the blanks with the phrases given below. Change the form if necessary.[have access to; go off; desperate for; put up with; always the case; give advice; concentrate on; arrive at; make an effort; come in handy]7.Its no wonder,then, that women all over the world are[填空1]a better option.
【简答题】 Direction: Fill in the blanks with thephrases given below. Change the form if necessary.[set off; after all; attach to; burst into laughter; lean against; teach...a lesson; take off; come to sense; give in to]8. Only when wakening up, we just[填空1]and know it is a dream.
随机题目
【单选题】 为了避免在嵌套的条件语句If一else中产生二义性,C语言规定else子句总是与)配对
①  缩排位置相同的if
②  其之前最近的if
③  之后最近的if
④  同一行上的if
【单选题】 设x和y均为int型变量,则执行下的循环后,y值为fory=1,x=1;y=10))break;ifx%2==1){x+=5;continue;}x-=3;}
①  2
②  4
③  6
④  8
【单选题】 若有说明:??int??a〔3〕「4〕={0};则下面正确的叙述是
①  只有元素a[0][0]可得到初值0
②  此说明语句不正确
③  数组a中各元素都可得到初值,但其值不一定为0
④  数组a中每个元素均可得到初值0
【单选题】 给出以下定义:charx[]=abcdefg;chary[]={a,b,c,d,e,f,g};则正确的叙述为
①  数组X和数组Y等价
②  数组x和数组Y的长度相同
③  数组X的长度大于数组Y的长度
④  数组X的长度小于数组Y的长度
【单选题】 若变量已正确定义,语句“ifa>b)k=0;elsek=1;”和)等价
①  k=a>
②  ?1:0;
③  k=a>b;
④  k=a<=b;
⑤  a<=b?0:1;
【单选题】 以下叙述正确的是
①  do-while语句构成的循环不能用其他语句构成的循环来代替
②  do-while语句构成的循环只能用break语句退出
③  do-while语句构成的循环,在while后的表达式为非零时结束循环
④  do-while语句构成的循环,在while后的表达式为零时结束循环
【单选题】 以下程序的运行结果是:main){intk=4,a=3,b=2,c=;printf\n%d\n,k<a?k:c<b?c:a);}
①  4
②  3
③  2
④  1
【单选题】 当a=1,b=3,c=5,d=4,执行完下面一段程序后x的值是:ifa<b)ifc<d)x=1;elseifa<c)ifb<d)x=2;elsex=3;elsex=6;elsex=7
①  18
②  2
③  3
④  6
【单选题】 若有以下定义和语句:intu=010,v=0x10,w=10;printf″%d,%d,%d\n″,u,v,w);则输出结果是
①  8,16,10
②  10,10,10
③  8,8,10
④  8,10,10
【单选题】 假定a和b为int型变量,则执行以下语句后b的值为a=1;b=10;do{b-=a;a++;}whileb--<0);
①  9
②  -2
③  -1
④  8