【单选题】【消耗次数:1】
The pavilions of each country at the World Expo can reveal the ( ) cultures of the world.
diversity
diversify
divert
diverse
参考答案:
复制
纠错
相关题目
【单选题】 By the middle of the 21st century, the vast majority of the world’s population ____ in cities rather than in the country.
①  are living
②  will be living
③  have lived
④  will have lived
【判断题】 Each country has not its own laws about what can or cannot be brought from abroad.
①  正确
②  错误
【单选题】 如何在警告框中写入 Hello World?( )
①  alertBox=Hello World
②  msgBox(Hello World)
③  alert(Hello World)
④  alertBox(Hello World)
【单选题】 写 Hello World 的正确 Javascript 语法是?( )
①  (Hello World)
②  Hello World
③  response.write(Hello World)
④  document.write(Hello World)
【单选题】 26. It was _____ great shock to the world that two airplanes crashed into _____ World Trade Centre in New York on Sept.11.
①  a;/
②  the;the
③  a;the
④  /;the
【单选题】 John Keats’ famous poem______expresses the contrast between the happy world of natural loveliness and human world of agony.
①  “Endymion”
②  “Ode to a Nightingale”
③  “Ode on a Grecian Urn”
④  “Ode to Psyche”
【单选题】 The population of the world ______ still _____ now.
①  will; grow
②  have; grown
③  is ; growing
④  is ; grown
【单选题】 Doctors ___ in every part of the world.
①  need
②  are needing
③  are needed
④  will need
【单选题】 China has a large population than [填空] in the world.
①  all the countries
②  every country
③  any country
④  any other country
【单选题】 在告警消息框中输出hello world!”信息正确的是( )。
①  alertBox(hello world!)
②  msgBox(hello world!)
③  alert(hello world!”)
④  alertMsg(hello world!)
随机题目
【单选题】 已知if (xy||xz);z=x; x=y; y=z;int x=30,y=50,z=80;语句执行后变量x、y、z的值分别为:。
①  x=50, y=80, z=80
②  x=50, y=30, z=30
③  x=30, y=50, z=80
④  x=80, y=30, z=50
【单选题】 若有定义语句:int k1=10,k2=20;,执行表达式(k1=k1k2)(k2=k2k1)后,k1和k2的值分别为()。
①  0和1
②  0和20
③  10和1
④  10和20
【单选题】 若i,j已定义为int类型,则以下程序段中内循环体的总的执行次数是(  )。for (i=5;i;i--)for (j=0;jj++){...}
①  25
②  20
③  24
④  30
【单选题】 若A是数值类型,则逻辑表达式(a==1)||(a!=1)的值是。
①  1
②  0
③  2
④  不知道a的值,不能确定
【单选题】 以下选项中与if(a==1)a=b; else a++;语句功能不同的switch语句是。
①  switch(a) {case1:a=b;break; default:a++; }
②  switch(a==1) {case 0:a=b;break;case 1:a++; }
③  switch(a) {default:a++;break;case 1:a=b;}
④  switch(a==1) {case 1:a=b;break; case 0:a++;}
【单选题】 以下选项中与if(a==1)a=b;else a++;语句功能不同的switch语句是。
①  switch(a){ case1:a=b; break; default:a++;}
②  switch(a==1){ case0:a=b; break;case1:a++;}
③  switch(a){ default:a++;break;case1:a=b;}
④  switch(a==1){ case1:a=b;break;case0:a++;}
【单选题】 以下程序运行的输出结果是。main(){ int p=30;printf(%d\n,(p/320?p/10:p%3)); }
①  0
②  1
③  2
④  3
【单选题】 有如下嵌套的if语句if(ab)if(ac) else if(bc) else 以下选项中与上述if语句等价的语句是。
①  k=(ab)?((a<c)?a:c)((b<c)?b:c);
②  k=(ab)?((b<c)?a:b)((b>c)?b:c);
③  k=(ab)?a:b;k=(b<c)?b:c;
④  k=(ab)?a:b;k=(a<c)?a:c;
【单选题】 以下程序的运行结果是(  )。 #include stdio.hvoid main(){int i=1,s=3;do{s+=i++;if (s%7==0)continue;else++i;} while (sprintf(%d\n
①  7
②  8
③  9
④  10
【单选题】 下列条件语句中输出结果与其他语句不同的是。
①  if(a)printf(“%d\n”,x); else printf(“%d\n”,y);
②  if(a==0)printf(“%d\n”,y);else printf(“%d\n”,x);
③  if(a!=0)printf(“%d\n”,x);elseprintf(“%d\n”,y);
④  if(a==0)printf(“%d\n”,x);else printf(“%d\n”,y);