【单选题】【消耗次数:1】
The disappearance of her paper has never been _____.
counted for
looked up
accounted for
checked up
参考答案:
复制
纠错
相关题目
【判断题】 Dashan, who ___has been learning___ crosstalk, the Chinese comedic tradition, for decades, wants to mix it up with the Western stand-up tradition.
①  正确
②  错误
【单选题】 16. I have been climbing _____ Alps, But I never managed to get up_____ Mont Blanc.
①  the, /
②  . /, the
③  The, the
④  The, a
【单选题】 She has always been quick to pick things up, doing ( ) well in school without really trying.
①  passably
②  passable
③  passenger@passage
【判断题】 判断线上的内容是否正确:Dashan, who ___has been learning___ crosstalk, the Chinese comedic tradition, for decades, wants to mix it up with the Western stand-up tradition.
①  正确
②  错误
【单选题】 At her word she stood up and walked away, stopping at the window to pull back the curtain and _____.
①  look round
②  look out
③  look up
④  look on
【单选题】 At her word she stood up and walked away, stopping at the window to pull back the curtain and ____.
①  look round
②  look out
③  look up
④  look on
【单选题】 Get up! Mary. Tom has _____called you three times this morning.
①  yet
②  already
③  never
④  seldom
【单选题】 Decades ago there was a time ______ people believed that the natural sources would never be used up.
①  which
②  when
③  with which
④  whenever
【单选题】 I am going away. or not she will go is up to her to decide.
①  if
②  which
③  whether
④  that
【单选题】 2. The Olympic Committee has drawn up strict rules for the sportsmen.
①  go by
②  go on
③  go over
④  go after
随机题目
【单选题】 设有下列数组定义语句: int a[] = {1, 2, 3}; 则对此语句的叙述错误的是( )
①  A.定义了一个名为 a 的一维数组
②  a 数组有 3 个元素
③  a 数组元素的下标为 1~3
④  数组中每个元素的类型都是整数
【单选题】 在类中若要处理 ActionEvent 事件,则该类需要实现的接口是( )。
①  Runnable
②  ActionListener
③  Serializable
④  Event
【单选题】 方法resume()负责恢复哪些线程的执行( )
①  通过调用stop()方法而停止的线程。
②  通过调用sleep()方法而停止的线程。
③  通过调用wait()方法而停止的线程。
④  通过调用suspend()方法而停止的线程。
【单选题】 以下对自定义异常描述正确的是( )
①  自定义异常必须继承Exception
②  自定义异常可以继承自Error
③  自定义异常可以更加明确定位异常出错的位置和给出详细出错信息
④  程序中已经提供了丰富的异常类,使用自定义异常没有意义
【单选题】 自定义异常时,可以通过对下列哪一项进行继承?( )
①  Error 类
②  Applet 类
③  Exception 类及其子类
④  AssertionError 类
【单选题】 下列说法中,错误的一项是( )。
①  线程就是程序
②  线程是一个程序的单个执行流
③  多线程是指一个程序的多个执行流
④  多线程用于实现并发
【单选题】 运行下面程序时,会产生什么异常?( ) public class X7_1_4 { public static void main(String[] args) { int x = 0; int y = 5/x; int[] z = { 1,2,3,4 } ; int p = z[4]; } }
①  ArithmeticException
②  NumberFormatException
③  ArrayIndexOutOfBoundsException
④  IOException
【单选题】 下列说法中错误的一项是( )。
①  MouseAdapter 是鼠标运动适配器
②  WindowAdapter 是窗口适配器
③  ContainerAdapter 是容器适配器
④  KeyAdapter 是键盘适配器
【单选题】 已知有定义:String s=I love,下面哪个表达式正确?( )
①  s += you;
②  char c = s[1];
③  int len = s.length;
④  String s = s.toLowerCase();
【单选题】 下列代码中给出正确的在方法体内抛出异常的是( )
①  new throw Exception( );
②  throw new Exception( );
③  throws IOException();
④  throws IOException;