【单选题】【消耗次数:1】
_______I like most is_______I can have a party after work.
That,that
What, that
What, what
参考答案:
复制
纠错
相关题目
【单选题】 What can I do for you, madam?
①  I want a kilo of apples
②  You can go your own way
③  Thanks
④  Excuse me. I’m busy
【单选题】 —Hello there, what can I do for you, sir?—_____________________.
①  I can do it myself.
②  No, youre welcome.
③  I would like to buy a pair of glasses.
④  Yes, thank you.
【单选题】 I always ____ what I have said.
①  get to
②  hold to
③  lead to
④  see to
【单选题】 8.Do you have any idea what he meant? I really can’t ______ what he said at this morning’s meeting.
①  figure on
②  figure out
③  find out
④  find
【单选题】 What I meant was that we should go[填空] with the work.
①  on
②  in
③  down
④  out
【判断题】 A: What can I do for you, sir? B: Nothing.
①  正确
②  错误
【单选题】 What animal do you like [填空]? I like all kinds of animals.
①  better
②  best
③  very
④  well
【判断题】 A: What do you do, Polly? B: I work for an IT company.
①  正确
②  错误
【单选题】 What ___ if I drink this?
①  happens
②  is happening
③  will happen
④  is happened
【单选题】 What _________ if I drink this ?
①  happens
②  is happening
③  will happen
④  is happened
随机题目
【单选题】 若有定义:int a[10],*p=a;则错误引用数组元素a[2]地址的是()。
①  p+2
②  a+2
③  p[2]
④  *a+2
【单选题】 选出下列标识符中不是合法的标识符的是()。
①  hot_do
②  cat1
③  _pri
④  2ab
【单选题】 表达式(int)((double)9/2)-(9)%2的值是()
①  0
②  3
③  4
④  5
【单选题】 intn=0,*p=&n,**q=&p;则正确的赋值语句是()
①  p=1;
②  *q=2;
③  q=p;
④  *p=5;
【单选题】 下列运算符中优先级最高的是().
① 
②  +
③ 
④  !=
【单选题】 树上有10只鸟,开枪打死一只,还剩几只()。
①  不确定
②  还有一只
③  零只
④  九只
【单选题】 下面关于基本数据类型描述错误的是()。
①  整型int在内存中占用4字节
②  浮点型float在内存中占用8字节
③  字符型char在内存中占用1个字节
④  整型long int 长整型占用4个字节
【单选题】 若有说明语句:int a[2][3]={0};,则下面正确的叙述是()。
①  此语句说明不正确
②  只有a[0][0]可以得到初值0
③  数组中的每个元素可以得到初值0
④  数组中的每个元素可以得到初值,但不一定为0
【单选题】 以下能正确计算1×2×3×…×10的程序段是()。
①  do{ i=1 s=1 s=s*i i++}while(i=9)
②  do{i=1 s=1 s=s*i i++ }while(i=10)
③  i=1 s=1 do{s=s*i i++ }while(i=10)
④  i=1 s=1 do{s=s*i i++ }while(i=9)
【单选题】 要定义字符型变量a并赋初值,()是正确的。
①  chara=3;
②  chara=3;
③  chara=%;
④  chara=*;