【判断题】【消耗次数:1】
A: This is Frank speaking. I would like to speak with Mr. Wang, please. B: Im afraid youve dialed the wrong number.
正确
错误
参考答案:
复制
纠错
相关题目
【判断题】 A: This is Frank speaking. I would like to speak with Mr. Wang, please. B: I’m afraid you’ve dialed the wrong number.
①  正确
②  错误
【单选题】 A: Hello, this is Bill. Id like to speak with Mr Wang, please. B: [填空]
①  Who is speaking over there?
②  Sorry, he is not available at the moment.
③  Can you tell me who you are?
④  Theres no one here by that name.
【判断题】 A: Can I speak to Mr. Johnson, please? B: Hold on, please.
①  正确
②  错误
【单选题】 A: Hello. May I speak to John, please? B: Speaking. A: [填空]
①  How do you do?
②  Glad to hear your voice.
③  Fine, thats good
④  Hi, John. This is Linda
【判断题】 A: Hello, May I talke to Mr. Thomas? B: Im afraid not.
①  正确
②  错误
【单选题】 Hello, I’d like to speak to Mark, please.
①  Yes, I’m Mark
②  This is Mark speaking
③  It’s me here
④  This is me
【单选题】 -- Could I speak to John Harris, please.
①  Oh, how are you
②  I’m John
③  I’m listening
④  Speaking
【判断题】 A: Hello, May I talke to Mr. Thomas? B: I’m afraid not.
①  正确
②  错误
【单选题】 A: Mr. Wang, Im very much impressed. Theres no need for further questions. B: [填空].
①  Really? Thats great
②  Sorry, I didnt mean to bother you
③  Thank you for your time
④  Its my pleasure
【单选题】 If he ___ tomorrow, he would find Mr. Wang in the office.
①  comes
②  will come
③  should come
④  come
随机题目
【单选题】 不属于串行通信的工作模式的是( )。
①  单工
②  半单工
③  半双工
④  全双工
【单选题】 串行口控制寄存器SCON存放串行口的控制和状态信息,地址为( )H。
①  96
②  97
③  98
④  99
【单选题】 C++中函数返回值的类型是由(????)决定的。
①  return语句中表达式的类型?
②  函数定义时的类型
③  调用函数时的调用语句?
④  系统根据结果
【单选题】 以下叙述中不正确的是(????)
①  在一个函数中,可以有多条return语句
②  函数的定义不能嵌套,但函数的调用可以嵌套
③  函数必须有返回值
④  不同的函数中可以使用相同名字的变量
【单选题】 以下正确的说法是(????)
①  用户调用标准库函数前,必须重新定义
②  用户可以重新定义标准库函数,若如此,该函数将失去原有含义
③  系统不允许用户重新定义标准库函数
④  用户调用标准库函数前,不必使用预编译命令将该函数所在文件包括到用户源文件中
【单选题】 以下说法中正确的是(????)
①  C++程序总是从第一个定义的函数开始执行
②  C++程序总是从main函数开始
③  C++函数必须有返回值,否则不能使用函数
④  C++程序中有调用关系的所有函数必须放在同一个程序文件中
【单选题】 函数重载是指(????)
①  两个或两个以上的函数取相同的函数名,但形参的个数或类型不同
②  两个以上的函数取相同的名字和具有相同的参数个数,但形参的类型可以不同
③  两个以上的函数名字不同,但形参的个数或类型相同
④  两个以上的函数取相同的函数名,并且函数的返回类型相同
【单选题】 以下函数的返回结果是(????) int function(char *x) { char *p=x; while(*p++); return(p-x-1); }
①  求字符串的长度
②  将字符串x连接到字符串p后面
③  将字符串x复制到字符串p中
④  将字符串x反向存放
【单选题】 函数原型语句正确的是(????)
①  int Function(void a);
②  void Function (int);
③  int Function(a);?
④  void int(double a);
【单选题】 为了提高程序的运行速度,可将不太复杂的功能用函数实现,此函数应选择(????)。
①  内联函数
②  重载函数
③  递归函数
④  模板