位置:首页 > 题库频道 > 其它分类 > 计算机其它 > Java认证Java认证Java程序员Java练习题

手机扫码关注微信
随时随地刷题

Java认证Java认证Java程序员Java练习题

推荐等级:
  • 卷面总分:0分
  • 试卷类型:模拟试题
  • 测试费用:¥5.00
  • 试卷答案:
  • 练习次数:0
  • 作答时间:0分钟

试卷介绍

试卷预览

  • 91下列流中哪一个使用了缓冲区技术?

    A.FileInputStream

    B.BufferedOutputStream

    C.FileReader

    D.DataOutputStream

    开始考试练习点击查看答案
  • 92下列哪一个是Java系统的标准输入流对象、

    A.System.err

    B.System.out

    C.System.in

    D.System.exit

    开始考试练习点击查看答案
  • 93使用哪一个类可以实现在文件的任一个位置读写一个记录、

    A.BufferedInputStream

    B.FileReader

    C.RandomAccessFile

    D.FileWriter

    开始考试练习点击查看答案
  • 94在读字符文件Employee.dat时,使用该文件作为参数的类是:

    A.DataOutoutStream

    B.BufferReader

    C.DataInputStream

    D.FileInputStream

    开始考试练习点击查看答案
  • 95能读入字节数据进行Java基本数据类型判断过滤的类是(    )。

    A.BufferedInputStream

    B.FileReader

    C.FileInputStream

    D.DataInputStream

    开始考试练习点击查看答案
  • 96运行以下程序段将输出什么、class E{public void oneMethod() throws  ArrayIndexOutOfBoundsException{ throw new ArrayIndexOutOfBoundsException();}public static void main (String args[]){try { new E().oneMethod(); }catch (ArrayIndexOutOfBoundsException e){ System.out.println("condition 2"); }catch(Exception e){ System.out.println("condition 3"); }finally{ System.out.println("finally"); }}}

    A.编译错误

    B.condition 3finally

    C.condition 2finally

    D.condition 2

    开始考试练习点击查看答案
  • 97给出以下代码,请问该程序的运行结果是什么?class E{public static void main(String args[]){try{  int i = 5/0; }catch(Exception e){System.out.println("catch Exception");}catch(ArithmeticException e){System.out.println("Catch ArithmeticException");}finally{System.out. println("Catch Finally");}}}请选择一个正确答案:

    A.打印输出Catch ArithmeticException和Catch Finally

    B.打印输出Catch Finally

    C.代码编译失败

    D.打印输出Catch ArithmeticException

    E.运行期异常

    开始考试练习点击查看答案
  • 98有如下代码段:1)2) { if(unsafe()){.......…}3) else if(safe()){......…}4) }其中,方法unsafe() 将抛出IOException, 请问可将以下哪项填入第1行?

    A.public void methodName() throws IOException

    B.public void methodName()

    C.public void methodName() throw IOException

    D.public IOException methodName()

    开始考试练习点击查看答案
  • 99运行以下程序段将输出什么、class E{public static void main (String args[]){try { throw new ArrayIndexOutOfBoundsException();System.out.println("condition 1");}catch (ArrayIndexOutOfBoundsException e){ System.out.println("condition 2"); }finally{ System.out.println("finally"); }}}

    A.condition 1condition 2finally

    B.编译错误

    C.condition 2

    D.condition 2finally

    开始考试练习点击查看答案
  • 100给出以下代码,请问该程序的运算结果是 什么?class Example{public static void main(String args[]){System.out.println(3/0);}}请选择一个正确答案:

    A.运行期异常

    B.Java.lang,ArithmeticException 异常抛出

    C.打印输出Infinity

    D.编译失败

    开始考试练习点击查看答案
 10/29   首页 上一页 8 9 10 11 12 13 下一页 尾页
返回顶部