欢迎来到天天文库
浏览记录
ID:18565924
大小:67.50 KB
页数:11页
时间:2018-09-18
《scjp mock exam 3.doc》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、SCJPMockExam3Question1)Whatwillhappenwhenyouattempttocompileandrunthiscode?abstractclassBase{abstractpublicvoidmyfunc();publicvoidanother(){System.out.println("Anothermethod");}}publicclassAbsextendsBase{publicstaticvoidmain(Stringargv[]){Absa=newAbs();a.amethod();}publicvoidmyfunc(){System.out.prin
2、tln("MyFunc");}publicvoidamethod(){myfunc();}}1)Thecodewillcompileandrun,printingoutthewords"MyFunc"2)ThecompilerwillcomplainthattheBaseclasshasnonabstractmethods3)ThecodewillcompilebutcomplainatruntimethattheBaseclasshasnonabstractmethods4)Thecompilerwillcomplainthatthemethodmyfuncinthebaseclasshas
3、nobody,nobodyatalltoloooveitAnswertoQuestion1--------------------------------------------------------------------------------Question2)Whatwillhappenwhenyouattempttocompileandrunthiscode?publicclassMyMain{publicstaticvoidmain(Stringargv){System.out.println("Hellocruelworld");}}1)Thecompilerwillcompl
4、ainthatmainisareservedwordandcannotbeusedforaclass2)Thecodewillcompileandwhenrunwillprintout"Hellocruelworld"3)Thecodewillcompilebutwillcomplainatruntimethatnoconstructorisdefined4)ThecodewillcompilebutwillcomplainatruntimethatmainisnotcorrectlydefinedAnswertoQuestion2-------------------------------
5、-------------------------------------------------Question3)WhichofthefollowingareJavamodifiers?1)public2)private3)friendly4)transient5)vagrantAnswertoQuestion3--------------------------------------------------------------------------------Question4)Whatwillhappenwhenyouattempttocompileandrunthiscode
6、?classBase{abstractpublicvoidmyfunc();publicvoidanother(){System.out.println("Anothermethod");}}publicclassAbsextendsBase{publicstaticvoidmain(Stringargv[]){Absa=newAbs();a.amethod();}publicvoidmyfunc(){System.out.println("Myfunc");}publicvoidamethod(){myfunc();}}1)Thecodewillcompileandrun,printingo
7、utthewords"MyFunc"2)ThecompilerwillcomplainthattheBaseclassisnotdeclaredasabstract.3)ThecodewillcompilebutcomplainatruntimethattheBaseclasshasnonabstractmethods4)Thecompilerwillcomplainthatthemethodmy
此文档下载收益归作者所有