- 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
CSIAJAVA开返蘑工程师
CSIA Java开发工程师
单选题
下列说法哪些是正确的( )
任何表达式都可以当做语句
表达式x++可以当做语句
语句x=y=x=0是非法语句
具有相同优先级的运算符都是从左向右计算的
下面语句的输出结果是什么( )
int i=0;
i = i + (i=1);
System.out.printIn(i);
0
1
2
3
下面两个语句是等价的吗( )
If(income = 10000)
Tax = income * 0.1 ;
Else if (income = 20000)
Tax = 1000 + (income – 10000) * 0.15;
If(income = 10000)
Tax = income * 0.1 ;
Else if (income 1000 income = 20000)
Tax = 1000 + (income – 10000) * 0.15;
等价
不等价
执行下面的switch语句后y是( )
X = 3;
Switch ( x + 3) {
Case 6 : y = 1;
Dafult :y + 1;
}
1
2
3
0
下面的循环体共重复执行了( )次
int i = 1;
while ( i 10){
if( ( i ++) % 2 = = 0 ){
System.out.printIn(i);
}}
0
10
9
11
下列循环中,执行break outer之后,执行哪条语句语句( )
outer:
for(int I = 1; i 10 ; i++){
inner ;
for ( int j=1 ; j 10 ; j++){
if (I*j 50 )
break outer ;
System.out.printIn( i * j);
}
}
next :
System.out.printIn( i * j);
next :
for ( int j=1 ; j 10 ; j++){
for(int I = 1; i 10 ; i++)
下面的程序中包含几处错误( )
public calss test (){
public static method1(int n,m){
n +=m;
xMethod(3.4);
}
public static int Xmethod(int n ){
if(n0) return 1 ;
else if(n = = 0) return 0;
else if (n 0 ) return -1 ;
}
}
1
2
3
4
数组a的第三个元素如何表示( )
a(3)
a (“3”)
a [3]
a[2]
如果一个类只有私有数据域,没有set方法,它是永久类吗( )
是
不是
下面的哪些类不是继承自Collection接口( )
List
Map
Set
HashSet
下列程序的输出是( )
class output()
{
public static void main(String [] args){
output o =new output();
o.go();
}
void go(){
int y=7;
for (int x=1;x 8;x++){
y++;
if (x 4) {
System.out.print(++y + “ ”);
}
if ( y 14) {
System.out.printIn(“ x = ” + x);
break ;
}
}
}
}
12 14
12 14 x = 6
13 15
13 15 x=6
数组有没有length()这个方法( )
有
没有
To add a to b and store result in b, you write ( )
b += a;
a = b + a;
b = A + b;
a += b;
To declare a constant PI, you write( )
final static PI = 3.14159;
final float PI = 3.14159;
static double PI = 3.14159;
final double PI = 3.14159
Which of the Boolean expressions below has incorrect syntax( )
(true) (3 4)
!(x 0) (x 0)
(x 0) || (x 0)
(x != 0) || (x = 0)
If you attempt to add an int, a byte, a long, and a double,
文档评论(0)