动力节点入学测试(中文).doc

  1. 1、本文档共10页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
动力节点入学测试(中文)

姓名:___孙海阔_______________ QQ:____369019497_____________ 注意:如果没有特殊说明那么为单选 Question 1 Given: 35. String #name = Jane Doe; 36. int $age=24; 37. Double _height = 123.5; 38. double ~temp = 37.5; 下面有两个答案是正确的? A. 35行不能编译通过 B. 36行不能编译通过 C. 37行不能编译通过 D. 38行不能编译通过 Answer: AD Question 2 Given: 11. public class Test { 12. public static void main(String [] args) { 13. int x =5; 14. boolean b1 = true; 15. boolean b2 = false; 16. 17.if((x==4) !b2) 18. System.out.print(l ); 19. System.out.print(2 ); 20. if ((b2 = true) b1) 21. System.out.print(3); 22. } 23. } 输出结果? A. 2 B. 3 C. 1 2 D. 2 3 E. 1 2 3 F. 编译错误 G. 抛出运行期异常 Answer: D Question 3 Given: 11. public static void main(String[] args) { 12. for (int i=0;i= 10;i++){ 13. if( i6) break; 14. } 15. System.out.println(i); 16. } 输出结果? A. 6 B. 7 C. 10 D. 11 E. 编译错误. F. 抛出运行时异常. Answer: E Question 4 Given: 13. public class Pass { 14. public static void main(String [] args) { 15. int x 5; 16. Pass p = new Pass(); 17. p.doStuff(x); 18. System.out.print(main x = + x); 19. } 20. 21. void doStuff(int x) { 22. System.out.print( doStuffx =+ x++); 23. } 24. } 输出结果? A. 编译错误. B. 发生运行期异常. C. doStuffx = 6 main x = 6 D. doStuffx = 5 main x = 5 E. doStuffx = 5 main x = 6 F. doStuffx = 6 main x = 5 Answer: D Question 5 Given: 11. public static void main(String[] args) { 12. Object obj =new int[] { 1,2,3 }; 13. int[] someArray = (int[])obj; 14. for (int i: someArray) System.out.print(i + ) 15. } 输出结果? A. 1 2 3 B. 在12行发生编译错误. C. 在13行发生编译错误. D. 在14行发生编译错误. E. 抛出ClassCastException异常. Answer: A Question 6 Given: 11. public interface Status { 12. /* 请再这里加入代码 */ int MY_VALUE = 10; 13. } 在第12行加入的代码,下面有3个是正确的? A. final B. static C. native D. public E. private F. abstract G. protected Answer: ABD Question 7 Given: 1. public class A { 2. public void doit() { 3. } 4. public String doit() { 5. return a; 6. } 7. public double doit(int x) { 8. return 1.0; 9. } 10.} 输出结果? A. 发生异常. B. 第7行编译错误. C. 第4行编译错误. D. 编

文档评论(0)

小教资源库 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档