【单选题】【消耗次数:1】
A: Id like to ask you a question. B: [填空]
Yes, go ahead.
Sorry, Im kind of busy.
OK, whats up?
Yeah, whats on your mind?
参考答案:
复制
纠错
相关题目
【单选题】 A: Mary, Im very sorry to tell you that I wont be able to come this Friday. B: Whats the matter? [填空].
①  Nothing wrong, I hope
②  Its all right with me
③  Im really sorry for that
④  You can come some other time
【判断题】 A: Ok, next question. Can you follow me? B: Yes, perfectly.
①  正确
②  错误
【判断题】 A: Would you mind if I turned the radio up? B: No, go ahead.
①  正确
②  错误
【单选题】 A: Hey, whats up? B: [填空].
①  Oh, nothing
②  Not too bad
③  I m pleased.
④  Im fine
【单选题】 -Whats your brother like? -He is _________.
①  adriver
②  very tall
③  myfriend
④  atschool
【单选题】 -Whats your brother like? -He is________ .
①  adriver
②  very tall
③  myfriend
④  atschool
【单选题】 —Whats one fourth and a half, do you know?—Yes, its ______.
①  two sixths
②  three fourths
③  one three
④  three sixths
【单选题】 A: Id like a cup of coffee. B: [填空], is instant OK?
①  Im sure
②  No kidding
③  Sure I do
④  Of course
【单选题】 -Id like to buy that coat. -Im sorry. ___.
①  it sold
②  its selling
③  Its been sold
④  it had been sold
【判断题】 A: You havent changed your mind, have you? B: Yes, I havent.
①  正确
②  错误
随机题目
【单选题】 Java application中的主类需包含main方法,main方法的返回类型是什么?( )
①  int
②  float
③  double
④  void
【单选题】 下面哪一个是合法的数组声明和构造语句( )
①  int[] ages = [100];
②  int ages = new int[100];
③  int[] ages = new int[100];
④  int() ages = new int(100);
【单选题】 下列选项中关于java中super关键字的说法错误的是( )
①  super关键字是在子类对象内部指代其父类对象的引用
②  super关键字不仅可以指代子类的直接父类,还可以指代父类的父类
③  子类可以通过super关键字调用父类的方法
④  子类可以通过super关键字调用父类的属性
【单选题】 设有下面两个赋值语句: a = Integer.parseInt(“12”); b = Integer.valueOf(“12”).intValue(); 下述说法正确的是( )。
①  a是整数类型变量,b是整数类对象。
②  a是整数类对象,b是整数类型变量。
③  a和b都是整数类对象并且值相等。
④  a和b都是整数类型变量并且值相等。
【单选题】 在Java中,456属于( )类的对象。
①  int
②  String
③  Integer
④  Number
【单选题】 Java是从( )语言改进重新设计。
①  Ada
②  C++
③  Pasacal
④  BASIC
【单选题】 编译Java程序的命令是: ( )
①  appletviewer
②  javac
③  java
④  javadoc
【单选题】 下列关于基本数据类型的取值范围的描述中,正确的一个是( ) 。
①  byte 类型的取值范围是-128~128
②  boolean 类型的取值范围是真或假
③  char 类型的取值范围是 0~65536
④  short 类 型 的 取 值 范 围 是 -32767 ~ 32767
【单选题】 以下关于继承的叙述正确的是( )。
①  在Java中类只允许单一继承
②  在Java中一个类只能实现一个接口
③  在Java中一个类不能同时继承一个类和实现一个接口
④  在Java中接口只允许单一继承
【单选题】 以下声明合法的是( )
①  default String s;
②  public final static native int w( )
③  abstract double d;
④  abstract final double hyperbolicCosine( )