考试首页 | 考试用书 | 培训课程 | 模拟考场 | 考试论坛  
全国  |             |          |          |          |          |         
  当前位置:计算机等级 > 二级考试 > Java语言程序设计 > 模拟试题 > 文章内容
  

全国计算机等级考试二级java精选试题及答案七

中华IT学院   【 】  [ 2017年6月5日 ]

  二、填空题

  (1)对象串行化可以很容易地扩展成支持Java对象的 [1],它提供了对象从流中重建的补充方式.

  (2)Vector类的对象是通过capacity和capacityIncrement两个值来改变集合的容量,其中capacity表示集合最多能容纳的

  [2] ,capacityIncrement表示每次增加多少容量,不是一个一个增加.

  (3)下列程序的功能是判断某一年是否为闰年.请在横线处填入适当内容,使程序能够正确运行.

  import java.io.*;

  public class LeapYear{

  public static void main(String arge[])throws IOException{

  InputStreamReader ir;

  BufferdeReadwe in;

  ir=new InputStreamReader(System.in);

  in=new BufferedReader(ir);

  System.out.println(“输入年份是:”);

  String s= [3] ;

  int year=Integer.parseInt(s);

  if year % 4 = = 0 && year % 100! = 0 // year % 400 = =

  0)

  {

  System.out.println(""+year+"年是闰年.");

  }

  else

  {

  System.out.println(""+year+"年不是闰年..");

  }

  }

  }

  (4)下面程序对数组中每个元素赋值,然后按逆序输出.请在横线处填入适当内容,使程序能正常运行.

  import java.io.*;

  public class ArrayTest{

  public static void main(String args[]){

  int i;

  int a[] = new int[5];

  for(i=0;i

  a[i]=i;

  for( [4] ;i>=0;i- -)

  System.out.println("a["+i+"]="a[i]);

  }

  }

  (5) 下列程序的功能是:输入一个姓名,程序运行后,输出“姓名Welcome you!”.例如,输入“张三Welcome

  you !”.请在下面横线处填入正确的方法名,使程序可以正确运行.

  import java,awt,*;

  import java.awt.event.*;

  public class welcomenYou{

  public static void main(String args[])

  {

  new FrameInOut();

  }

  }

  class FrameInOut extends Frame implements ActionListener

  {

  Label prompt;

  TextField input,output;

  Button btnn;

  void FramInOut()

  {

  prompt=new Label("Please input your name");

  input=new TextField(10);

  output=new TextField(25);

  btnn=new Button("Class");

  [5] (new FlowLayout());

  add(prompt);

  add(input);

  add(output);

  add(btnn);

  input.addActionListener(this);

  btnn.addActionListener(this);

  setSize(300.200);

  show();

  }

  public void actionperformed(ActionEvent e)

  {

  if(e.getSource() = = input)

  output.setText(input.getText()+"Welcome you!");

  else

  {

  dispose();

  system.exit(0);

  }

  }

  }

分享到:
本文纠错】【告诉好友】【打印此文】【返回顶部
将考试网添加到收藏夹 | 每次上网自动访问考试网 | 复制本页地址,传给QQ/MSN上的好友 | 申请链接 | 意见留言 TOP
关于本站  网站声明  广告服务  联系方式  站内导航  考试论坛
Copyright © 2007-2013 中华考试网(Examw.com) All Rights Reserved