軟件工程師筆試試題(Java).doc
《軟件工程師筆試試題(Java).doc》由會(huì)員分享,可在線閱讀,更多相關(guān)《軟件工程師筆試試題(Java).doc(12頁(yè)珍藏版)》請(qǐng)?jiān)趨R文網(wǎng)上搜索。
1、軟件工程師筆試試題(JAVA)一、 填空題 (10分)1. 執(zhí)行下列代碼后的結(jié)果是什么? int x,a=2,b=3,c=4; x=+a+b+c+; 2. 包包含了Collection的接口和類的API3. main方法的聲明格式包括 4. 下列程序中構(gòu)造了一個(gè)SET并且調(diào)用其方法add(),輸出結(jié)果是 public class A public int hashCode()return 1; public Boolean equals(Object b)return true public static void main(String args) Set set=new HashSet()
2、; set.add(new A(); set.add(new A(); set.add(new A(); System.out.println(set.size(); 5. 下列程序的運(yùn)行結(jié)果是 class A class Dog private String name; private int age; public int step; Dog(String s,int a) name=s;age=a;step=0;public void run(Dog fast) fast.step+;public static void main (String args)A a=new A(); Do
3、g d=a.new Dog(Tom,3);d.step=25; d.run(d); System.out.println(d.step); 二、 選擇題 (20分)1. 欲構(gòu)造ArrayList類的一個(gè)實(shí)例,此類繼承了List接口,下列哪個(gè)方法是正確的? A ArrayList myList=new Object(); BList myList=new ArrayList(); CArrayList myList=new List(); DList myList=new List(); 2. paint()方法使用哪種類型的參數(shù)? A Graphics B Graphics2D C Strin
4、g D Color 3. 指出正確的表達(dá)式 A byte=128; B Boolean=null; C long l=0xfffL; D double=0.9239d; 4. 指出下列程序運(yùn)行的結(jié)果 public class Example String str=new String(good); charch=a,b,c; public static void main(String args) Example ex=new Example(); ex.change(ex.str,ex.ch); System.out.print(ex.str+ and ); Sytem.out.print(
5、ex.ch); public void change(String str,char ch) str=test ok; ch0=g; A good and abc B good and gbc C test ok and abc D test ok and gbc 5. 要從文件 file.dat文件中讀出第10個(gè)字節(jié)到變量C中,下列哪個(gè)方法適合? AFileInputStream in=new FileInputStream(file.dat); in.skip(9); int c=in.read(); BFileInputStream in=new FileInputStream(file
6、.dat); in.skip(10); int c=in.read(); C FileInputStream in=new FileInputStream(file.dat); int c=in.read(); DRandomAccessFile in=new RandomAccessFile(file.dat); in.skip(9); int c=in.readByte(); 6. 容器被重新設(shè)置大小后,哪種布局管理器的容器中的組件大小不隨容器大小的變化而改變? A CardLayout B FlowLayout C BorderLayout D GridLayout 7. 給出下面代碼:
- 1.請(qǐng)仔細(xì)閱讀文檔,確保文檔完整性,對(duì)于不預(yù)覽、不比對(duì)內(nèi)容而直接下載帶來(lái)的問(wèn)題本站不予受理。
- 2.下載的文檔,不會(huì)出現(xiàn)我們的網(wǎng)址水印。
- 3、該文檔所得收入(下載+內(nèi)容+預(yù)覽)歸上傳者、原創(chuàng)作者;如果您是本文檔原作者,請(qǐng)點(diǎn)此認(rèn)領(lǐng)!既往收益都?xì)w您。
下載文檔到電腦,查找使用更方便
10 積分
下載 | 加入VIP,下載共享資源 |
- 配套講稿:
如PPT文件的首頁(yè)顯示word圖標(biāo),表示該P(yáng)PT已包含配套word講稿。雙擊word圖標(biāo)可打開(kāi)word文檔。
- 特殊限制:
部分文檔作品中含有的國(guó)旗、國(guó)徽等圖片,僅作為作品整體效果示例展示,禁止商用。設(shè)計(jì)者僅對(duì)作品中獨(dú)創(chuàng)性部分享有著作權(quán)。
- 關(guān) 鍵 詞:
- 軟件工程師 筆試 試題 Java