【单选题】【消耗次数:1】
There will be a new building here next year, _____ ?
will it
will there
be there
won’ t there
参考答案:
复制
纠错
相关题目
【单选题】 Its reported that a new hospital _____________here next year.
①  would be set up
②  was going to set up
③  will be set up
④  is going to set up
【单选题】 He [填空] here next year.
①  isn't working
②  doesn't working
③  isn't going to working
④  won't work
【单选题】 He [填空] here next year.
①  isnt working
②  doesnt working
③  isnt going to working
④  wont work
【单选题】 I won’t make the _______ mistake next time.
①  like
②  same
③  near
④  similar
【单选题】 I haven’t made any new friends yet and everybody here makes ____ of me.
①  fun
②  smile
③  laugh
④  joy
【单选题】 Happy New Year to you. ____________
①  The same to you.
②  Yes, I am happy.
③  What about you.
④  Very well, thanks.
【单选题】 14. I won’t believe that the five-year-old boy can read five thousand words ______ I have tested him myself.
①  after
②  when
③  if
④  until
【单选题】 She hope[填空] to university next year.
①  going
②  to go
③  goes
④  gone
【单选题】 The conference _____ next year will be an important event in the history of the country.
①  having been held
②  being held
③  to be held
④  held
【单选题】 We need to design a new() for the third year.
①  source
②  system
③  syllabus
④  status
随机题目
【单选题】 以下程序的运行结果是( )。 void fun(int array[3][3]) { int j; for(j=0;jj++) array[1][j]=array[1][j]++; printf(\n} void main(){ int j,a[3][3]={0,1,2,1,0,4,2,4,5};fun(a);for(j=0;jj++)printf(%d,a[1][j]); printf(\n }
①  1 0 4
②  2 1 5
③  0 1 2
④  1 2 3
【单选题】 下列说法不正确的是()
①  for循环用于循环次数已知的情况更加方便。
②  for的特例:for(变量=终值;变量初值;变量--)
③  do…while循环的循环体至少执行一次
④  循环体里不能有if 语句
【单选题】 当全局变量与函数内部的局部变量同名时,则在函数内部( )。
①  全局变量与局部变量都无效
②  全局变量有效
③  局部变量有效
④  全局变量与局部变量都有效
【单选题】 C语言中常用的格式输出的函数名称是
①  printf()
②  cin()
③  writeln()
④  output()
【单选题】 一个C语言程序的基本组成单位是( )。
①  主程序
②  子程序
③  过程
④  函数
【单选题】 下列程序执行后的输出结果是_______.#include stdio.h void main( ) { int a=5,b=60,c; if (ab) {c=a*b; printf(%d*%d=%d\n,b,a,c);} else {c=b/a; printf(%d/%d=%d\n,b,a,c);} }
①  60/5=12
②  300
③  60*5=300
④  12
【单选题】 以下数组定义中,错误的是( )。
①  int a[]={1,2,3};
②  int a[5]={1,2,3};
③  int a[3]={2,3,4,5};
④  int a[5],b;
【单选题】 下列哪组数据能存入数组中( )
①  “吕布”、“貂蝉”、“刘备”
②  100、98、‘A’、3.5
③  12.5、17.9、33.7
④  12、17、33
【单选题】 按照下题选出正确的输出结果如果有如下定义:int a[3][4]={{1, 2, 3, 4}, {5, 6, 7, 8},{9, 10, 11, 12}};,那么a[2][1]元素的结果是()?
①  12
②  11
③  10
④  9
【单选题】 C语言中,逻辑“假“等价于( )。
①  大于零的数
②  大于零的整数
③  0
④  非零的整数