【单选题】【消耗次数:1】
13.Don’t ______ to let me know if there’s anything I can do for you.
thrill
hesitate
reject
puzzle
参考答案:
复制
纠错
相关题目
【单选题】 6. Don’t_________to 1et me know if there s anything I can do for you.
①  hesitate
②  reject
③  puzz1e
④  thrill
【单选题】 Woman: Bob, do you think you can lend me fifty dollars? Bob: Let me see. ____
①  You know I have no money at all.
②  Sorry, I don’t think I have much with me.
③  I don’t think you should do it.
④  Oh, I have quite a lot.
【单选题】 A: Is there anything I can do for you? B: [填空], there is something.
①  No, nothing
②  Well, now that you ask
③  Nothing I can think of
④  If you ask me
【单选题】 Excuse me. I don’t want to interrupt you but …
①  Can I help you?
②  Certainly, how dare you
③  It’s quite all right
④  Yes, you did
【单选题】 My daughter bought me an IPAD,but I don’t know_____.
①  A.what to know
②  B.which one to use
③  C.when to use
④  D.how to use it
【判断题】 I don’t know what you are talking about.
①  正确
②  错误
【单选题】 I didn’t know what to do, but then an idea suddenly ________ to me.
①  appeared
②  happened
③  occurred
④  emerged
【单选题】 I don’t know you want to keep the letter, I’ve _____it up.
①  torn
②  given
③  broken
④  disposed
【单选题】 Do let me know immediately if something unexpected______.
①  rises
②  raises
③  praises
④  arises
【单选题】 Don’t hesitate ______ for help if you have any problem meeting the schedule.
①  to ask
②  asked
③  asking
④  to be asked
随机题目
【单选题】 在下面的字符数组定义中,哪一个有语法错误(????)
①  char a[20]=”abcdefg”;
②  char a[]=”x+y=55.”;
③  char a[15];
④  char a[10]=’5’;
【单选题】 若定义了函数 double *function(), 则函数function的返回值为(????)。
①  实数型
②  实数的地址C.指向函数的指针
③  函数的地址
【单选题】 假定一个二维数组的定义语句为“int a[3][4]={{3,4},{2,8,6}};”,则元素a[2][1]的值为(???)。
①  0
②  4
③  8
④  6
【单选题】 假定一个二维数组的定义语句为“int a[3][4]={{3,4},{2,8,6}};”,则元素a[1][2]的值为(???)。
①  2
②  4
③  6
④  8
【单选题】 在下面的二维数组定义中,正确的是(????)
①  int a[5][];
②  int a[][5];
③  int a[][3]={{1,3,5},{2}};
④  int a[](10);
【单选题】 当处理特定问题时的循环次数已知时,通常采用(????)来解决
①  for循环
②  while循环
③  do循环
④  switch语句
【单选题】 设”int a=15,b=26;”,则”cout<<(a,b);”的输出结果是(????)
①  15
②  26,15
③  15,26
④  26
【单选题】 在下面循环语句中内层循环体S语句的执行总次数为( ) for(int i=0; i<n; i++) for(int j=i; j<n; j++) S;
①  n2
②  (n+1)/2
③  n(n-1)/2
④  n(n+1)/2
【单选题】 在下面循环语句中循环体执行的次数为(????) ?int i=0; do i++; while(i*i<10);
①  4
②  3
③  5
④  2
【单选题】 switch语句能够改写为(????)语句
①  for
②  if
③  do
④  while