【判断题】【消耗次数:1】
A: Would you mind if I turned the radio up? B: No, go ahead.
正确
错误
参考答案:
复制
纠错
相关题目
【单选题】 A: Would you mind if I turned the radio off? B: [填空].
①  Yes, please
②  No, go right ahead
③  Yes, thats all right
④  No, thank you
【单选题】 Would you mind _____ your radio a little bit? I cant concentrate on my work.
①  turning on
②  turning down
③  turning to
④  turning in
【单选题】 A: Would you mind if I play the violin here? B: [填空].
①  Of course not.
②  Yes, I dont mind
③  Yes, you may do that
④  OK. Everyone does
【判断题】 A: Would you go and see the film? B: Yes, I would.
①  正确
②  错误
【判断题】 A: Sorry,I cant follow you. Would you mind saying that slowly? B: Certainly not.
①  正确
②  错误
【单选题】 A: Would you mind changing seats with me? B: [填空].
①  Yes, you can
②  Of course, I dont mind
③  No, I dont mind
④  Certainly, please do.
【单选题】 A: Would you like to go to the cinema? B: If I can finish my homework. A: [填空]
①  Why bother?
②  Oh, come on!
③  Then what?
④  Thanks a lot.
【单选题】 A: Would you like to go to the cinema this evening?B: Ok , but I dont want to watch ___ sad.
①  something
②  anything
③  nothing
【单选题】 - Would you mind changing seats with me?
①  Yes, you can
②  Of course, I like to
③  No, I don’t mind
④  Certainly, please do
【单选题】 27.---I`ll be away for a visit to the History Museum.Would you mind going with me ? ---______.
①  I`lllikeit
②  No,I`venotime
③  Notatall,I`dbegladto
④  Yes,ofcourse
随机题目
【单选题】 假定p所指对象的值为25,p+1所指对象的值为42,则执行*p++运算后,p所指对象的值为( )。
①  25
②  42
③  26
④  43
【单选题】 在程序中执行到( )语句时,将结束所在函数的执行过程,返回到调用该函数的位置。
①  continue
②  break
③  goto
④  return
【单选题】 假定p为指向二维数组int d[4][6]的指针,则p的类型为( )。
①  int*
②  int**
③  int[6]
④  int(*)[6]
【单选题】 假定指针变量p定义为“int *p=new int(100);”,要释放p所指向的动态内存,应使用语句( )。
①  delete p;
②  delete *p;
③  delete
④  delete []p;
【单选题】 在下面的( )不能作为函数的返回类型。
①  void
②  int
③  new
④  long
【单选题】 假定一个数据对象为int*类型,则指向该对象的指针的类型为( )。
①  int
②  int *
③  int **
④  int ***
【单选题】 若要定义整形指针p并初始指向x,则所使用的定义语句为( )。
①  int p=&x;
②  int p=x;
③  int* p=&x;
④  int& p=*x;
【单选题】 向一个二进制文件中写入信息的函数fwrite()带有( )个参数。
①  1
②  2
③  3
④  4
【单选题】 在函数定义的参数表中,也可以使用函数参数,假定一个函数参数说明为int ff(int),则等价的函数指针说明为( )。
①  int *ff(int)
②  int ff
③  int *ff
④  int (*ff)(int)
【单选题】 假定一个函数的数组参数说明为char a[],则与之等价的指针参数说明为( )。
①  char
②  char* a
③  char& a
④  char** a