【单选题】【消耗次数:1】
We’ll go out as soon as I’ve ____ the kitchen.
sent for
cleaned up
done with
worked out
参考答案:
复制
纠错
相关题目
【判断题】 A: Shall we go out for a picnic tomorrow then? B: Its all up to you
①  正确
②  错误
【单选题】 Peter: It’s such a nice warm day. I think I’ll go out for a walk. Dave: ____
①  It is warm to take a walk.
②  Yes. It is warm today.
③  I’d like to join you.
④  Yes. Everybody likes this weather.
【单选题】 ___ is often the case, we have worked out the production plan.
①  Which
②  When
③  What
④  As
【单选题】 27. If it ____ tomorrow, we will not go out.
①  rains
②  will rain
③  is going to rain
④  is to rain
【单选题】 A: Shall we go out for dinner tonight? B: [填空].
①  You are right
②  Have a nice time
③  Thats a good idea
④  My pleasure
【单选题】 I am[填空]?tired?that I don’t want to go out.
①  very
②  too
③  so
④  indeed
【单选题】 ______,the boy worked out the problem quickly.
①  As clever he is
②  Clever as he is
③  He is as clever
④  As he is clever
【单选题】 Can you go out with us for dinner this evening?
①  No, I already have plans
②  Thanks a lot but I’m busy tonight
③  No, I really don’t like being with you
④  I’m ill, so I shouldn’t go out for dinner
【判断题】 Lets go out for a walk.
①  正确
②  错误
【单选题】 We’ll _____you as soon as we have any further information.
①  notify
②  signify
③  communicates
④  impart
随机题目
【多选题】 设已定义charx[8]和intj为了给该数组赋值,下面语句中错误的是:()
①  x[8]=TurboC
②  x=TurboC
③  x[]=TurboC
④  for(j=0;j7;j++)x[j]=getchar()
【多选题】 算法的设计方法有很多,常用的算法方法有以下哪些()。
①  递推算法
②  迭代算法
③  穷举算法
④  冒泡排序算法
【多选题】 若有说明int a[3][4];则对a数组元素的引用不正确是()
①  a[2][4]
②  a[1,3]
③  a[1+1][0]
④  a(2)(1)
【多选题】 break可以用用于下列哪些结构()
①  if
②  switch...case
③  while
④  for
【多选题】 基本数据类型包括有()。
①  整型
②  实型
③  字符型
④  字符串型
【多选题】 以下对C语言函数的有关描述中,不正确的是()
①  在C语言程序中,调用函数时,如函数参数是简单变量,则只能把实参的值传递给形参,形参的值不能传送给实参
②  C语言函数既可以嵌套定义又可嵌套调用
③  C语言函数必须有返回值,否则不能使用函数
④  在C语言程序中有调用关系的所有函数必须放在同一个源程序文件中
【多选题】 下面哪些基本结构和特性符合结构化程序设计的要求()。
①  选择结构
②  循环结构
③  顺序结构
④  各结构之间只有一个入口、至多两个出口
⑤  各结构之间只有一个入口、一个出口
【多选题】 以下正确的说法有()
①  C语言程序的基本组成单位是函数;
②  一个函数的类型为void,在定义时,可以省略void;
③  函数声明是一条C语句;
④  函数必须要有返回值;
【多选题】 以下各组选项中,不能正确定义二维实型数组s的选项是()
①  float s[3][4];float s[ ][4];float s[3][ ]={{1},{0}}
②  float s(3,4);float s[ ][ ]={{0};{0}};float s[3][4]
③  float s[3][4];float s[ ][4]={{0},{0}}; float s[ ][4]={{0},{0},{0}}
④  float s[3][4];float s[3][ ];float s[ ][4]
【多选题】 关于递归的有关内容描述项正确的是()
①  可以采用递归解决汉诺塔游戏的问题
②  递归可以分为直接递归与间接递归
③  可以采用递归解决求一个数n!问题
④  递归就是在过程或函数里调用自身