【单选题】【消耗次数:1】
What can I do for you, madam?
I want a kilo of apples
You can go your own way
Thanks
Excuse me. I’m busy
参考答案:
复制
纠错
相关题目
【单选题】 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
【单选题】 I’ m going to do all I can to____ the unpleasant impression you have of me.
①  move
②  remove
③  shift
④  transform
【单选题】 —Hello there, what can I do for you, sir?—_____________________.
①  I can do it myself.
②  No, youre welcome.
③  I would like to buy a pair of glasses.
④  Yes, thank you.
【单选题】 Excuse me, but can you tell me the way to the airport?
①  Don’t ask that
②  Sorry, I’m a stranger here
③  No, I can’t say that
④  No, you’re driving too fast
【单选题】 Can I help you with your suitcase?
①  I have no idea
②  No, no. I can carry it myself
③  That’s a good idea
④  Thank you. I can manage myself
【判断题】 A: What can I do for you, sir? B: Nothing.
①  正确
②  错误
【单选题】 21. Am I _____ your way? I can move over a bit and make room for you...
①  under
②  in
③  beyond
④  on
【单选题】 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
【单选题】 A: Can I help you? B: [填空]. Where do I pay my fees?
①  Thank you
②  As you please
③  Yes, you can
④  Yes, please
【单选题】 Can I help you with the bag?
①  No, no. I can take it myself
②  Thank you
③  Sorry, you can’t
④  No, I’m all right
随机题目
【单选题】 阅读以下代码: import java.io.*; import java.util.*; public class foo{ public static void main (String[] args){ String s; System.out.println(s= + s); } } 输出结果应该是:( )
①  代码得到编译,并输出“s=”
②  代码得到编译,并输出“s=null”
③  由于String s没有初始化,代码不能编译通过
④  代码得到编译,但捕获到 NullPointException异常
【单选题】 访问修饰符作用范围由大到小是( )
①  private-default-protected-public
②  public-default-protected-private
③  private-protected-default-public
④  public-protected-default-private
【单选题】 有以下方法的定义,请选择该方法的返回类型( )。 ReturnType method(byte x, double y) { return (short)x/y*2; }
①  byte
②  short
③  int
④  double
【单选题】 有一段java 应用程序,它的主类名是a1,那么保存它的源文件名可以是( )
①  a1.java
②  a1.class
③  a1
④  都对
【单选题】 为AB类的一个无形式参数无返回值的方法method书写方法头,使得使用类名AB作为前缀就可以调用它,该方法头的形式为( )。
①  static void method( )
②  public void method( )
③  final void method( )
④  abstract void method( )
【单选题】 编译Java源程序文件将产生相应的字节码文件,这些字节码文件的扩展名为( )。
①  .byte
②  .class
③  .html
④  .exe
【单选题】 下面哪个函数是public void method(){ }的重载函数?( )
①  public void method( int m){ }
②  public int method(){ }
③  public void method2(){ }
④  public int method(int m,float f ){ }
【单选题】 在使用interface声明一个接口时,只可以使用( )修饰符修饰该接口。
①  private
②  protected
③  private protected
④  public
【单选题】 MAX_LENGTH 是int 型public 成员变量,变量值保持为常量1,用简短语句定义这个变量。( )
①  public int MAX_LENGTH=1;
②  final int MAX_LENGTH=1;
③  final public int MAX_LENGTH=1;
④  public final int MAX_LENGTH=1.
【单选题】 Java编程所必须的默认引用包为( )
①  java.sys包
②  java.lang包
③  java.util包
④  以上都不是