2024年全国软考程序员考试部分例题_第1页
2024年全国软考程序员考试部分例题_第2页
2024年全国软考程序员考试部分例题_第3页
2024年全国软考程序员考试部分例题_第4页
2024年全国软考程序员考试部分例题_第5页
已阅读5页,还剩14页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

全国软考程序员考试部分例題全国软考程序员考试部分例題全国软考程序员考试部分例題例題1:choosethethreevalididentifiersfromthoselistedbelow.a.idolikethelongnameclassb.$bytec.constd._oke.3_case解答:a,b,d點评:java中的標示符必须是字母、美元符($)或下划线(_)開頭。关键字与保留字不能作為標示符。选项c中的const是java的保留字,因此不能作標示符。选项e中的3_case以数字開頭,违反了java的规则。例題2:howcanyouforcegarbagecollectionofanobject?a.garbagecollectioncannotbeforcedb.callsystem.gc().c.callsystem.gc(),passinginareferencetotheobjecttobegarbagecollected.d.callruntime.gc().e.setallreferencestotheobjecttonewvalues(null,forexample).解答:a點评:在java中垃圾搜集是不能被强迫立即执行的。调用system.gc()或runtime.gc()静态措施不能保证垃圾搜集器的立即执行,由于,也許存在著更高优先级的线程。因此选项b、d不對的。选项c的錯误在于,system.gc()措施是不接受参数的。选项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在编译時會自動转化為壹种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类型的体現式。逻辑操作有tandleextendsshape{}c.publicinterfacecolorable{}publicclassshapeimplementscolorable{}d.publicclassspecies{}publicclassanimal{privatespeciesspecies;}e.interfacecomponent{}classcontainerimplementscomponent{privatecomponent[]children;}解答:d,e點评:在java中代码重用有两种也許的方式,即组合(hasa关系)和继承(isa关系)。hasa关系是通過定义类的属性的方式实現的;而isa关系是通過类继承实現的。本例中选项a、b、c体現了isa关系;选项d、e体現了hasa关系。例題6:whichtwostatementsaretruefortheclassjava.util.treeset?(choosetwo)a.theelementsinthecollectionareordered.b.thecollectionisguaranteedtobeimmutable.c.theelementsinthecollectionareguaranteedtobeunique.d.theelementsinthecollectionareaccessedusingauniquekey.e.theelementsinthecollectionareguaranteedtobesynchronized解答:a,c點评:treeset类实現了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的内容显示出来,并且最左的字符的基线從(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,在执行第11行前,线程拥有對象z的锁。在执行完第11行後来,该线程释放了對象z的锁,進入等待池。但此後没有线程调用對象z的notify()和notifyall()措施,因此该進程壹直处在等待状态,没有输出。例題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. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论