【单选题】【消耗次数:1】
Which sentence is correct?
Hurrying to the classroom, no one was there.
Hurrying to the classroom, she saw nobody there.
参考答案:
复制
纠错
相关题目
【单选题】 Which sentence is correct?
①  On entering the classroom, the students stood up and said, Good morning!
②  On entering the classroom, the teacher was greeted by the students with Good morning!
【单选题】 Which sentence is correct?
①  Returning home from work, he saw supper waiting for him in the kitchen.
②  Returning home after work, supper was waiting for him in the kitchen.
【单选题】 Which sentence is correct?
①  Afer finishing her composition, she took up the translation exercise.
②  Afer finishing her composition, the translation exercise was taken up.
【单选题】 Which sentence is correct?
①  To look at a map, the importance of this new railway will be seen.
②  You have only to look at a map to see the importance of this new railway.
【单选题】 When I opened the door, I saw a girl _________ there.
①  standing
②  stood
【单选题】 She likes to spend time_______in the classroom.
①  draw
②  to draw
③  drawing
【单选题】 He ____ have left the campus, for I saw in the classroom just a minute ago
①  mustn’t
②  shouldn’t
③  couldn’t
④  oughtn’t
【单选题】 18.He told me he saw it , but _____fact he wasn’t really there.
①  in point of
②  at point of
③  about point of
④  from point of
【单选题】 Because he hadnt finished his assignment, so he continued working in the classroom. Is this a complete sentence?
①  Yes
②  No
【单选题】 Lets clean our classroom,________?
①  will you
②  dont we
③  shall we
④  do you
随机题目
【单选题】 下列流中哪一个使用了缓冲区技术( )?
①  BufferedOutputStream
②  FileInputStream
③  DataOutputStream
④  FileReader
【单选题】 定义外部类时不能用到的关键字是( )
①  final
②  public
③  protected
④  abstract
【单选题】 下列选项中不属于容器的一项是( )。
①  Window
②  Panel
③  FlowLayout
④  ScrollPane
【单选题】 如果容器组件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();
【单选题】 布局管理器可以管理构件的哪个属性( )。
①  大小
②  颜色
③  名称
④  字体