【单选题】【消耗次数:1】
A: Id rather have some tea, if you dont mind. B: [填空].
Thank you very much
Yes, I like so
Of course not, anything you want
No, its nothing
参考答案:
复制
纠错
相关题目
【单选题】 Jane: I’d like to have some ice cream if you don’t mind. Man: ____. Help yourself.?
①  of course ?
②  Yes, I do ?
③  Oh, yes ?
④  Of course not?
【判断题】 A: You havent changed your mind, have you? B: Yes, I havent.
①  正确
②  错误
【单选题】 I thought you________like something to read,so I have bought you some books.
①  may
②  might
③  could
④  must
【单选题】 ——Do you have anything in mind ____ you’d like for supper? ——Well, ____ is okay with me.
①  that;anything
②  which;everything
③  what;whatever
④  where;something
【单选题】 A: Would you like some wine? B: Yes, just [填空].
①  little
②  very little
③  a little
④  little bit
【判断题】 A: Thank you very much! B: No thanks.
①  正确
②  错误
【单选题】 11. I thought you _____ like something to read, so I have bought you some books.
①  may
②  might
③  could
④  must
【单选题】 Thank you ever so much for the scarf you bought me.____________
①  No thanks.
②  No, it’s not so good.
③  I’m glad you like it.
④  Please don’t say so.
【单选题】 A: Thank you. Dont trouble yourself. Im not thirsty at all. B: [填空] you wouldnt like a cold beer, or a coke?
①  Can you tell
②  Do you think
③  Do you mean
④  Are you sure
【单选题】 A: Would you like to go to the cinema this evening?B: Ok , but I dont want to watch ___ sad.
①  something
②  anything
③  nothing
随机题目
【单选题】 下面哪个函数是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包
④  以上都不是
【单选题】 Java 语言属于( )种语言?
①  面向机器的语言
②  面向对象的语言
③  面向过程的语言
④  面向操作系统的语言
【单选题】 若a的值为3时,下列程序段被执行后,c的值是多少?( ) if ( a>0 ) if ( a>3 ) c = 2; else c = 3; else c = 4;
①  1
②  2
③  3
④  4
【单选题】 以下对继承的描述错误的是( )
①  Java中的继承允许一个子类继承多个父类
②  父类更具有通用性,子类更具体
③  Java中的继承存在着传递性
④  当实例化子类时会递归调用父类中的构造方法
【单选题】 执行如下程序代码   a=0;c=0;   do{   --c;   a=a-1;   }while(a>0);   后,c的值是( )
①  0
②  1
③  -1
④  死循环
【单选题】 如下哪个是Java中的合法标识符( )
①  public
②  super
③  3number
④  width
【单选题】 结构化程序设计所规定的三种基本控制结构是 ( )。
①  输入、处理、输出
②  树形、网形、环形
③  顺序、选择、循环
④  主程序、子程序、函数