【计算机类职业资格】计算机二级(JAVA)上机考试5及答案解析.doc

上传人:bonesoil321 文档编号:1337948 上传时间:2019-10-17 格式:DOC 页数:2 大小:34KB
下载 相关 举报
【计算机类职业资格】计算机二级(JAVA)上机考试5及答案解析.doc_第1页
第1页 / 共2页
【计算机类职业资格】计算机二级(JAVA)上机考试5及答案解析.doc_第2页
第2页 / 共2页
亲,该文档总共2页,全部预览完了,如果喜欢就下载吧!
资源描述

1、计算机二级(JAVA)上机考试 5 及答案解析(总分:-3.00,做题时间:90 分钟)1.基本操作题 下列程序中,要求计算 1+2+3+100 的值,并显示计算结果。请将程序补充完整。 程序运行结果如下: 5050 public class ex6_1 public static void main(String args) ex6_1 obj6_1=new ex6_1(); obj6_1.method6_1(); public void method6_1() int sum; ; for(int i=1;i=100;i+) ; ; (分数:-1.00)_2.简单应用题 请完成下列 Jav

2、a 程序:创建一个下拉式菜单,菜单项包括 3 个 CheckboxMenuItem(复选框),一条分割线和一个 Exit 项。要求打开或关闭复选框时,确定是哪个被切换,是开还是关,并输出它的状态;选择 Exit 项能够退出程序。注意:请勿改动 main()主方法和其他已有语句内容,仅在下划线处填入适当的语句。 程序运行结果如下: (分数:-1.00)_3.综合应用题 下面是一个 Applet 程序,其功能是建立 2 个文本区域,一个为编辑区,一个为只读区;建立 2 个按钮,一个实现将编辑区中被鼠标选定的文本内容拷贝到只读区中,一个实现将只读区的全部文本内容清空。请改正程序中的错误(有下划线的语

3、句),使程序能输出正确的结果。注意:不改动程序的结构,不得增行或删行。 程序运行结果如下: (分数:-1.00)_计算机二级(JAVA)上机考试 5 答案解析(总分:-3.00,做题时间:90 分钟)1.基本操作题 下列程序中,要求计算 1+2+3+100 的值,并显示计算结果。请将程序补充完整。 程序运行结果如下: 5050 public class ex6_1 public static void main(String args) ex6_1 obj6_1=new ex6_1(); obj6_1.method6_1(); public void method6_1() int sum;

4、; for(int i=1;i=100;i+) ; ; (分数:-1.00)_正确答案:(sum=0 sum+=i 或者 sum=sum+i System.out.println(sum) )解析:本题主要考查整型变量的初始化、累加和输出操作,以及 for 循环语句用法。解题关键是熟悉整型变量的基本操作,熟悉并能利用 for 循环语句解决一些简单的数学问题。本题中,第 1 个空,需要对变量sum 进行初始化,否则以后进行累加时会产生错误;第 2 个空,填入累加的表达式;第 3 个空,调用基本I/O 方法将运算结果显示出来。2.简单应用题 请完成下列 Java 程序:创建一个下拉式菜单,菜单项包

5、括 3 个 CheckboxMenuItem(复选框),一条分割线和一个 Exit 项。要求打开或关闭复选框时,确定是哪个被切换,是开还是关,并输出它的状态;选择 Exit 项能够退出程序。注意:请勿改动 main()主方法和其他已有语句内容,仅在下划线处填入适当的语句。 程序运行结果如下: (分数:-1.00)_正确答案:(ItemEvent.SELECTED System.out.println(“ SELECTED“) )解析:本题主要考查图形用户界面以及事件监听器的使用以及 case 语句的使用。解题关键是熟练掌握Menu, MenuBar, MenuItem, CheckbokMen

6、uItem 等构件的简单应用,ItemListener 和 ActionListener 的简单应用以及 case 语句的使用。本题中,要求明白 case 语句二个分支的含义,就是要判断复选框的状态是开还是关,然后输出状态信息,第 1 个空,判断某个复选框选项是否打开,如果打开,就在第 2 个空处将信息输出。3.综合应用题 下面是一个 Applet 程序,其功能是建立 2 个文本区域,一个为编辑区,一个为只读区;建立 2 个按钮,一个实现将编辑区中被鼠标选定的文本内容拷贝到只读区中,一个实现将只读区的全部文本内容清空。请改正程序中的错误(有下划线的语句),使程序能输出正确的结果。注意:不改动程

