【简答题】【消耗次数:1】
Direction: Fill in the blanks with the words given below. Change the form if necessary.[hug; flatten; ancestor; amazing; solemnly; comfort; awful; desperately; uproot; cousin]1. The conference was[填空1]opened yesterday.
参考答案:
复制
纠错
相关题目
【简答题】 Direction: Fill in the blanks with the words given below. Change the form if necessary.[hug; flatten; ancestor; amazing; solemnly; comfort; awful; desperately; uproot; cousin]5.[填空1]him, for he is sad.
【简答题】 Direction: Fill in the blanks with the words given below. Change the form if necessary.[hug; flatten; ancestor; amazing; solemnly; comfort; awful; desperately; uproot; cousin]4.They resisted[填空1]and won the battle in the end.
【简答题】 Direction: Fill in the blanks with the words given below. Change the form if necessary.[hug; flatten; ancestor; amazing; solemnly; comfort; awful; desperately; uproot; cousin]2. Dont hate the new roommate. Hes my[填空1].
【填空题】 Direction: Fill in the blanks with the words given below. Change the form if necessary.[hug; flatten; ancestor; amazing; solemnly; comfort; awful; desperately; uproot; cousin]9. The government were to[填空1]all its troops from the region.
【简答题】 Direction: Fill in the blanks with the words given below. Change the form if necessary.[hug; flatten; ancestor; amazing; solemnly; comfort; awful; desperately; uproot; cousin]7. Extending your tongue helps[填空1]the back of your tongue.
【简答题】 Direction: Fill in the blanks with the words given below. Change the form if necessary.[hug; flatten; ancestor; amazing; solemnly; comfort; awful; desperately; uproot; cousin]8. I asked if he employed someone to do this[填空1]job for him.
【简答题】 Direction: Fill in the blanks with the words given below. Change the form if necessary.[hug; flatten; ancestor; amazing; solemnly; comfort; awful; desperately; uproot; cousin]3. Whether its a dead[填空1]or God, whatever supernatural agent it is, if you think theyre watching you, your behavior is going to be affected.
【简答题】 Direction: Fill in the blanks with the words given below. Change the form if necessary.[vain; frame; curve; twist; comb; collapse; scatter; scratch; rebuild; harsh]1. Never overtake on a[填空1].
【简答题】 Direction: Fill in the blanks with the words given below. Change the form if necessary.[privilege; component; stagnant; entangle; superficial; arresting; expound; penetrating; indulge; click]1. Their national economy is[填空1].
【简答题】 Direction: Fill in the blanks with the words given below. Change the form if necessary.[dodge; mean; tease; disability; regular; bonus; proclaim; universal]3. That is a[填空1]trick!
随机题目
【单选题】 在类中若要处理 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;
【单选题】 Container 是下列哪一个类的子类( )。
①  Graphics
②  Window
③  Applet
④  Component