【单选题】【消耗次数:1】
Do you like [填空]?
vegetable
vegetables
an vegetable
vegetablies
参考答案:
复制
纠错
相关题目
【单选题】 Would you like [填空]some vegetable?
①  buy
②  to buy
③  buying
④  bought
【单选题】 [填空] subject do you like?
①  What
②  Which
③  How
④  Who
【单选题】 What animal do you like [填空]? I like all kinds of animals.
①  better
②  best
③  very
④  well
【单选题】 A: How do you do? B: [填空]
①  Fine, thank you.
②  How do you do?
③  Not too bad.
④  Very well.
【判断题】 A: How do you like this flat? B: I dont like it.
①  正确
②  错误
【单选题】 A: [填空]? B: Do you have a doll?
①  What do you want to sell
②  Shall I help you
③  Do you like a doll
④  What can I do for you
【单选题】 A: Hello, Jane, do you still remember you said youd like to see Yao Ming? B: [填空] A: He is here at our university now.
①  Yes, why?
②  Yes, so what?
③  No, I dont.
④  No, I dont like him.
【单选题】 do you like the new play?It’s good and interesting.
①  How
②  ?Which
③  ?What
④  ?Whom
【判断题】 A: Do you like your job? B: Im a nurse.
①  正确
②  错误
【单选题】 ——Do you have anything in mind ____ you’d like for supper? ——Well, ____ is okay with me.
①  that;anything
②  which;everything
③  what;whatever
④  where;something
随机题目
【单选题】 汉诺塔中,如果有n个盘子,最少需要移动()步可以完成。
①  2的n次方
②  2的n次方-1
③  2的n次方+1
④  2*n-1
【单选题】 若有定义:int a[][3]={1,2,3,4,5,6,7,8};,则a数组的行数为()
①  无确定值
②  3
③  2
④  1
【单选题】 在下列语句中,常用于多分支情况的是()。
①  if
②  if-else
③  switch
④  else-if-else
【单选题】 若有定义:int a[3][4];则表达式&a[2][1]-a的值为()。
①  7
②  8
③  9
④  10
【单选题】 下列各语句序列中,能够且仅输出整型变量a、b中最大值的是()。
①  if(ab)printf(%d\n,a);printf(%d\n,b);
②  printf(%d\n,b);if(ab)printf(%d\n,a);
③  if(ab)printf(%d\n,a);elseprintf(%d\n,b);
④  if(ab)printf(%d\n,a);printf(%d\n,b);
【单选题】 若变量已正确定义并且指针p已经指向某个变量x,则(*p)++相当于()
①  p++
②  x++
③  *(p++)
④  x++
【单选题】 算术运算符、赋值运算符和关系运算符的运算优先级按从高到低依次为()。
①  算术运算、赋值运算、关系运算
②  算术运算、关系运算、赋值运算
③  关系运算、赋值运算、算术运算
④  关系运算、算术运算、赋值运算
【单选题】 通过输入设备,将数据输入到程序的操作是()。
①  输入
②  输出
③  修改
④  判断
【单选题】 在C语言中,有以下二维数组的定义inta[3][5];如想引用第五个元素,则书写()。
①  a[4]
②  a[5]
③  a[0][4]
④  a[1][5]
【单选题】 C语言规定,简单变量做实参时,它和对应形参之间的数据传递方式是()
①  地址传递
②  单向值传递
③  由实参传给形参,再由形参传回给实参
④  由用户指定传递方式