欢迎来到天天文库
浏览记录
ID:57646498
大小:110.50 KB
页数:16页
时间:2020-08-30
《下面哪些是short型的取值范围write-by-yangmaopu.doc》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、单选题(2'):1.下面哪些是short型的取值范围。A.-2(7)-2(7)-1B.0–2(16)-1C.-2(15)–2(15)-1D.-2(16)–2(16)-12.哪些是将一个八进制值赋值给一个long型变量A.longnumber=345L;B.longnumber=0345;C.longnumber=0348L;D.longnumber=0x345L3.哪些不是Java关键字A.voidB.SizeofC.ConstD.Super4.Given:Packagegeometry:PublicclassHypotenuse
2、{PublicInnerTriangleit=newInnerTriangle();ClassInnerTriangle{Publicintbase;Publicintheight;}}以下陈述中哪个类的对象可以引用变量base。A.任意类都可以访问。B.没有类可以访问base。C.Geometry中的类可以访问base。D.必须是Hypotenuse的子类才可以访问base。5.Given:35.String#name="JaneDoe";36.int$age=24;37.Double_height=123.5;38.doubl
3、e~temp=37.5;哪一个是正确的.A.Line35willcompile.B.Line36willnotcompile.C.Line37willnotcompile.D.Line38willnotcompile.6.Given:publicclassTest{publicstaticvoidmain(String[]args){intx=5;booleanb1=true;booleanb2=false;if((x==4)&&!b2)System.out.print("l");System.out.print("2");if(
4、(b2=true)&&b1)System.out.print("3");}}结果是什么。A.2B.3C.12D.23E.123F.Compilationfails.G.Anexceptionalisthrownatruntime.7.Given:publicclassClassA{publicintgetValue(){intvalue=0;booleansetting=true;Stringtitle="Hello";if(value
5、
6、(setting&&title=="Hello")){return1;}if(value==
7、1&title.equals("Hello")){return2;}}}And:ClassAa=newClassA();a.getValue();Whatistheresult?A.1B.2C.Compilationfails.D.Thecoderunswithnooutput.E.Anexceptionisthrownatruntime.8.Given:intx=0;inty=10;do{y--;++x;}while(x<5);System.out.print(x+","+y);Whatistheresult?A.5,6B.5,
8、5C.6,5D.6,69.Given:intx=12;26.while(x<10){27.x--;28.}29.System.out.print(x);Whatistheresult?A.0B.10C.12D.Line29永远没有结果.E.抛出异常。10.ClicktheExhibitbutton.1.publicclassTest{2.intx=12;3.publicvoidmethod(intx){4.x+=x;5.System.out.println(x);6.}7.}Given:34.Testt=newTest();35.
9、t.method(5);第5行的输出结果是什么?A.5B.10C.12D.17E.2411.GiventhecommandlinejavaPass2and:15.publicclassPass2{16.publicvoidmain(String[]args){17.intx=6;18.Pass2p=newPass2();19.p.doStuff(x);20.System.out.print("mainx="+x);21.}22.23.voiddoStuff(intx){24.System.out.print("doStuffx="
10、+x++);25.}26.}Whatistheresult?A.Compilationfails.B.AnexceptionisthrownatC.doStuffx=6mainx=6D.doStuffx=6mainx=7E.doStuffx=7ma
此文档下载收益归作者所有