【单选题】【消耗次数:1】
MayIgiveyouahand?--______________________.
Yes,I’dloveto
Thankyou.Youaresokind
Yes.giveme
I’mnotsure
参考答案:
复制
纠错
相关题目
【判断题】 A: Ought I to leave tomorrow? B: Yes, I think you ought to.
①  正确
②  错误
【单选题】 ---Whatasurprise!Youchangedyourhairstyle.---Yes,andanothersurprise.I’mgoingtogetmarriednextSaturday.
①  Oh,sorry,Inearlyforgotthat.
②  Really?Congratulations!
③  Howabouttime?I’llbebusythen.
④  That’sOK.Saturdayisthemostsuitabledayforanymarriage.
【判断题】 A: How old are you? B: Yes, I am.
①  正确
②  错误
【单选题】 Waiter: __________Customer: Yes.I’llhavesomesalad,roastbeef,andmashedpotatoes.
①  Areyoureadytoordernow?
②  Doyouwantthemenu?
③  Doyoulikethesefood?
④  Whatdoyouwanttoeat?
【判断题】 A: I think the Internet is very helpful. B: Yes, it is.
①  正确
②  错误
【判断题】 A: Hello! Are you John Smith? B: Yes, I am.
①  正确
②  错误
【判断题】 A: Be careful about crossing the road. B: Yes, I will.
①  正确
②  错误
【判断题】 A: Need you go yet? B: Yes, I need.
①  正确
②  错误
【单选题】 Waiter: __________Customer: Yes.I’llhavesomesalad,roastbeef,andmashedpotatoes.
①  Areyoureadytoordernow?
②  Doyouwantthemenu?
③  Doyoulikethesefood?
④  Whatdoyouwanttoeat?
【单选题】 Waiter: __________ .Customer: Yes.I’llhavesomesalad,roastbeef,andmashedpotatoes.
①  Areyoureadytoordernow?
②  Doyouwantthemenu?
③  Doyoulikethesefood?
④  Whatdoyouwanttoeat?
【单选题】 --Do you dance? --Yes, I do.--________?--Every weekend.
①  :How hard do you practice
②  :How much do you pay for it
③  :How often do you go dancing
④  :How long do you practice it
随机题目
【单选题】 如果容器组件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”);