首页>计算机等级考试>历年真题>正文
2010年3月计算机等级考试二级Java笔试试题(2)

www.zige365.com 2010-5-14 11:34:11 点击:发送给好友 和学友门交流一下 收藏到我的会员中心
 (11)Java中定义常量的保留字是

  A)const

  B)final

  C)finally

  D)native

  (12)下列有关Java布尔类型的描述中,正确的是

  A)一种基本的数据类型,它的类型名称为boolean

  B)用int表示类型

  C)其值可以赋给int类型的变量

  D)有两个值,1代表真,0代表假

  (13)Java中所有类的父类是

  A)Father

  B)Lang

  C)Exception

  D)Object

  (14)下列程序段的输出结果是

  int data=0;

  char k='a',p='f';

  data=p-k;

  system.out.println(data);

  A)0

  B)a

  C)f

  D)5

  (15)下列数中为八进制的是

  A)27

  B)0x25

  C)026

  D)028

  (16)下列方法中,不属于Throwable类的方法是

  A)printMessage

  B)getMessage

  C)toString

  D)fillStackTrace

  (17)下列程序的输出结果是

  public class Test{

  public static void main(String[] args){

  int [] array={2,4,6,8,10};

  int size=6;

  int result=-1;

  try{

  for{int i=0;i

  if(array[i]==20) result=i;

  }

  catch(ArithmeticException e){

  System.out.println("Catch---1");

  catch(ArrayIndexOutOfBoundsException e){

  System.out.println("Catch---2");

  catch(Exception e){

  System.out.println("Catch---3");

  }

  }

  A)Catch---1

  B)Catch---2

  C)Catch---3

  D)以上都不对

  (18)下列包中,包含JOptionPane类的是

  A)javax.swing

  B)java.lang

  C)java.util

  D)java.applet

  (19)下列选项中,与成员变量共同构成一个类的是

  A)关键字

  B)方法

  C)运算符

  D)表达式

  (20)下列程序的功能是将一个整数数组写入二进制文件。在程序的下划线处应填入的选项是

  import java.io.*;

  public class XieShuzu{

  public static void main(String[] a){

  int [] myArray={10,20,30,40};

  try{

  DataOutputStream dos=

  new DataOutputStream(new FileOutputStream("ints.dat"));

  for(int i=0;i

  dos. _____(myArray[i]);

  dos.close();

  System.out.println("已经将整数数组写入二进制文件:ints.dat");

  }catch(IOException ioe)

  {System.out.println("IO Exception");}

  }

  }

  A)writeArray

  B)writeByte

  C)writeInt

  D)writeDouble

我要投稿 新闻来源: 编辑: 作者:
相关新闻
2010年3月计算机等级考试二级Java笔试试题(1)
2010年3月计算机等级考试二级C++笔试试题(7)
2010年3月计算机等级考试二级C++笔试试题(6)
2010年3月计算机等级考试二级C++笔试试题(5)
2010年3月计算机等级考试二级C++笔试试题(4)