2024年全國軟考程序員考試部分例題_第1頁
2024年全國軟考程序員考試部分例題_第2頁
2024年全國軟考程序員考試部分例題_第3頁
2024年全國軟考程序員考試部分例題_第4頁
2024年全國軟考程序員考試部分例題_第5頁
已閱讀5頁,還剩14頁未讀, 繼續(xù)免費閱讀

下載本文檔

版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進行舉報或認領(lǐng)

文檔簡介

全國軟考程序員考試部分例題全國軟考程序員考試部分例題全國軟考程序員考試部分例題例題1:choosethethreevalididentifiersfromthoselistedbelow.a.idolikethelongnameclassb.$bytec.constd._oke.3_case解答:a,b,d點評:java中的標示符必須是字母、美元符($)或下劃線(_)開頭。關(guān)鍵字與保留字不能作為標示符。選項c中的const是java的保留字,因此不能作標示符。選項e中的3_case以數(shù)字開頭,違反了java的規(guī)則。例題2:howcanyouforcegarbagecollectionofanobject?a.garbagecollectioncannotbeforcedb.callsystem.gc().c.callsystem.gc(),passinginareferencetotheobjecttobegarbagecollected.d.callruntime.gc().e.setallreferencestotheobjecttonewvalues(null,forexample).解答:a點評:在java中垃圾搜集是不能被強迫立即執(zhí)行的。調(diào)用system.gc()或runtime.gc()靜態(tài)措施不能保證垃圾搜集器的立即執(zhí)行,由于,也許存在著更高優(yōu)先級的線程。因此選項b、d不對的。選項c的錯誤在于,system.gc()措施是不接受參數(shù)的。選項e中的措施可以使對象在下次垃圾搜集器運行時被搜集。例題3:considerthefollowingclass:1.classtest(inti){2.voidtest(inti){3.system.out.println(iamanint.);4.}5.voidtest(strings){6.system.out.println(iamastring.);7.}8.9.publicstaticvoidmain(stringargs[]){10.testt=newtest();11.charch=y12.t.test(ch);13.}14.}whichofthestatementsbelowistrue?(chooseone.)a.line5willnotcompile,becausevoidmethodscannotbeoverridden.b.line12willnotcompile,becausethereisnoversionoftest()thatrakesacharargument.c.thecodewillcompilebutwillthrowanexceptionatline12.d.thecodewillcompileandproducethefollowingoutput:iamanint.e.thecodewillcompileandproducethefollowingoutput:iamastring.解答:d點評:在第12行,16位長的char型變量ch在編譯時會自動轉(zhuǎn)化為壹種32位長的int型,并在運行時傳給voidtest(inti)措施。例題4:whichofthefollowinglinesofcodewillcompilewithouterror?a.inti=0;if(i){system.out.println(hi);}b.booleanb=true;booleanb2=true;if(b==b2){system.out.println(sotrue);}c.inti=1;intj=2;if(i==1||j==2)system.out.println(ok);d.inti=1;intj=2;if(i==1|j==2)system.out.println(ok);解答:b,c點評:選項a錯,由于if語句後需要壹種boolean類型的體現(xiàn)式。邏輯操作有tandleextendsshape{}c.publicinterfacecolorable{}publicclassshapeimplementscolorable{}d.publicclassspecies{}publicclassanimal{privatespeciesspecies;}e.interfacecomponent{}classcontainerimplementscomponent{privatecomponent[]children;}解答:d,e點評:在java中代碼重用有兩種也許的方式,即組合(hasa關(guān)系)和繼承(isa關(guān)系)。hasa關(guān)系是通過定義類的屬性的方式實現(xiàn)的;而isa關(guān)系是通過類繼承實現(xiàn)的。本例中選項a、b、c體現(xiàn)了isa關(guān)系;選項d、e體現(xiàn)了hasa關(guān)系。例題6:whichtwostatementsaretruefortheclassjava.util.treeset?(choosetwo)a.theelementsinthecollectionareordered.b.thecollectionisguaranteedtobeimmutable.c.theelementsinthecollectionareguaranteedtobeunique.d.theelementsinthecollectionareaccessedusingauniquekey.e.theelementsinthecollectionareguaranteedtobesynchronized解答:a,c點評:treeset類實現(xiàn)了set接口。set的特點是其中的元素惟壹,選項c對的。由于采用了樹形存儲方式,將元素有序地組織起來,因此選項a也對的。例題7:trueorfalse:readershavemethodsthatcanreadandreturnfloatsanddoubles.a.tureb.false解答:b點評:reader/writer只處理unicode字符的輸入輸出。float和double可以通過stream進行i/o.例題8:whatdoesthefollowingpaint()methoddraw?1.publicvoidpaint(graphicsg){2.g.drawstring(anyquestion,10,0);3.}a.thestringanyquestion?,withitstop-leftcornerat10,0b.alittlesquigglecomingdownfromthetopofthecomponent.解答:b點評:drawstring(stringstr,intx,inty)措施是使用目前的顏色和字符,將str的內(nèi)容顯示出來,并且最左的字符的基線從(x,y)開始。在本題中,y=0,因此基線位于最頂端。我們只能看到下行字母的壹部分,即字母y、q的下半部分。例題9:whathappenswhenyoutrytocompileandrunthefollowingapplication?chooseallcorrectoptions.1.publicclassz{2.publicstaticvoidmain(string[]args){3.newz();4.}5.6.z(){7.zalias1=this;8.zalias2=this;9.synchronized(alias1){10.try{11.alias2.wait();12.system.out.println(donewaiting);13.}14.catch(interruptedexceptione){15.system.out.println(interrupted);16.}17.catch(exceptione){18.system.out.println(otherexception);19.}20.finally{21.system.out.println(finally);22.}23.}24.system.out.println(alldone);25.}26.}a.theapplicationcompilesbutdoesntprintanything.b.theapplicationcompilesandprintdonewaitingc.theapplicationcompilesandprintfinallyd.theapplicationcompilesandprintalldonee.theapplicationcompilesandprintinterrupted解答:a點評:在java中,每壹種對象均有鎖。任何時候,該鎖都至多由壹種線程控制。由于alias1與alias2指向同壹對象z,在執(zhí)行第11行前,線程擁有對象z的鎖。在執(zhí)行完第11行後來,該線程釋放了對象z的鎖,進入等待池。但此後沒有線程調(diào)用對象z的notify()和notifyall()措施,因此該進程壹直處在等待狀態(tài),沒有輸出。例題10:whichstatementorstatementsaretrueaboutthecodelistedbelow?choosethree.1.publicclassmytextareaextendstextarea{2.publicmytextarea(intnrows,intncols){3.enableevents(awtevent.text_event_mask);4.}5.6.publicvoidprocesstextevent(texteventte){7.system.out.println(processingatextevent.);8.}9.}a.thesourcecodemustappearinafilecalledmytextarea.javab.betweenlines2and3,acallshouldbemadetosuper(nrows,ncols)sothatthenewcomponentwillhavethecorrectsize.c.atline6,thereturntypeofprocesstextevent()shouldbedeclaredboolean,notvoid.d.betweenlines7and8,thefollowingcodeshouldappear:returntrue.e.betweenlines7and8,the

溫馨提示

  • 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
  • 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責(zé)。
  • 6. 下載文件中如有侵權(quán)或不適當內(nèi)容,請與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。

最新文檔

評論

0/150

提交評論