无忧首页企业系统我的无忧
无忧服务:
兼职活动培训
娱乐交友:
交友社区资讯
全职实习:
实习暑假寒假
微信号:school51
扫一下,立即关注
加关注
在线支付,立省10元
下载新版APP
===大学生成长生活平台===

JAVA题库:格林模拟试题一(上)(2)

2012-12-26来源/作者:卫凯点击次数:863

 
question 6)
which of the following are keywords or reserved words in java? 
1) if 
2) then 
3) goto 
4) while 
5) case 
question 7)
which of the following are legal identifiers 
1) 2variable 
2) variable2 
3) _whatavariable 
4) _3_ 
5) $anothervar 
6) #myvar 
question 8)
what will happen when you compile and run the following code? 
public class myclass{ static int i; public static void main(string argv[]){ system.out.println(i); }}
1) error variable i may not have been initialized 
2) null 
3) 1 
4) 0 
question 9)
what will happen if you try to compile and run the following code? 
public class q { public static void main(string argv[]){ int anar[]=new int[]{1,2,3}; system.out.println(anar[1]); }}
1) 1 
2) error anar is referenced before it is initialized 
3) 2 
4) error: size of array must be defined 
question 10)
what will happen if you try to compile and run the following code? 
public class q { public static void main(string argv[]){ int anar[]=new int[5]; system.out.println(anar[0]); }}
1) error: anar is referenced before it is initialized 
2) null 
3) 0 
4) 5



相关阅读



关于我们 | 联系我们 | 用户指南 | 网站地图 | 意见建议 | 会员注册 | 用户协议 | 隐私政策