下载后可任意编辑《JAVA语言程序设计》期末考试试题及答案一、选择题1. 请说出下列代码的执行结果 : String s = "abcd"; String s1 = new String(s); if (s = = s1) System.out.println("the same"); if (s.equals(s1)) System.out.println("equals"); A. the same equals B. equals C. the same D. 什么结果都不输出2. 下列有关 Java 中接口的说法哪个是正确的? A. 接口中含有具体方法的实现代码 B. 若一个类要实现一个接口,则用到 “implements” 关键字 C. 若一个类要实现一个接口,则用到“ extends ”关键字 D. 接口不允许继承 3. 下列代码的执行结果是什么? String s1 = "aaa"; s1.concat("bbb"); System.out.println(s1); A. The string "aaa". B. The string "aaabbb". C. The string "bbbaaa". D. The string "bbb". 4. 假如有一个对象 myListener ( 其中 myListener 对象实现了 ActionListener 接口 ), 下列哪条语句使得 myListener 对象能够接受处理来自于 smallButton 按钮对象的动作事件 ? A. smallButton.add(myListener); B. smallButton.addListener(myListener); 下载后可任意编辑C. smallButton.addActionListener(myListener); D. smallButton.addItem(myListener);二.读程序题1. 读下列代码,说出这段程序的功能。 import java.io.*; public class Test{ public static void main( String [] argv) { try { BufferedReader is = new BufferedReader( new InputStreamReader(System.in)); String inputLine; While ((inputLine = is.readLine ())!= null) { System.out.println(inputLine); } is.close(); }catch (IOException e) { System.out.println("IOException: " + e); } } } 答案:读取键盘输入,显示到屏幕上,直到键盘输入为空为止。2、 读下列程序,写出正确的运行结果。 class test { public static void main (String [] args ){ int x=9, y; if (x>=0) if (x>0)y=1; else y=0; else y=-1; 下载后可任意编辑System.out.println(y); } } 答案:13、 读程序,写出正确的运行结果。 public class Father{ int a=100; public void miner(){ a--; } public static void main(String[] args){ Father x = new Fa...