1、班级:_ 学号:_ 姓名:_Java 笔试题(可多选)1. 下面哪些是 Thread 类的方法( ABD)A start() B run() C exit() D getPriority()2. 下面关于 java.lang.Exception 类的说法正确的是( A)A 继承自 Throwable B Serialable C 该类实现了 Throwable 接口D 该类是一个公共类3. 下面程序的运行结果是( false )String str1 = “hello“;String str2 = “he“ + new String(“llo“);System.err.println(str1
2、 = str2);4. 下列说法正确的有( C)A class 中的 constructor 不可省略B constructor 必须与 class 同名,但方法不能与 class 同名C constructor 在一个对象被 new 时执行D一个 class 只能定义一个 constructor5. 指针在任何情况下都可进行, =, =, =运算?( true )6. 下面程序的运行结果:(B)public static void main(String args) Thread t = new Thread() public void run() pong();t.run();System
3、.out.print(“ping“);static void pong() System.out.print(“pong“);A pingpong B pongping C pingpong 和 pongping 都有可能 D 都不输出7. 下列属于关系型数据库的是(AB)A. Oracle B MySql C IMS D MongoDB8. GC(垃圾回收器) 线程是否为守护线程?( true )9. volatile 关键字是否能保证线程安全?( false )10. 下列说法正确的是( AC)A LinkedList 继承自 ListB AbstractSet 继承自 SetC Hash
4、Set 继承自 AbstractSetD WeakMap 继承自 HashMap11. 存在使 i + 1 i 的数吗?( 存在 )12. 0.6332 的数据类型是(B)A float B double C Float D Double13. 下面哪个流类属于面向字符的输入流 (A )A BufferedWriter B FileInputStream C ObjectInputStream D InputStreamReader 14. Java 接口的修饰符可以为(CD)A private B protected C final D abstract15. 不通过构造函数也能创建对象吗(
5、 A)A 是 B 否16. ArrayList list = new ArrayList(20);中的 list 扩充几次(A)A 0 B 1 C 2 D 317. 下面哪些是对称加密算法( AB)A DES B AES C DSA D RSA18.新建一个流对象,下面哪个选项的代码是错误的?(B)A)new BufferedWriter(new FileWriter(“a.txt“);B)new BufferedReader(new FileInputStream(“a.dat“);C)new GZIPOutputStream(new FileOutputStream(“a.zip“);D)
6、new ObjectInputStream(new FileInputStream(“a.dat“);19. 下面程序能正常运行吗( yes )public class NULL public static void haha()System.out.println(“haha“);public static void main(String args) (NULL)null).haha();20. 下面程序的运行结果是什么()class HelloA public HelloA() System.out.println(“HelloA“); System.out.println(“Im A
7、class“); static System.out.println(“static A“); public class HelloB extends HelloA public HelloB() System.out.println(“HelloB“); System.out.println(“Im B class“); static System.out.println(“static B“); public static void main(String args) new HelloB(); Static A Static BHello AIm A classHelp BIm B Cl
8、ass21. getCustomerInfo()方法如下,try 中可以捕获三种类型的异常,如果在该方法运行中产生了一个 IOException,将会输出什么结果(A)public void getCustomerInfo() try / do something that may cause an Exception catch (java.io.FileNotFoundException ex) System.out.print(“FileNotFoundException!“); catch (java.io.IOException ex) System.out.print(“IOExc
9、eption!“); catch (java.lang.Exception ex) System.out.print(“Exception!“);A IOException!B IOException!Exception!C FileNotFoundException!IOException!D FileNotFoundException!IOException!Exception!22. 下面代码的运行结果为:( C)import java.io.*;import java.util.*;public class foopublic static void main (String args
10、)String s;System.out.println(“s=“ + s);A 代码得到编译,并输出“s=”B 代码得到编译,并输出“s=null”C 由于 String s 没有初始化,代码不能编译通过D 代码得到编译,但捕获到 NullPointException 异常23. System.out.println(“5“ + 2);的输出结果应该是(A)。A 52 B7 C2 D524. 指出下列程序运行的结果 (B)public class Example String str = new String(“good“);char ch = a, b, c ;public static
11、void main(String args) Example ex = new Example();ex.change(ex.str, ex.ch);System.out.print(ex.str + “ and “);System.out.print(ex.ch);public void change(String str, char ch) str = “test ok“;ch0 = g;A、 good and abcB、 good and gbcC、 test ok and abcD、 test ok and gbc 25. 要从文件“file.dat“中读出第 10 个字节到变量 c
12、中, 下列哪个方法适合? (AB)A FileInputStream in=new FileInputStream(“file.dat“); in.skip(9); int c=in.read();B FileInputStream in=new FileInputStream(“file.dat“); in.skip(10); int c=in.read();C FileInputStream in=new FileInputStream(“file.dat“); int c=in.read();D RandomAccessFile in=new RandomAccessFile(“file
13、.dat“); in.skip(9); int c=in.readByte();26. 下列哪种异常是检查型异常,需要在编写程序时声明 (C )A NullPointerException B ClassCastException C FileNotFoundException D IndexOutOfBoundsException 27. 下面的方法,当输入为 2 的时候返回值是多少?(D)public static int getValue(int i) int result = 0;switch (i) case 1:result = result + i;case 2:result = result + i * 2;