【单选题】【消耗次数:1】
Client: Hello! May I speak to Mr. Turner? Secretary: ___________
I’m sorry. He’s at a meeting now..
I am. Speak, please.
Hello! Who’re you, please?
Hello! Thank you for calling.
参考答案:
复制
纠错
相关题目
【单选题】 Client: Hello! May I speak to Mr. Turner?Secretary: ___________
①  I’m sorry. He’s at a meeting now..
②  I am. Speak, please.
③  Hello! Who’re you, please?
④  Hello! Thank you for calling.
【判断题】 A: Hello, could I speak to Jack, please? B: Who are you?
①  正确
②  错误
【单选题】 Hello, I’d like to speak to Mark, please.
①  Yes, I’m Mark
②  This is Mark speaking
③  It’s me here
④  This is me
【单选题】 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, [填空] Can I help you? B: Yes, this is Lin Xiaoyan. Could I speak to Mark Strong, please?
①  Who are you?
②  Whos speaking?
③  Im the secretary.
④  ABHK Bank.
【判断题】 A: Hello! Are you John Smith? B: Yes, I am.
①  正确
②  错误
【判断题】 A: Hello, May I talke to Mr. Thomas? B: I’m afraid not.
①  正确
②  错误
【判断题】 A: Can I speak to Mr. Johnson, please? B: Hold on, please.
①  正确
②  错误
【单选题】 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.
【单选题】 Hello, may I talk to the headmaster now?
①  Sorry, he is busy at the moment
②  No, you can’t
③  Sorry, you can’t
④  I don’t know
随机题目
【单选题】 运行下面程序时,若从键盘输入3,5,则程序的输出结果是________. #include stdio.h void main( ) { int x,y; scanf(%d,%d,x, if (x==y) printf(x==y else if (xy) printf(xy else printf(xy }
①  35
②  53
③  xy
④  xy
【单选题】 运行下面程序时,若从键盘输入3,则程序的输出结果是_______.#include stdio.h(一般) void main( ){ int x; scanf(%d,if (!x)printf(x等于零 elseprintf(x不等于零}
①  x等于零
②  x不等于零
③  3等于零
④  3不等于零
【单选题】 数组元素作参数进行函数调用时,实参和形参都是简单变量,它们之间数据传递的过程描述正确的是?
①  实参将地址传递给形参,并释放原先占用的存储单元;
②  实参将地址传递给形参,调用结束时形参再将此地址回传给实参;
③  实参将值传递给形参,调用结束时形参再将其值回传给实参;
④  实参将值传递给形参,调用结束时形参并不将其值回传给实参;
【单选题】 判断x是否最大值的程序,则填空处应填写_______.#include stdio.h void main( ) { int x,y,z; scanf(%d%d%d,x,y, if (_______) printf(最大值是:%d, x); }
①  (x=y)(x=z)
②  (x=y) || (x=z)
③  (x=z)
④  (x=y) (y=z)
【单选题】 C-Free中单步执行的快捷键是
①  F7
②  F8
③  F9
④  Home
【单选题】 C语言中多行注释的写法正确的是
①  ///
②  //
③  -*
④  -/* */
【单选题】 以下程序的运行结果是( )。 void fun(int array[3][3]) { int j; for(j=0;jj++) array[1][j]=array[1][j]++; printf(\n} void main(){ int j,a[3][3]={0,1,2,1,0,4,2,4,5};fun(a);for(j=0;jj++)printf(%d,a[1][j]); printf(\n }
①  1 0 4
②  2 1 5
③  0 1 2
④  1 2 3
【单选题】 下列说法不正确的是()
①  for循环用于循环次数已知的情况更加方便。
②  for的特例:for(变量=终值;变量初值;变量--)
③  do…while循环的循环体至少执行一次
④  循环体里不能有if 语句
【单选题】 当全局变量与函数内部的局部变量同名时,则在函数内部( )。
①  全局变量与局部变量都无效
②  全局变量有效
③  局部变量有效
④  全局变量与局部变量都有效
【单选题】 C语言中常用的格式输出的函数名称是
①  printf()
②  cin()
③  writeln()
④  output()