【计算机类职业资格】二级JAVA机试-154及答案解析.doc

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

1、二级 JAVA 机试-154 及答案解析(总分:100.00,做题时间:90 分钟)一、1基本操作题(总题数:1,分数:30.00)1.下面程序是关于类的继承的用法。阅读下面程序,根据程序中的注释在每一条横线处填写一个语句,使程序的功能完整,且运行程序后的输出结果为:I am parentclass!I am childclass!I am childclass!注意: 请勿改动 main()主方法和其他已有的语句内容,仅在下划线处填入适当的语句。class Parent void printMe() System.out.println(“I am parentclass!“);class

2、Child extends Parent void printMe() System.out.println(“I am childclass!“);void printAll() _.printMe ( ); / 调用父类的方法_. printMe ( ); /调用本类的方法printMe ( );public class TestJieCheng public static void main(String args) _myC.printAll();(分数:30.00)_二、2简单应用题(总题数:1,分数:40.00)2.请完成下列 Java 程序:用树构件展示计算机等级考试二级的简单目

3、录组织结构,包含三级目录,第一级是根目录(计算机二级);第二级包含 2 个目录,一个是 c+,一个是 java;c+目录中,只有一项就是简介,而 java 目录中包含三项,一个简介,一个大纲,一个第三级目录(参考书);参考书目录中包含两项,一个是指导书,一个是上机习题集。要求,根据上述目录结构给出图形用户界面的表示。注意:请勿改动 main()主方法和其他已有语句内容,仅在下划线处填入适当的语句。程序运行结果如下:(分数:40.00)_三、3综合应用题(总题数:1,分数:30.00)3.下面是一个 Applet 程序,其功能是计算山顶的高度,计算方法是;该山顶由 a 点量得仰角度数为 a 度,

4、由 b 点量得仰角度数为 b 度,且测得 a,b 点之间的距离为 c 米,求山的高度。要求窗口中有 3 个输入框,分别作为 a,b,c 的输入,一个按钮点击后进行计算,结果显示在另一个文本框中(这个文本框不可编辑)。请改正程序中的错误(有下划线的语句),使程序能输出正确的结果。注意:不改动程序的结构,不得增行或删行。程序运行结果如下:(分数:30.00)_二级 JAVA 机试-154 答案解析(总分:100.00,做题时间:90 分钟)一、1基本操作题(总题数:1,分数:30.00)1.下面程序是关于类的继承的用法。阅读下面程序,根据程序中的注释在每一条横线处填写一个语句,使程序的功能完整,且

5、运行程序后的输出结果为:I am parentclass!I am childclass!I am childclass!注意: 请勿改动 main()主方法和其他已有的语句内容,仅在下划线处填入适当的语句。class Parent void printMe() System.out.println(“I am parentclass!“);class Child extends Parent void printMe() System.out.println(“I am childclass!“);void printAll() _.printMe ( ); / 调用父类的方法_. prin

6、tMe ( ); /调用本类的方法printMe ( );public class TestJieCheng public static void main(String args) _myC.printAll();(分数:30.00)_正确答案:(superthisChild myC=new Child();)解析:解析本题主要考查 super,this 关键字以及如何生成对象。解答本题的关键是熟练 super,this 的用法、对象的生成。在本题中, super.printMe();语句的功能是调用父类的 printMe()方法,thisprintMe();语句的功能是调用本类的 prin

7、tMe()方法,Child myC=new Child();语句的功能是生成 Child 类的对象myC。二、2简单应用题(总题数:1,分数:40.00)2.请完成下列 Java 程序:用树构件展示计算机等级考试二级的简单目录组织结构,包含三级目录,第一级是根目录(计算机二级);第二级包含 2 个目录,一个是 c+,一个是 java;c+目录中,只有一项就是简介,而 java 目录中包含三项,一个简介,一个大纲,一个第三级目录(参考书);参考书目录中包含两项,一个是指导书,一个是上机习题集。要求,根据上述目录结构给出图形用户界面的表示。注意:请勿改动 main()主方法和其他已有语句内容,仅在

8、下划线处填入适当的语句。程序运行结果如下:(分数:40.00)_正确答案:(sub1.add(magazines)sub2)解析:解析本题主要考查使用 swing 的基本构件进行图形用户界面编程。解题关键是熟练掌握 JTree 构件和DefaultMutableTreeNode 构件相结合创建分级目录的基本使用方法。本题中,第 1 个空,知道 magazines对象是代表了第三级目录的,而 sub1 对象定义了 java 目录,所以这里应该是 sub1add(maganizes);第 2 个空,sub2 对象定义了第二级目录的 c+目录,因此这里应该是 c+目录中的项“简介”。三、3综合应用题

