sdut java lab5

sdut java lab5

码农世界 2024-05-24 前端 69 次浏览 0个评论

An array subscript may be an integer or an integer expression. If a program uses an expression as a subscript, then the expression is evaluated to determine the particular element of the array.

T

答案正确:1 分

创建提问


1-2

分数 1

作者 翁恺

单位 浙江大学

There is a length() method for all the arrays to represent the number of elements

F

答案正确:1 分

创建提问


1-3

分数 1

作者 翁恺

单位 浙江大学

Arrays in Java can change its size as needed.

F

答案正确:1 分

创建提问

分数 2

作者 翁恺

单位 浙江大学

  1. Given a=new int[10], which expression below can cause ArrayIndexOutOfBoundsException?

A.

a[0] += 9;

B.

a[9]=10;

C.

a[9]

D.

for(int i=0;i<=10;i++) a[i]++;

答案正确:D 2 分


2-2

分数 2

作者 翁恺

单位 浙江大学

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

答案正确:B 2 分


2-3

分数 2

作者 徐硕博

单位 浙江大学

What does the following line of code do?

quantity = new int[3];

A.

Creates storage for three doubles.

B.

Creates storage for three int.

C.

Creates storage for unlimited doubles.

D.

Creates storage for unlimited int

答案正确:B  2 分

创建提问

转载请注明来自码农世界,本文标题:《sdut java lab5》

百度分享代码,如果开启HTTPS请参考李洋个人博客
每一天,每一秒,你所做的决定都会改变你的人生!

发表评论

快捷回复:

评论列表 (暂无评论,69人围观)参与讨论

还没有评论,来说两句吧...

Top