版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進行舉報或認領(lǐng)
文檔簡介
1、北京動力節(jié)點教育科技有限公司 姓名:_孫海闊_ qq:_369019497_注意:如果沒有特殊說明那么為單選question 1given: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 2given:11. public class test 12. public static void main
2、(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. 輸出結(jié)果?a. 2b. 3c. 1 2d. 2 3e. 1 2 3f. 編譯錯誤g. 拋出運行期異常answer: d question 3given:11. public static void mai
3、n(string args) 12. for (int i=0;i6) break;14. 15. system.out.println(i);16. 輸出結(jié)果?a. 6b. 7c. 10d. 11e. 編譯錯誤.f. 拋出運行時異常.answer: e question 4given: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. 2
4、0.21. void dostuff(int x) 22. system.out.print( dostuffx =+ x+);23. 24. 輸出結(jié)果?a. 編譯錯誤.b. 發(fā)生運行期異常.c. dostuffx = 6 main x = 6d. dostuffx = 5 main x = 5e. dostuffx = 5 main x = 6f. dostuffx = 6 main x = 5answer: d question 5given:11. public static void main(string args) 12. object obj =new int 1,2,3 ;13
5、. int somearray = (int)obj;14. for (int i: somearray) system.out.print(i + )15. 輸出結(jié)果?a. 1 2 3b. 在12行發(fā)生編譯錯誤.c. 在13行發(fā)生編譯錯誤.d. 在14行發(fā)生編譯錯誤.e. 拋出classcastexception異常.answer: a question 6given:11. public interface status 12. /* 請再這里加入代碼 */ int my_value = 10;13. 在第12行加入的代碼,下面有3個是正確的?a. finalb. staticc. nat
6、ived. publice. privatef. abstractg. protectedanswer: abd question 7given: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.輸出結(jié)果?a. 發(fā)生異常.b. 第7行編譯錯誤.c. 第4行編譯錯誤.d. 編譯成功.answer: d question 8given:10. interface a void x(); 1
7、1. class b implements a public void x() public void y() 12. class c extends b public void x() and:20. java.util.list list = new java.util.arraylist();21. list.add(new b();22. list.add(new c();23. for (a a:list) 24. a.x();25. a.y();26. 輸出結(jié)果?a. 該代碼沒有輸出結(jié)果.b. 拋出異常.c. 第20行編譯錯誤.d. 第21行編譯錯誤.e. 第23行編譯錯誤.f.
8、第25行編譯錯誤.answer: e question 9given:1. class superclass 2. public a geta() 3. return new a();4. 5. 6. class subclass extends superclass 7. public b geta() 8. return new b();9. 10. 下面哪種情況是正確的?a. 如果a繼承b編譯正確.b. 如果b繼承a編譯正確.c. 第7行編譯錯誤.d. 第8行編譯錯誤.answer: c question 10given:11. class classa 12. class classb
9、 extends classa 13. class classc extends classa and:21. classa p0 = new classa();22. classb p1 = new classb();23. classc p2 = new classc();24. classa p3 = new classb();25. classa p4 = new classc();下面答案有三個是正確的?a. p0 = p1;b. p1 =p2;c. p2 = p4;d. p2 = (classc)p1;e. p1 = (classb)p3;f. p2 = (classc)p4;an
10、swer: cdf question 11given:10. abstract class a 11. abstract void al();12. void a2() 13. 14. class b extends a 15. void a1() 16. void a2() 17. 18. class c extends b void c1() and:a x = new b(); c y = new c(); a z = new c();下面答案中哪四個為多態(tài)調(diào)用?a. x.a2();b. z.a2();c. z.c1();d. z.a1();e. y.c1();f. x.a1();ans
11、wer: bdf question 12given:10. public class hello 11. string title;12. int value;13. public hello() 14. title += world;15. 16. public hello(int value) 17. this.value = value;18. title = hello;19. hello();20. 21. and:30. hello c = new hello(5);31. system.out.println(c.title);輸出結(jié)果?a. hellob. hello worl
12、dc. 編譯錯誤.d. hello world 5e. 沒有輸出結(jié)果.f. 拋出異常.answer: b question 13given:10. public class foo 11. static int a;12. static a0=2; 13. public static void main( string args) 14. 運行以上代碼將會拋出什么異常?a. java.lang. stackoverflowerrorb. java.lang.illegalstateexceptionc. java.lang.exceptionlnlnitializererrord. java.
13、lang.arraylndexoutofboundsexceptionanswer: c question 14given:1. import java.util.*;2. public class example 3. public static void main(string args) 4. / 加入代碼5. set.add(new integer(2);6. set.add(new integer(l);7. system.out.println(set);8. 9. 將哪個代碼加入到第4行,輸出為1, 2?a. set set = new treeset();b. set set
14、= new hashset();c. set set = new sortedset();d. list set = new sortedlist();e. set set = new linkedhashset();answer: e question 15given:11. public class person 12. private string name, comment;13. private int age;14. public person(string n, int a, string c) 15. name = n; age = a; comment = c;16. 17.
15、 public boolean equals(object o) 18. if(! (o instanceof person) return false;19, person p = (person)o;20. return age = p.age & name.equals();21. 22. 在person類中如何定義hashcode()方法是正確的?a. return super.hashcode();b. return name.hashcode() + age * 7;c. return name.hashcode() + comment.hashcode() /2;d.
16、 return name.hashcode() + comment.hashcode() / 2 - age * 3;answer: d question 16given:1. public class threads3 implements runnable 2. public void run() 3. system.out.print(running);4. 5. public static void main(string args) 6. thread t = new thread(new threads3();7. t.run();8. t.run();9. t.start();1
17、0. 11. 輸出結(jié)果?a. 編譯錯誤b. 拋出異常.c. 輸出 running.d. 輸出 runningrunning.e. 輸出 runningrunningrunning.answer: e question 17given:1. public class threads4 2. public static void main (string args) 3. new threads4().go();4. 5. public void go() 6. runnable r = new runnable() 7. public void run() 8. system.out.print(foo);9. 10. ;11. thread t = new thread(r);12. t.start();13. t.start();14. 15. 輸出結(jié)果?a. 編譯錯誤.b. 拋出異常.c. 執(zhí)行正常,輸出 foo.d. 執(zhí)行正常,沒有輸出.answer: b question 18選出3個編譯正確的?a. private synchronized object o;b. void
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預覽,若沒有圖紙預覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責。
- 6. 下載文件中如有侵權(quán)或不適當內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 2025年度特色果樹種植與采摘園承包合同3篇
- 2024年食品加工生產(chǎn)合同
- 2024瓦工承包勞務合同(含節(jié)能認證服務)3篇
- 2024生物技術(shù)公司知識產(chǎn)權(quán)糾紛解決與賠償協(xié)議3篇
- 2025年魯教版選擇性必修1化學下冊階段測試試卷
- 2024版人力資源外包與招聘合同3篇
- 多功能豆絲機省時國產(chǎn)安全操作規(guī)程
- 2025年浙教新版八年級化學下冊月考試卷
- 2025年魯人版八年級物理上冊階段測試試卷含答案
- 2024年滬科版八年級生物上冊月考試卷含答案
- 道士述職報告
- 綠色貸款培訓課件
- 2024年七年級語文上學期期末作文題目及范文匯編
- 云南省昆明市五華區(qū)2023-2024學年九年級上學期期末英語試卷+
- 2023年生產(chǎn)運營副總經(jīng)理年度總結(jié)及下一年計劃
- 2023年中考語文標點符號(頓號)練習(含答案)
- 施工圖審查招標文件范文
- 新課標人教版數(shù)學三年級上冊第八單元《分數(shù)的初步認識》教材解讀
- 布袋式除塵器制造工序檢驗規(guī)定
- 艾滋病、梅毒和乙肝檢測方法介紹及選擇
- 水資源稅納稅申報表附表
評論
0/150
提交評論