【判断题】【消耗次数:1】
A: Will this be charge or cash? B: It’s up to you.
正确
错误
参考答案:
复制
纠错
相关题目
【判断题】 A: Happy birthday to you! B: The same to you.
①  正确
②  错误
【单选题】 A: Happy New Year to you. B: [填空]
①  Yes,Im happy.
②  How about you
③  Fine,thank you.
④  The same to you.
【单选题】 A: Sorry to bother you. B: [填空].
①  Thats okay
②  No, you cant
③  Thats good
④  Dont mention it
【判断题】 A: Have a nice weekend! B: The same to you.
①  正确
②  错误
【单选题】 A:Happy birthday! Heres a gift for you. B: [填空].
①  Thats good. How much is it?
②  Wow, it is great! Thank you.
③  It must be very expensive.
④  You shouldnt have bought it.
【判断题】 A: I wish you success in the final exam. B: The same to you.
①  正确
②  错误
【判断题】 A: You look tired. Let us have a rest, will you? B: I agree with you.
①  正确
②  错误
【判断题】 答题说明:句子没有语法错误请选择“正确”,有语法错误请选择“错误”You shouldnt take anything doesnt belong to you.
①  正确
②  错误
【判断题】 A: Please pass me the magazine. B: Give it to you.
①  正确
②  错误
【判断题】 A: Would you like some more wine? B: A little more. Thank you.
①  正确
②  错误
随机题目
【单选题】 下面不是合法标识符的是( )
①  2ofUS
②  giveMes
③  whataQuiz
④  $d2000_
【单选题】 以下的变量定义语句中,合法的是( )
①  float _*5 = 123.456F;
②  byte $_b1 = 12345;
③  int _long_ = 123456L;
④  double d = Double.MAX_VALUE;
【单选题】 以下程序的运行结果是:( ) public class Increment{ public static void main(String args[]){ int c; c = 2; System.out.println(@@; System.out.println(c++); System.out.println(@@; } }
①  2 2 2
②  2 3 3
③  2 2 3
④  3 4 4
【单选题】 在编写 Java 程序时,如果不为类的成员变量定义初始值,Java 会给出它们的默认值,下 列说法中不正确的一个是( ) 。
①  byte 的默认值是 0
②  boolean 的默认值是 false
③  char 类型的默认值是’\0’
④  long 类型的默认值是 0.0L
【单选题】 为 AB 类定义一个无返回值的方法 f,使得使用类名就可以访问该方法,该方法头的 形式为( )。
①  abstract void (f )
②  public void (f )
③  final void (f )
④  static void (f )
【单选题】 下列关于运算符优先级的说法中,不正确的一个是( )
①  运算符按照优先级顺序表进行运算
②  同一优先级的运算符在表达式中都是按照从左到右的顺序进行运算的
③  同一优先级的运算符在表达式中都是按照从右到左的顺序进行运算的
④  括号可以改变运算的优先次序 5
【单选题】 下列关于for循环和while循环的说法中哪个是正确的?( )
①  while循环能实现的操作,for循环也都能实现
②  while循环判断条件一般是程序结果,for循环判断条件一般是非程序结果
③  两种循环任何时候都可替换
④  两种循环结构中都必须有循环体,循环体不能为空
【单选题】 下面关于类的说法,不正确的是( ) 。
①  类是同种对象的集合和抽象
②  类属于 Java 语言中的复合数据类型
③  类就是对象
④  对象是 Java 语言中的基本结构单位
【单选题】 以下哪个不是Java的原始数据类型( )
①  int
②  Boolean
③  float
④  char
【单选题】 在创建对象时必须( )
①  先声明对象,然后才能使用对象
②  先声明对象,为对象分配内存空间,然后才能使用对象
③  先声明对象,为对象分配内存空间,对对象初始化,然后才能使用对象
④  上述说法都对