【单选题】【消耗次数:1】
The Smith family will have gone ______ by the time we finish summer school.
camp
camps
camping
camped
参考答案:
复制
纠错
相关题目
【单选题】 I doubt[填空] we can finish it on time.
①  not
②  and
③  so
④  if
【单选题】 Don’t worry. We have _______ to finish the work carefully.
①  enough time
②  less time
③  little time
④  few times
【单选题】 -We’ve worked for a long time, what about stopping to have a rest? -_____________________.
①  A. I like it.
②  A. You are wonderful.
③  A. That’s a good idea.
④  very good
【单选题】 There are ________ people in front of the cinema gate so we have to wait ________ time to get into the cinema.
①  too much; much too
②  too many; too much
③  much too; too much
④  too much; too many
【单选题】 8.______ your request for a make-up test, we have referred the matter to the school authority.
①  For the purpose of
②  With regard to
③  In view of
④  In accordance with
【单选题】 What a rainy summer we’ve had! --Yes, there only three sunny weekends the whole summer.
①  have been
②  are
③  had been
④  has been
【单选题】 We often go __________ in the river in summer.
①  to swimming
②  swim
③  to swim
④  swimming
【单选题】 A: Is it time for us to set off now? B: [填空]. We’ll have to wait for one more hour.
①  Certainly, it is
②  Thats all right
③  Sorry, I am afraid not
④  Sorry,its too long
【单选题】 he tried [] but failed to finish his work in time.
①  hard
②  hardly
【单选题】 A: We had a trip to China this summer. B: [填空] A: Yes, we did. In fact, we even encountered a lion.
①  Didnt you?
②  How did it go?
③  I guess you did.
④  I bet you had a great time.
随机题目
【单选题】 在下面循环语句中内层循环体S语句的执行总次数为( ) for(int i=0; i i++) for(int j=i; j j++) S;
①  n2
②  (n+1)/2
③  n(n-1)/2
④  n(n+1)/2
【单选题】 当处理特定问题时的循环次数已知时,通常采用()来解决
①  for循环
②  while循环
③  do循环
④  switch语句
【单选题】 由C++目标文件连接而成的可执行文件的默认扩展名为()
①  cpp
②  exe
③  obj
④  lik
【单选题】 以下标识符中不全是保留字的是()
①  case for int
②  default then while
③  bool class long
④  goto return char
【单选题】 当类中一个字符指针指向具有n个字节的存储空间时,它所存储字符串的最大长度是( )
①  n
②  n-1
③  n+1
④  n-2
【单选题】 switch语句能够改写为()语句
①  for
②  if
③  do
④  while
【单选题】 设x和y均为bool量,则x y为真的条件是()
①  它们均为真
②  其中一个为真
③  它们均为假
④  其中一个为假
【单选题】 以下叙述中不正确的是()
①  在一个函数中,可以有多条return语句
②  函数的定义不能嵌套,但函数的调用可以嵌套
③  函数必须有返回值
④  不同的函数中可以使用相同名字的变量
【单选题】 设”int a=12;”,则执行完语句”a+=a*a;”后,a的值是()
①  12
②  144
③  156
④  288
【单选题】 设有如下函数定义 int f(char *s) { char *p=s; while(*p!=’\0’) p++; return(p-s); } 在主函数中用coutf(“good”)调用上述函数, 则输出结果为( )
①  3
②  4
③  5
④  6