【判断题】【消耗次数:1】
A: How do you do? Pleased to meet you. B: How do you do? Pleased to meet you, too.
正确
错误
参考答案:
复制
纠错
相关题目
【单选题】 How do you do? Glad to meet you._________
①  Fine. How are you?
②  How do you do? Glad to meet you, too.
③  How are you? Thank you!
④  Nice. How are you?
【单选题】 A: How do you do? B: [填空]
①  Fine, thank you.
②  How do you do?
③  Not too bad.
④  Very well.
【判断题】 A: How do you do? B: Fine, thank you, and you?
①  正确
②  错误
【单选题】 Susan: How do you do, Mrs. White.Mrs. White: How do you do, Susan. I’m glad you can join us. __________
①  Dont be shy.
②  Please feel natural.
③  Make yourself at home.
④  Feel all right here.
【单选题】 Susan: How do you do, Mrs. White.Mrs. White: How do you do, Susan. I’m glad you can join us. __________
①  Don’t be shy.
②  Please feel natural.
③  Make yourself at home.
④  Feel all right here.
【判断题】 A: Hello, Im David. Nice to meet you. B: Nice to meet you, too. Im Lee.
①  正确
②  错误
【多选题】 A: How often do you usually exercise?B:_______________ .
①  Every morning
②  Once a day
③  Twice a week
④  Very often
【单选题】 A: How often do you go swimming? B: [填空].
①  The day before yesterday
②  I will go swimming tomorrow
③  Every second day
④  Ive been swimming for a year
【单选题】 How [填空] rice do you need?
①  much
②  many
③  long
④  about
【判断题】 A: Let me introduce myself. Im Green. B: Pleased to meet you.
①  正确
②  错误
随机题目
【单选题】 当单击鼠标或拖动鼠标时,触发的事件是( )。
①  KeyEvent
②  ActionEvent
③  ItemEvent
④  MouseEvent
【单选题】 在通常情况下, 下列哪个类的对象可以作为BufferedReader类构造方法的参数( )。
①  PrintStream
②  FileInputStream
③  InputStreamReader
④  FileReader
【单选题】 不属于java.io包中的接口的是( )
①  DataInput
②  DataOutput
③  DataInputStream
④  ObjectInput
【单选题】 下列关于 Thread 类的线程控制方法的说法中错误的一项是( )。
①  线程可以通过调用 sleep()方法使比当前线程优先级低的线程运行
②  线程可以通过调用 yield()方法使和当前线程优先级一样的线程运行
③  线程的 sleep()方法调用结束后,该线程进入运行状态
④  若没有相同优先级的线程处于可运行状态,线程调用 yield()方法时,当前线程将继 续执行
【单选题】 FilterOutputStream是BufferedOutputStream、DataOutputStream及PrintStream的父类,以下哪个类可能是FilterOutputStream构造函数的参数类型?
①  OutputStream
②  File
③  InputStream
④  BufferedOutputStream
【单选题】 getCustomerInfo()方法如下,try中可以捕获三种类型的异常,如果在该方法运行中产生了一个IOException,将会输出什么结果( ) public void getCustomerInfo() { try { // do something that may cause an Exception } catch (java.io.FileNotFoundException ex){ System.out.print(FileNotFoundException!); } catch (java.io.IOException ex){ System.out.print(IOException!); } catch (java.lang.Exception ex){ System.out.print(Exception!); } }
①  IOException!
②  IOException!Exception!
③  FileNotFoundException!IOException!
④  FileNotFoundException!IOException!Exception!
【单选题】 下列程序从标准输入设备读入一个字符, 然后再输出到显示器, 选择正确的一项填入“//x” 处,完成要求的功能( ) 。 import java.io.*; public class X8_1_4 { public static void main(String[] args) { char ch; try{ //x System.out.println(ch); } catch(IOException e) { e.printStackTrace(); } } }
①  ch = System.in.read();
②  ch = (char)System.in.read();
③  ch = (char)System.in.readln();
④  ch = (int)System.in.read();
【单选题】 对应 try 和 catch 子句的排列方式,下列哪一项是正确的?( )
①  子类异常在前,父类异常在后
②  父类异常在前,子类异常在后
③  只能有子类异常
④  父类和子类不能同时出现在 try 语句块中
【单选题】 新建一个流对象,下面哪个选项的代码是错误的?( )
①  new BufferedWriter(new FileWriter(a.txt));
②  new BufferedReader(new FileInputStream(a.dat));
③  new GZIPOutputStream(new FileOutputStream(a.zip));
④  new ObjectInputStream(new FileInputStream(a.dat));
【单选题】 以下描述不正确的有( )
①  try块不可以省略
②  可以使用多重catch块
③  finally块可以省略
④  catch块和finally块可以同时省略