位置:首页 > 题库频道 > 其它分类 > 计算机其它 > 二级二级JAVA2009年9月全国计算机等级考试二级笔试试卷Java语言程序设计

阅读下列程序片段Public void test(){Try{sayHello();system.out.println(“hello”);} catch (ArrayIndexOutOfBoundException e) {System.out.println(“ArrayIndexOutOfBoundException”);}catch(Exception e){System.out.println(“Exception”);}finally {System.out.println(“finally”);}}如果sayHello( )方法正常运行,则test( )方法的运行结果将是

发布时间:2024-07-09

A.Hello

B.ArrayIndexOutOfBondsException

C.ExceptionFinally

D.HelloFinally

试卷相关题目

  • 1自定义异常类的父类可以是

    A.Error

    B.VirtuaMachineError

    C.Exception

    D.Thread

    开始考试点击查看答案
  • 2下列变量名的定义中,符合Java命名约定的是

    A.fieldname

    B.super

    C.Intnum

    D.$number

    开始考试点击查看答案
  • 3为了将HelloApplet(主类名为HelloApplet.class)嵌入在greeting.html文件中,应该在下列greeting.html文件的横线处填入的代码是<HTML><HEAD><TITLE> Greetings </TITLE></HEAD><BODY><APPLET ______></APPLET></BODY></HTML>

    A.HelloApplet.class

    B.CODE=” HelloApplet.class”

    C.CODE=” HelloApplet.class” WIDTH=150 HEIGHT=25

    D.CODE=” HelloApplet.class” WIDTH=10 HEIGHT=10

    开始考试点击查看答案
  • 4在关闭浏览器时调用,能够彻底终止Applet并释放该Applet所有资源的方法是

    A.stop( )

    B.destroy( )

    C.paint( )

    D.start( )

    开始考试点击查看答案
  • 5在一个线程中调用下列方法,不会改变该线程运行状态的是

    A.yield方法

    B.另一个线程的join方法

    C.sleep方法

    D.一个对象的notify方法

    开始考试点击查看答案
  • 6为使Java程序独立于平台,Java虚拟机把字节码与各个操作系统及硬件

    A.分开

    B.结合

    C.联系

    D.融合

    开始考试点击查看答案
  • 7Java中的基本数据类型int在不同的操作系统平台的字长是

    A.不同的

    B.32位

    C.64位

    D.16位

    开始考试点击查看答案
  • 8String、StingBuffer都是______类,都不能被继承。

    A.static

    B.abstract

    C.final

    D.private

    开始考试点击查看答案
  • 9下列程序的功能是统计字符串中“array”的个数,在程序的空白处应填入的正确选项是public class FindKeyWords{public static void main(sring[] args){sting text=“ An array is a data structur that stores a collection of”+ “values of the same type . You access each individual value”+ “through an integer index . For example,if a is an array”+ “of inergers, then a[i] is the ith integer in the array.”;Int arrayCount =0;Int idex = -1;Sting arrarStr =”array”;Index = text.indexof(arrayStr);While(index          0) {++arrayCount;Index += arrayStr.length();Index = text.indexof(arrayStr,index);}System.out.println(“the text contains” + arrayCount + “arrays”);}}

    A.<

    B.=

    C.<=

    D.>=

    开始考试点击查看答案
  • 10构造方法名必须与______相同,它没有返回值,用户不能直接调用它,只能通过new调用。

    A.类名

    B.对象名

    C.包名

    D.变量名

    开始考试点击查看答案
返回顶部