【单选题】【消耗次数:1】
Couldyoutellme________thenearesthospitalis?
What
how
whether
where
参考答案:
复制
纠错
相关题目
【判断题】 新闻六要素包括:what who when where why how。
①  正确
②  错误
【单选题】 I like the freedom of deciding where ( ) ,what to do and how long to stay.
①  goes
②  be going
③  to go
④  go
【单选题】 It is the ability to do the work ___ matters not where you come from or what you are.
①  one
②  that
③  what
④  it
【判断题】 新闻5要素包括who、what、when、why 、where
①  正确
②  错误
【单选题】 It is the ability to do the job_____ matters, not where you come from or what you are.
①  one
②  that
③  what
④  if
【单选题】 What does the falling intonation on the question “where do you live ?” indicate?
①  I am telling you something you do not know
②  I have not finished yet
③  I am asking a genuine question
④  I know you have told me before.
【单选题】 5.It is not how much you read but what you read that really _________.
①  counts
②  loses
③  argues
④  widens
【单选题】 We are interested in the weather because it __________ us so directly --- what we wear, what we do, and even how we feel.
①  benefits
②  affects
③  guides
④  effects
【判断题】 The question What is your affiliation? is to ask where you are working,you should answer I am with...
①  正确
②  错误
【单选题】 The thing that ____ is not whether you fail or not, but whether you try or not.
①  matters
②  cares
③  considers
④  minds
随机题目
【单选题】 为了避免在嵌套的条件语句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