JAVA语言程序设计期末考试试题及答案7(应考必备题库)一、选择题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. 什么结果都不输出A. the same equals B. equals C. the same D. 什么结果都不输出2. 下列有关 Java 中接口的说法哪个是正确的? A. 接口中含有具体方法的实现代码 B. 若一个类要实现一个接口,则用到 “implements” 关键字 C. 若一个类要实现一个接口,则用到“ extends ”关键字 D. 接口不允许继承 3. 下