【单选题】【消耗次数:1】
A: Thanks a lot. I really enjoyed your company. B: Dont mention it. [填空].
Sorry to keep you out
Many happy returns of the day
Youre too polite
Me too
参考答案:
复制
纠错
相关题目
【单选题】 A: Would you like me to feed your cats while youre on your holiday? B: [填空].
①  I appreciate it, but Ive already fed them
②  No problem, I was more than glad to do it
③  Thanks for offering your help, but my sisters going to do it
④  Certainly, feeding cats is my favorite pastime
【判断题】 A: Im terribly sorry that I made your table cloth dirty. B: Don’t mention it.
①  正确
②  错误
【判断题】 A: Dont you think this colour is too dark? B: Yes, I think so.
①  正确
②  错误
【单选题】 -Ann, congratulations! Your cuisine was ?very successful and everyone ______. -Thank you, I just tried my ?best. I am happy to know you enjoyed it.
①  had impressed
②  impressed
③  has impressed
④  was impressed
【单选题】 Dont be too ____ about things youre not supposed to know.
①  strange
②  amusing
③  curious
④  conscious
【判断题】 A: Its fine today, and I dont love to stay indoors. B: I dont like it, too.
①  正确
②  错误
【单选题】 A: This package is too heavy for me to carry it upstairs. B: [填空].
①  You may ask for help.
②  Please do me a favor
③  Ill give you a hand
④  Id come to help.
【判断题】 A: What do you do, Polly? B: I work for an IT company.
①  正确
②  错误
【单选题】 A: How long does it take to get to your house by bus? B: [填空]. I think the tube is your best choice. A: Many thanks.
①  I dont know yet
②  It depends on the traffic
③  Let me see
④  Youll consider the distance
【判断题】 A: What time is it? B: Sorry, I dont have a watch with me.
①  正确
②  错误
随机题目
【单选题】 流程控制类语句包括( )3类语句。
①  选择、循环、跳转
②  选择、循环、输入
③  选择、输入、输出
④  循环、选择、函数
【单选题】 每次先进行循环条件的判断,然后再执行循环体的语句是( )。
①  for和do
②  for和while
③  while和do
④  switch和break
【单选题】 当在程序中执行到( )语句时,只结束本层循环类语句或switch语句的执行。
①  continue
②  break
③  goto
④  return
【单选题】 当在程序中执行到( )语句时,将结束所在循环语句中循环体的一次执行。
①  continue
②  break
③  goto
④  return
【单选题】 假定要动态分配一个类型为Worker的具有n个元素的数组,并由r指向这个动态数组,则使用的语句表达式为( )。
①  malloc(n)
②  calloc(n,sizeof(struct Worker))
③  calloc(n*sizeof(struct Worker))
④  realloc(n,sizeof(struct Worker))
【单选题】 在程序中执行到( )语句时,将结束所在函数的执行过程,返回到调用该函数的位置。
①  continue
②  break
③  goto
④  return
【单选题】 假定a是一个一维数组,则以字节为单位的a[i]存储地址为( )。
①  (char*)a+i*sizeof(a[i])
②  a+i*sizeof(a[i])
③  (char*)a+i
④  a+i
【单选题】 假定一个函数的参数说明为const int* a,则在函数体中执行( )操作非法。
①  printf(“%d”,*a)
②  a==NULL
③  *a=20
④  a=NULL
【单选题】 在函数定义的参数表中,也可以使用函数参数,假定一个函数参数说明为int ff(int),则等价的函数指针说明为( )。
①  int *ff(int)
②  int ff
③  int *ff
④  int (*ff)(int)
【单选题】 随机函数rand()%20的值在整数( )区间内。
①  1和20
②  1和19
③  0和19
④  0和20