【单选题】【消耗次数:1】
We’ll go out as soon as I’ve ____ the kitchen.
sent for
cleaned up
done with
worked out
参考答案:
复制
纠错
相关题目
【判断题】 A: Shall we go out for a picnic tomorrow then? B: Its all up to you
①  正确
②  错误
【单选题】 Peter: It’s such a nice warm day. I think I’ll go out for a walk. Dave: ____
①  It is warm to take a walk.
②  Yes. It is warm today.
③  I’d like to join you.
④  Yes. Everybody likes this weather.
【单选题】 ___ is often the case, we have worked out the production plan.
①  Which
②  When
③  What
④  As
【单选题】 27. If it ____ tomorrow, we will not go out.
①  rains
②  will rain
③  is going to rain
④  is to rain
【单选题】 A: Shall we go out for dinner tonight? B: [填空].
①  You are right
②  Have a nice time
③  Thats a good idea
④  My pleasure
【单选题】 I am[填空]?tired?that I don’t want to go out.
①  very
②  too
③  so
④  indeed
【单选题】 ______,the boy worked out the problem quickly.
①  As clever he is
②  Clever as he is
③  He is as clever
④  As he is clever
【单选题】 Can you go out with us for dinner this evening?
①  No, I already have plans
②  Thanks a lot but I’m busy tonight
③  No, I really don’t like being with you
④  I’m ill, so I shouldn’t go out for dinner
【判断题】 Lets go out for a walk.
①  正确
②  错误
【单选题】 We’ll _____you as soon as we have any further information.
①  notify
②  signify
③  communicates
④  impart
随机题目
【单选题】 如果容器组件p的布局是BorderLayout,则在p的下边中添加一个按钮b,应该使用的语句是( )
①  p.add
②  ;
③  p.add b,North);
④  p.add b,South);
⑤  add p,North);
【单选题】 下列说法中错误的一项是( )。
①  构件是一个可视化的能与用户在屏幕上交互的对象
②  构件能够独立显示出来
③  构件必须放在某个容器中才能正确显示
④  一个按钮可以是一个构件
【单选题】 Thread 类定义在下列哪个包中( )。
①  java.io
②  java.lang
③  java.util
④  java.awt
【单选题】 取ResutlSet对象rst的第一行数据,以下正确的是( )
①  rst.hashNext();
②  rst.next();
③  rst.first();
④  rst.nextRow();
【单选题】 下列程序实现了在当前包dir815下新建一个目录subDir815,选择正确的一项填入程序的 横线处,使程序符合要求( ) 。 package dir815; import java.io.*; public class X8_1_5 { public static void main(String[] args) { char ch; try{ File path = ; if(path.mkdir()) System.out.println(successful!); 48 } catch(Exception e) { e.printStackTrace(); } } }
①  new File(subDir815);
②  new File(dir815.subDir815);
③  new File(dir815\subDir815);
④  new File(dir815/subDir815);
【单选题】 要从文件file.dat中读出第10个字节到变量c中,下列哪个方法适合? ( )
①  FileInputStream in=new FileInputStream(file.dat); in.skip(9); int c=in.read();
②  FileInputStream in=new FileInputStream(file.dat); in.skip(10); int c=in.read();
③  FileInputStream in=new FileInputStream(file.dat); int c=in.read();
④  RandomAccessFile in=new RandomAccessFile(file.dat); in.skip(9); int c=in.readByte();
【单选题】 布局管理器可以管理构件的哪个属性( )。
①  大小
②  颜色
③  名称
④  字体
【单选题】 下列说法中错误的是( )。
①  同一个对象可以监听一个事件源上多个不同的事件
②  一个类可以实现多个监听器接口
③  一个类中可以同时出现事件源和事件处理者
④  一个类只能实现一个监听器接口
【单选题】 一个线程在任何时刻都处于某种线程状态(thread state),例如运行状态、阻塞状态、就绪状态等。一个线程可以由选项中的哪种线程状态直接到达运行状态?( )
①  死亡状态
②  阻塞状态(对象lock池内)
③  阻塞状态(对象wait池内)
④  就绪状态
【单选题】 在Java中,以下代码( )正确地创建了一个InputStreamReader对象。
①  InuptStreamReader(new FileInputStream(“1.dat”));
②  InuptStreamReader(new FileReader(“1.dat”));
③  InuptStreamReader(new BufferReader(“1.dat”));
④  InuptStreamReader (“1.dat”);