7、序的结构,不得增行或删行。 程序运行结果如下: (分数:-1.00)_正确答案:(tArea2.setEditable( false ) tArea2.setText(tArea1.getSelectedText() tArea2.setText( “ ) )解析:本题主要考查 Applet 窗口、其事件处理机制以及对文本区域的相关操作。解题关键是熟悉TextArea 的基本方法,如 setEditable()方法就是用来确定不用的编辑模式的一个重要的方法,并且需要明确题目要求的 2 个文本区域的区别和联系,根据不同的事件,来对这两个文本区域进行操作。本题中,第 1 个空,将第 2 个文本区域 tArea2 的编辑模式设定为只读,注意参数为 false,因为默认的编辑模式设定为可编辑的,用 true 表示,所以参数应该是 false;第 2 个空,响应点击 Copy 按钮事件的语句应该将第 1 个文本区 tArea1 的被选择的文本内容取出放入第二个文本区 tArea2 中;第 3 个空,响应点击Clear 按钮事件的语句应该将第 2 个文本区 tArea2 中的所有文本内容清空。

展开阅读全文
相关资源
猜你喜欢
  • GOST 9 023-1974 Unified system of corrosion and ageing protection Oil fuels Method of laboratory testing biostability of fuels protected by antimicrobe additives《ЕСЗКС 石油燃料 使用有抗微生物.pdf GOST 9 023-1974 Unified system of corrosion and ageing protection Oil fuels Method of laboratory testing biostability of fuels protected by antimicrobe additives《ЕСЗКС 石油燃料 使用有抗微生物.pdf
  • GOST 9 024-1974 Unified system of corrosion and ageing protection Rubbers Methods of heat ageing stability determination《腐蚀和老化联合防护系统 橡胶 热老化稳定性测定法》.pdf GOST 9 024-1974 Unified system of corrosion and ageing protection Rubbers Methods of heat ageing stability determination《腐蚀和老化联合防护系统 橡胶 热老化稳定性测定法》.pdf
  • GOST 9 026-1974 Unified system of corrosion and ageing protection Vulcanized rubber Method of accelerated determination to ozone and thermolightozone resistance《腐蚀和老化联合防护系统 硫化橡胶 臭氧.pdf GOST 9 026-1974 Unified system of corrosion and ageing protection Vulcanized rubber Method of accelerated determination to ozone and thermolightozone resistance《腐蚀和老化联合防护系统 硫化橡胶 臭氧.pdf
  • GOST 9 029-1974 Unified system of corrosion and ageing protection Vulcanized rubbers Method of testing of resistance to ageing under static deformation of compression《腐蚀和老化联合防护系统 硫.pdf GOST 9 029-1974 Unified system of corrosion and ageing protection Vulcanized rubbers Method of testing of resistance to ageing under static deformation of compression《腐蚀和老化联合防护系统 硫.pdf
  • GOST 9 030-1974 Unified system of corrosion and ageing protection Vulcanized rubbers Method of testing resistance to attack by corrosive media in limp state《腐蚀和老化联合防护系统 硫化橡胶 无弹性状态下.pdf GOST 9 030-1974 Unified system of corrosion and ageing protection Vulcanized rubbers Method of testing resistance to attack by corrosive media in limp state《腐蚀和老化联合防护系统 硫化橡胶 无弹性状态下.pdf
  • GOST 9 031-1974 Unified system of corrosion and ageing protection Anode-oxide coatings for semifinished products made out of aluminium and alloys General requirements and methods o.pdf GOST 9 031-1974 Unified system of corrosion and ageing protection Anode-oxide coatings for semifinished products made out of aluminium and alloys General requirements and methods o.pdf
  • GOST 9 032-1974 Unified system corrosion and ageing protection Coatings of lacguers and paints Classification and designations《腐蚀和老化联合防护系统 亮漆和油漆涂层 分类和名称》.pdf GOST 9 032-1974 Unified system corrosion and ageing protection Coatings of lacguers and paints Classification and designations《腐蚀和老化联合防护系统 亮漆和油漆涂层 分类和名称》.pdf
  • GOST 9 039-1974 Unified system of corrosion and ageing protection Corrosive aggressiveness of atmosphere《ЕСЗКС 大气的锈蚀腐蚀性》.pdf GOST 9 039-1974 Unified system of corrosion and ageing protection Corrosive aggressiveness of atmosphere《ЕСЗКС 大气的锈蚀腐蚀性》.pdf
  • GOST 9 040-1974 Unified system of corrosion and ageing protection Calculated and experimental method for accelerated test of corrosion lossen in atmospheric conditions《ЕСЗКС 金属及合金 .pdf GOST 9 040-1974 Unified system of corrosion and ageing protection Calculated and experimental method for accelerated test of corrosion lossen in atmospheric conditions《ЕСЗКС 金属及合金 .pdf
  • 相关搜索

    当前位置:首页 > 考试资料 > 职业资格

    copyright@ 2008-2019 麦多课文库(www.mydoc123.com)网站版权所有
    备案/许可证编号:苏ICP备17064731号-1