下列程序段的运行结果是()int[][] a = { { 1, 2, 3, 4 }, { 5, 6, 7, 8 }, { 9, 10, 11, 12 }, { 13, 14, 15, 16 } };int i, j, s = 0;for (i = 0; i < 3; i++) for (j = 0; j < i + 1; j++) s = s + a[i][3 - j];System.out.print(s);
查看答案
下列系统定义的异常类中, 数组越界异常是()
ArrayIndexOutOfBoundsException
B. IOException
C. NullPointerException
D. ArithmeticException
关于下列程序, 正确的描述是()public class myprogram { public static void main(String[] args) { try { System.out.print("Hello world "); } finally { System.out.println("Finally executed"); } }}
A. 无法编译运行, 因为没有指定异常
B. 无法编译运行, 因为没有catch EOFException子句
C. 输出"Hello world"
D. 输出"Hello world Finally executed"
下列选项中实现了Map接口的类是()
A. HashMap
B. LinkedList
C. Vector
D. ArrayList
下列不属于字节流的分支的是()
A. 二进制文件流
B. 音频流
C. 随机文件流
D. 文本字符流