Java认证模考试题(三)

文章作者 100test 发表时间 2007:03:14 17:03:06
来源 100Test.Com百考试题网


Question: 14


Which one of the following arguments is the correct argument of the main() method?

A. char args[]

B. char args[][]

C. String arg[]

D. String args

Explanation:


The argument of the main() method is an array of String. Then only answer C is an array of String.

Correct Answer: C 14 of 60

Question: 15


Which one of the following is correct to create an array?


A. float f[][] = new float[6][6].

B. float []f[] = new float[6][6].

C. float f[][] = new float[][6].

D. float [][]f = new float[6][6].

E. float [][]f = new float[6][].

Explanation:


In Java the declaration format allows the square brackets to be at the left or right of the variable name. But the new float[][6] is illegal.

Correct Answer: A,B,D,E 15 of 60

Question: 16


Given the following expression: int m[] = {0, 1, 2, 3, 4, 5, 6 }.

Which result of the following expressions equals to the number of the array elements?


A. m.length()

B. m.length

C. m.length() 1

D. m.length 1

Explanation:


The number of elements in an array is stored in the length attribute in the array object.

Correct Answer: B 16 of 60

Question: 17


Given the following command to run a correct class: java MyTest a b c

Which statements are true?


A. args[0] = MyTest a b c

B. args[0] = MyTest

C. args[0] = a

D. args[1]= b

Explanation:


The three arguments a b c are stored in the args[] array of the main() method. Then args[0]= a, args[1]= b, args[2]= c.

Correct Answer: C 17 of 60

Question: 18


Given the following code:

public class Test{

long a[] = new long[10].

public static void main ( String arg[] ) {

System.out.println ( a[6] ).

}

}

Which statement is true?


A. Output is null.

B. Output is 0.

C. When compile, some error will occur.

D. When running, some error will occur.

Explanation:


When an array is created the members of the array is initialized. In this case all the elements are initialized to be 0.

Correct Answer: B 18 of 60


相关文章


利用Java完成域名和IP地址的转换
Java程序设计知识与技能(七)
Java认证模考试题(四)
从Java应用程序动态生成PDF文件
Java认证模考试题(三)
Java程序设计知识与技能(八)
基础:用于数据的XML:对XQuery的前瞻
Java认证模考试题(二)
scjp考题中的种种陷阱
澳大利亚华人论坛
考好网
日本华人论坛
华人移民留学论坛
英国华人论坛