A.Whencompilationsomeerrorwilloccur.
B.Itiscorrectwhencompilationbutwillcauseerrorwhenrunning.
C.Theoutputiszero.
D.Theoutputisnull.
第1题:
A. 编译时将产生错误;
B. 编译时正确,运行时将产生错误;
C. 输出0;
D. 输出null。
第2题:
根据下面给出的代码,判断哪个叙述是对的?() public class Person{ static int arr[] = new int[10]; public static void main(String[] a[]){ System.out.println(arr[1]); } }
A.编译时将发生错误
B.编译时正确但是运行时出错
C.输出为0
D.输出为null
第3题:
给出下面代码,关于该程序以下哪个说法是正确的?() public class Person{ static int arr[] = new int[5]; public static void main(String a[]) { System.out.println(arr[0]);} } }
A.编译时将产生错误
B.编译时正确,运行时将产生错误
C.输出零
D.输出空
第4题:
给出下面代码,关于该程序以下哪个说法是正确的?(C ) public class Person{ static int arr[] = new int[5]; public static void main(String a[]) { System.out.println(arr[0]);} } }
A.编译时将产生错误
B.编译时正确,运行时将产生错误
C.输出零
D.输出空
第5题:
给出下面代码,关于该程序以下哪个说法是正确的public class Person{ static int arr[] = new int[5]; public static void main(String a[]) { System.out.println(arr[0]); } }
A.输出0
B.编译错误
C.运行时刻异常
D.输出为空