【单选题】【消耗次数:1】
There [填空] a box of candies on the table.
are
is
have
were
参考答案:
复制
纠错
相关题目
【单选题】 They are young carry the box onto the table.
①  enough; too
②  too;to
③  so; to
④  very; to
【单选题】 13.They are ______ young _____ carry the box onto the table.
①  enough; too
②  too, to
③  so; to
④  very; to
【单选题】 There were some ____ flowers on the table.
①  artificial
②  unnatural
③  false
④  unreal
【单选题】 We looked for a table to sit down, but they were all ____.
①  reserved for
②  engaged in
③  used up
④  taken up
【单选题】 There is [填空] on the table.
①  two cups of water
②  some waters
③  some water
④  any waters
【单选题】 There [填空] some chopsticks on the table.
①  are
②  is
③  have
④  was
【单选题】 What’s [填空] the box?
①  in
②  on
③  at
④  for
【单选题】 How [填空] bread is there in the box?
①  much
②  many
③  long
④  about
【单选题】 In a room above the store, where a party __________,some workers were busily setting the table.
①  was to be held
②  has been held
③  will be held
④  is being held
【单选题】 The box is made [填空] wood.
①  of
②  on
③  with
④  in
随机题目
【单选题】 下列关于 Thread 类的线程控制方法的说法中错误的一项是( )。
①  线程可以通过调用 sleep()方法使比当前线程优先级低的线程运行
②  线程可以通过调用 yield()方法使和当前线程优先级一样的线程运行
③  线程的 sleep()方法调用结束后,该线程进入运行状态
④  若没有相同优先级的线程处于可运行状态,线程调用 yield()方法时,当前线程将继 续执行
【单选题】 FilterOutputStream是BufferedOutputStream、DataOutputStream及PrintStream的父类,以下哪个类可能是FilterOutputStream构造函数的参数类型?
①  OutputStream
②  File
③  InputStream
④  BufferedOutputStream
【单选题】 getCustomerInfo()方法如下,try中可以捕获三种类型的异常,如果在该方法运行中产生了一个IOException,将会输出什么结果( ) public void getCustomerInfo() { try { // do something that may cause an Exception } catch (java.io.FileNotFoundException ex){ System.out.print(FileNotFoundException!); } catch (java.io.IOException ex){ System.out.print(IOException!); } catch (java.lang.Exception ex){ System.out.print(Exception!); } }
①  IOException!
②  IOException!Exception!
③  FileNotFoundException!IOException!
④  FileNotFoundException!IOException!Exception!
【单选题】 下列程序从标准输入设备读入一个字符, 然后再输出到显示器, 选择正确的一项填入“//x” 处,完成要求的功能( ) 。 import java.io.*; public class X8_1_4 { public static void main(String[] args) { char ch; try{ //x System.out.println(ch); } catch(IOException e) { e.printStackTrace(); } } }
①  ch = System.in.read();
②  ch = (char)System.in.read();
③  ch = (char)System.in.readln();
④  ch = (int)System.in.read();
【单选题】 对应 try 和 catch 子句的排列方式,下列哪一项是正确的?( )
①  子类异常在前,父类异常在后
②  父类异常在前,子类异常在后
③  只能有子类异常
④  父类和子类不能同时出现在 try 语句块中
【单选题】 新建一个流对象,下面哪个选项的代码是错误的?( )
①  new BufferedWriter(new FileWriter(a.txt));
②  new BufferedReader(new FileInputStream(a.dat));
③  new GZIPOutputStream(new FileOutputStream(a.zip));
④  new ObjectInputStream(new FileInputStream(a.dat));
【单选题】 以下描述不正确的有( )
①  try块不可以省略
②  可以使用多重catch块
③  finally块可以省略
④  catch块和finally块可以同时省略
【单选题】 下列描述了 Java 语言通过面相对象的方法进行异常处理的好处,请选出不在这些好处范 围之内的一项( )
①  把各种不同的异常事件进行分类,体现了良好的继承性
②  把错误处理代码从常规代码中分离出来
③  可以利用异常处理机制代替传统的控制流程
④  这种机制对具有动态运行特性的复杂程序提供了强有力的支持
【单选题】 使用哪一个类可以实现在文件的任一个位置读写一个记录( )?
①  BufferedInputStream
②  RandomAccessFile
③  FileWriter
④  FileReader
【单选题】 在Java中,( )类可用于创建链表数据结构的对象。
①  LinkedList
②  ArrayList
③  Collection
④  HashMap