【单选题】【消耗次数:1】
I like dancing and so [填空] Tom.
does
is
do
did
参考答案:
复制
纠错
相关题目
【单选题】 Tom, what did you do with my documents? I have never seen such a _______ and disorder!
①  mess
②  mass
③  guess
④  bus
【单选题】 Tom, what did you do with my documents? I have never seen such a____ and disorder!
①  mass
②  mess
③  guess
④  bus
【判断题】 A: I do think thats a good idea. B: So it does.
①  正确
②  错误
【单选题】 08. It is not that I do not like plays. The reason why I did not go to the theater last night was that I could not ____ the time.
①  offer
②  leave
③  affor
④  manage
【单选题】 What animal do you like [填空]? I like all kinds of animals.
①  better
②  best
③  very
④  well
【判断题】 A: Tom speaks English very well. B: So he does.
①  正确
②  错误
【单选题】 What role does a teacher play in the following activity? T: do you have any hobbies? S: yes, I like singing and dancing. T: Uhm, and...? S: I also collect coins. T: Oh, really, how many...have you already...collected?
①  Controller
②  Assessor
③  Organizer
④  Prompter
【单选题】 Did Tom tell you to water the flowers?
①  No. And so did I
②  No. And neither did I
③  He did And so I did
④  He did And so do I
【单选题】 Tom doesn’t like bananas. Neither [填空] his wife.
①  do
②  does
③  is
④  did
【单选题】 Do you like [填空]?
①  vegetable
②  vegetables
③  an vegetable
④  vegetablies
随机题目
【简答题】 若文法 G 定义的语言是无限集,则文法G必然是[填空1]。
【简答题】 在形式语言中,[填空1]常被称为规范推导。
【简答题】 四元式之间的联系是通过[填空1]实现。
【简答题】 概括的说,一张符号表的每一项(或称入口)包含两大栏(或称区段、字域),即[填空1],信息栏。
【简答题】 优化可生成[填空1]的目标代码。
【简答题】 如果一个文法存在某个句子对应两棵不同的语法树,则称这个[填空1]是二义的。
【单选题】 表达式:10!=9的值是
①  true
②  非零值
③  0
④  1
【单选题】 为了避免嵌套的if-else语句的二义性,C语言规定else总是与___组成配对关系.
①  缩排位置相同的if
②  在其之前未配对的if
③  在其之前尚未配对的最近的if
④  同一行上的if
【单选题】 以下叙述正确的是
①  continue语句的作用是结束整个循环的执行
②  只能在循环体内和switch语句体内使用break语句
③  在循环体内使用break语句或continue语句的作用相同
④  从多层循环嵌套中退出时,只能使用goto语句
【简答题】 统计整数n的各个位上出现数字1、2、3的次数,并通过外部(全局)变量c1、c2、c3返回主函数。 例如,当n=123114350时,结果应该为:c1=3 c2=1 c3=2。 #includeint c1,c2,c3; void fun(long n) { c1 = c2 = c3 = 0; while (n) { /************found************/ switch([填空1]) { case 1: c1++; break; /************found************/ case 2: c2++;[填空2] case 3: c3++; } n /= 10; } } main() { int n=123114350; fun(n); printf(\nn=%d c1=%d c2=%d c3=%d\n,n,c1,c2,c3); }