9、(总题数:1,分数:30.00)3.下面是一个 Applet 程序,其功能是计算山顶的高度,计算方法是;该山顶由 a 点量得仰角度数为 a 度,由 b 点量得仰角度数为 b 度,且测得 a,b 点之间的距离为 c 米,求山的高度。要求窗口中有 3 个输入框,分别作为 a,b,c 的输入,一个按钮点击后进行计算,结果显示在另一个文本框中(这个文本框不可编辑)。请改正程序中的错误(有下划线的语句),使程序能输出正确的结果。注意:不改动程序的结构,不得增行或删行。程序运行结果如下:(分数:30.00)_正确答案:(th4.setEditable(false)h=a3/Mathabs(1.0/Mathtan(a)-1.0/Mathtan(b)tfsetText(DoubletoString(h)解析:解析本题主要考查 Applet 窗口编程和 AWT 基本构件的使用以及事件处理机制。解题关键是设计出计算山高的方法,并且结合事件处理机制,调用该计算方法实现程序的功能。本题中,第 1 处,由于用显示结果的文本框不可编辑,因此参数为 false;第 2 处,需要对分母进行取绝对值操作,否则最后结果会产生负数;第 3 处,由于 h 是 double 类型的变量,做数据类型转换时需要调用 Double 类的 toString()方法。

展开阅读全文
相关资源
猜你喜欢
  • DIN EN 15646-2009 Electrodeposited coatings - Electroplated coatings of aluminium and aluminium alloys with supplementary treatment - Requirements and test methods English version .pdf DIN EN 15646-2009 Electrodeposited coatings - Electroplated coatings of aluminium and aluminium alloys with supplementary treatment - Requirements and test methods English version .pdf
  • DIN EN 15647-2009 Surface active agents - Determination of the dispersing effect of surfactants on powder English version of DIN EN 15647 2009-04《表面活性剂 表面活性剂在粉体中的分散效果测定》.pdf DIN EN 15647-2009 Surface active agents - Determination of the dispersing effect of surfactants on powder English version of DIN EN 15647 2009-04《表面活性剂 表面活性剂在粉体中的分散效果测定》.pdf
  • DIN EN 15648-2009 Thermal spraying - Component related procedure qualification English version of DIN EN 15648 2009-04《热喷涂与程序验证有关的部件》.pdf DIN EN 15648-2009 Thermal spraying - Component related procedure qualification English version of DIN EN 15648 2009-04《热喷涂与程序验证有关的部件》.pdf
  • DIN EN 1565-1-1999 en 5012 Plastics piping systems for soil and waste discharge (low and high temperature) within the building structure - Styrene copolymer blends (SAN+PVC) - Part.pdf DIN EN 1565-1-1999 en 5012 Plastics piping systems for soil and waste discharge (low and high temperature) within the building structure - Styrene copolymer blends (SAN+PVC) - Part.pdf
  • DIN EN 15650-2010 Ventilation for buildings - Fire dampers German version EN 15650 2010《建筑物通风设备 防火挡板 德文版本EN 15650-2010》.pdf DIN EN 15650-2010 Ventilation for buildings - Fire dampers German version EN 15650 2010《建筑物通风设备 防火挡板 德文版本EN 15650-2010》.pdf
  • DIN EN 15651-1-2017 Sealants for non-structural use in joints in buildings and pedestrian walkways - Part 1 Sealants for facade elements German version EN 15651-1 2017《建筑物和人行道连接处的非.pdf DIN EN 15651-1-2017 Sealants for non-structural use in joints in buildings and pedestrian walkways - Part 1 Sealants for facade elements German version EN 15651-1 2017《建筑物和人行道连接处的非.pdf
  • DIN EN 15651-2-2017 Sealants for non-structural use in joints in buildings and pedestrian walkways - Part 2 Sealants for glazing German version EN 15651-2 2017《建筑物和人行道连接处的非结构用密封剂 第.pdf DIN EN 15651-2-2017 Sealants for non-structural use in joints in buildings and pedestrian walkways - Part 2 Sealants for glazing German version EN 15651-2 2017《建筑物和人行道连接处的非结构用密封剂 第.pdf
  • DIN EN 15651-3-2017 Sealants for non-structural use in joints in buildings and pedestrian walkways - Part 3 Sealants for sanitary joints German version EN 15651-3 2017《建筑物和人行道连接处的非.pdf DIN EN 15651-3-2017 Sealants for non-structural use in joints in buildings and pedestrian walkways - Part 3 Sealants for sanitary joints German version EN 15651-3 2017《建筑物和人行道连接处的非.pdf
  • DIN EN 15651-4-2017 Sealants for non-structural use in joints in buildings and pedestrian walkways - Part 4 Sealants for pedestrian walkways German version EN 15651-4 2017 + AC 201.pdf DIN EN 15651-4-2017 Sealants for non-structural use in joints in buildings and pedestrian walkways - Part 4 Sealants for pedestrian walkways German version EN 15651-4 2017 + AC 201.pdf
  • 相关搜索

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

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