《2020年度JAVA等级考试题库.pdf》由会员分享,可在线阅读,更多相关《2020年度JAVA等级考试题库.pdf(59页珍藏版)》请在taowenge.com淘文阁网|工程机械CAD图纸|机械工程制图|CAD装配图下载|SolidWorks_CaTia_CAD_UG_PROE_设计图分享下载上搜索。
1、最新JAVA等级考试题库资料仅供参考1、下面关于变量及其作用范围 的 陈 述 哪 个 是 不 正 确?(B)A.实例变量是类的成员变量。B.实例变量用关键字static声明。/Static声明的是类变量C.在方法中定义的局部变量在该方法被执行时创立。D.局部变量在使用前必须被初始化。2、下面哪条语句把方法声明为抽象的公共方法?(B)A.public abstract methodQ;B,public abstract voidmethod();C public abstract voidmethod()D.public void method()extends abstract;赋 值 给 一
2、 个lo n g型变量?(D)A.long number=345L;B.long number=0345;C.long number=0345L;D.long number=0 x345L;4、下面的哪个赋值语句是不正确?(A)A.float f=11.1;B.double d=5.3E12;C.double d=3.14159;D.double d=3.14D;5、下面哪个是不合法的标识符?(C)A.$persons;B.TwoUsers;C.*point;D.endline;6、若在某一个类定义中定义有如下的方法:final voidaFinalFunction();3、哪个是将一个十六进
3、制值资料仅供参考则该方法属于同。这种面向对象程序的(C)OA、本地方法 B、静态方法 C、最终方法D、抽象方法7、main 方法是 JavaApplication程序执行的入口点,关于main方法的方法头以下哪项是合法的(B)oA、public static voidmain()B、public static voidmain(String args)C public static intmain(String args)D、public voidmain(String arg)8、在Java中,一个类可同时定义许多同名的方法,这些方法的形式参数个数、类型或顺序各不相同,传回的值也能够不相特性
4、称为(C)OA、隐藏 B、覆盖C、重载 D、Java不支持此特性9、在 Java applet 程序中,用户自定义的Applet子类常常覆盖父类的(D)方法来完成applet界面的初始化工作。A、start()B、stop()C、init()D、paint()10、以下代码段执行后的输出结果为(C)Oint x=-3;floaty=10.0f;System.out.println(y%x);A、不能成功编译 B、-1.0 C、1.0D、-111、下列关于构造方法的叙述中,错误的是(c)资料仅供参考A.Java语言规定构造方法名与类名必须相同B.Java语言规定构造方法没有返回值,但 不 用vo
5、id声明C.Java语言规定构造方法不能够重载D.Java语言规定构造方法只能经过new自动调用12、关于被私有访问控制符private修饰的成员变量,以下说法正确的是(C)A.能够被三种类所引用:该类自身、与它在同一个包中的其它类、在其它包中的该类的子类B.能够被两种类访问和引用:该类本身、该类的所有子类C.只能被该类自身所访问和修改D.只能被同一个包中的类访问13、执行完以下代码代t x=new int10;后,以下哪 项 说 明 是 正 确 的(A)A.x9为 0B.x9未定义C.x10为 0D.x0为空14、类Testi定义如下:1.public classTesti2.publicf
6、loat aMethod(floata,float b)3.4.)将以下哪种方法插入行3是不合法的。(B)A、public floataMethod(float a,float b,资料仅供参考float c)B、public floataMethod(float c,float d)C、public intaMethod(int a,intb)D、private floataMethod(int a,int b,intc)15、阅读以下代码:public class foopublic static void main(String args)String s;System.out.prin
7、tln(1*s=H+s);)输出结果应该是:(C)A.代码得到编译,并输出%=B.代码得到编译,并输出C由于Strings没有初始化,代码不能编译经过D.代码得到编译,但捕获到NuIlPointException 异常1 6、下述概念中不属于面向对象方法的是(D )。A.对象、消息B 继承、多态C.类、封装D.过程调用1 7、编译并运行以下程序,以下描述哪个选项是正确的(D )o1.class A2.protected StringtoString()3.returnsuper.toString();4.)A、行2出错,不能成功编 译B、编译经过但运行时出错资料仅供参考C、编译经过运行无异常
8、B、D、不能成功编译,A行3出错18、假设Foo类有如下定义,设f是Foo类的一个实例,下列语句调用哪个是错误的?(A)public class Foo int i;static String s;void imethod()static void smethod()A、Foo.imethod();B、f.imethodO;C、System.out.println(f.i);D、Foo.smethodO19、以下哪个接口的定义是正确的?(D )A、interface A void print();abstract interface void print();C abstract interf
9、aceA extends II,12/II、12为已定义的接口 abstract voidprint();D、interface A void print();20、关于以下程序段,正确的说法是(C )1.String sl=a+b;2.String s2=new String(s i);3.if(sl=s2)4.System.out.println(=is succeeded);5.if(sl.equals(s2)6.System.out.println(66.equals()issucceeded99);A.行4与 行6都将执资料仅供参考B.行 4 执行,行 6 不执行C.行 6 执行,行
10、 4 不执行D.行 4、行 6 都不执行21、下列哪些标识符是不合法的?(B)A:_underscoreB:5IntelC:Intel5D:$value$22、对数组的定义及初始化不正确的方法是:(B)A intarray;B.int array8;C.int array=newint8;D.int array=new int8;23、下面哪个表示式正确?(D)A.float f=1.3;B.char c=nan;C.byteb=257;D.int i=10;24、下面程序运行结果为:(D)public class test3public static voidmain(String args
11、)int count=0;for(inti=0;i System.out.println(a.i);B、a.methodl();C、A.methodl();D、A.method2()39、A 派生出子类B,B 派生出子类C,而且在Java源代码中有如下声明:1.A aO=new A();2.A al=new B();3.A a2=new C();问 以 下 哪 个 说 法 是 正 确的?(D)A、只有第1 行能经过编译B、第 1、2 行能经过编译,但第 3 行编译出错C、第 1、2、3 行能经过编译,但第2、3 行运行时出错D、第 1 行、第 2 行和第3 行的声明都是正确的40、以下哪个接口
12、的定义是正确的?(A)A、interface B void print();B abstract interface B void print();C、abstract interface Bextends A1,A2 A1、A2 为已定义的接口 abstract voidprint();D、interface B资料仅供参考 void print();41、下面的哪个赋值语句是正确的?(D)A、short myshort=99s;B、String name=Excellent;C、char c=17c;D、int z=015;42、下面哪个不是Java的保留字或关键字?(B)A、defaul
13、tB NULLc、throwsD.long43、下面哪个是Math类中正确的方法?(A)A、random()B、RandomQC square()D sqr()44、编译并运行以下程序段的结果是:(B)public static void main(Stringargs)Frame f=new Frame(“Visual”);f.setSize(300,300);f.setVisible(true);Point p=f.getLocation();System.out.println(uxis+p.x);System.out.println(66yis+p.y);)A、x is 300y is
14、 300B、x is 0y isOC xisOy is 300D、x is 300y isO45、下面哪个不是Thread类的方法?(C)A、yield()资料仅供参考B、sleep(long msec)C、go()D、stop()4 6、下 面 哪 个 不 是Collection 接口的方法?(A)A、iteratorB、isEmptyC toArrayD、setText47、下面哪个不是String类的方法?(C)A、subStringOB、starts With()C、toStringOD、toUpperCaseO48、编译并运行以下程序段的结果是:(D)public class MyC
15、lassfinal static int i;MyClass()i=0;public static voidmain(String args)System.out.printlii(i);)A、编译出错B、nullC、1D、049、下面哪条语句是正确的?(B)A:short snum=99s;B:String name=6ClassName is:03076;C:char c=17c;D:float f=3.4f;50、下面哪个语句(初始化数组)是不正确的:(B)A:int x=1,2,3;B:int x3=1,2,3;C:int x=1,2,3;D:int x=new int口 1,2,3;
16、5 1、下面方法中的“返回类型 T y p e”应该是什么?(A )p u b l i c c l a ss R e t u r n l t r e t u r n T y p e m e t h o d A(b y t ex,d o u b l e y)r e t u r n (sh o r t)x /y *2;)A.double B.intC.byte D.short5 2、下面哪一个表示式是正确的?(D )A、b y t e=1 2 8;B、B o o l e a n 二 n u l l;C、l o n g l=0 x f f f L;资料仅供参考5 3、下面哪个修饰符修饰的变量是所有同
17、一个类生成的对象共享的?(C )A、p u b lic B、p r iv a t eC、s t a t ic D、fina l5 4、下面关于ja v a 中类的说法哪个是不正确的?(C )A、类体中只能有变量定义和成员方法的定义,不能有其它语句。B、构造函数是类中的特殊方法。C、类一定要声明为p u b lic的,才能够执行。D、一个ja v a 文件中能够有多个c la s s 定义。5 5、下列哪个类声明是正确的?(D )D、do u b le=0.9 2 3 9 d;资料仅供参考A、a b s t r a c t fina l c la s s 5 7、下面关于 Vec t o r 类
18、的说H l B、a b s t r a c t p r iv a t em o v e()C、p r o t ec t ed p r iv a t enu m b er;D、p u b lic a b s t r a c tc la s s C a r 5 6、方法重载是指(C )A.两个或两个以上的方法取相同的方法名,但形参的个数或类型不同B.两个以上的方法取相同的名字和具有相同的参数个数,但形参的类型能够不同C.两个以上的方法名字不同,但形参的个数或类型相同D.两个以上的方法取相同的方法名,而且方法的返回类型相同法 正 确 的 是(B )A.类 Vec t o r 在 ja v a,u t
19、 il包中。B.一个向量(Vec t o r)对象存放的是一组有序的对象。C.一个向量(Vec t o r)对象大小能够根据存放的元素个数的增加而自动增加。D.一个向量(Vec t o r)对象中每个元素能够是不同类型的对象。5 8、下列方法中,哪一个不是A p p let的基本方法?(A )A、init ()B、r u n()C、s t o p ()D、s t a r t ()5 9、哪个布局管理器使用的是组件的最佳尺寸?(B )A.F lo w L a y o u tB o r der L a y o u tC.G r idL a y o u t D.C a r dL a y o u t6
20、 0、F r a m e的默认的布局管理器是下列哪一个?(C )A.F lo w L a y o u tB.B o r der L a y o u tC.G r idL a y o u tD.C a r dL a y o u t6 1、下列哪个用户图形界面组件在软件安装程序中是常见的?(A )A.滑块 B.进度条C.对话框 D.标签6 2、包含可单击按钮的类的J a v a 类库是哪个?A.A WT B.S w ingC.二者都有 D.二者都没有资料仅供参考B.6 3、下面的哪个用户界面组件不是容器?(A )A.J S c r o llP a neB.J F r a m eC.J Windo
21、w sD.J S c r o llB a r6 4、在下列事件处理机制中哪个不是机制中的角色?(D )A.事件B.事件源C.事件接口D.事件处理者6 5.欲构造A r r a y L is t 类的一个实例,此类继承了 L is t 接口,下列哪个方法是正确的?(A )A、A r r a y L is t m y L is t=newO b jec t ();资料仅供参考B、L is t m y L is t=newA r r a y L is t ();C、A r r a y L is t m y L is t=newL is t ();D、L is t m y L is t=new L i
22、s tO;6 6 .p a int ()方法使用哪种类型的参数?(A )A、G r a p hic sB、G r a p hic s 2 DC、S t r ingD、C o lo r6 7.指出正确的表示式(D )A、b y t e=1 2 8;B、B o o lea n=nu ll;C、lo ng l=0 x fffL;D、do u b le=0.9 2 3 9 d;6 8.指出下列程序运行的结果(A )p u b lic c la s s E x a m p leS t r ing s t r=newS t r ing(go o d);c ha r c h=a ,b ,c ;p u b l
23、ic s t a t ic v o idm a in(S t r ing a r gs)E x a m p le ex=newE x a m p le();ex.c ha nge(ex.s t r,ex.c h);S y s t em,o u t.p r int (ex.s t r+a nd);S y t em.o u t.p r int (ex.c h);)p u b lic v o idc ha nge(S t r ing s t r,c ha rc h)s t r=t es t o k”;c h0=g,;)A、go o d a nd a b cB、go o d a nd gb cC、t
24、es t o k a nd a b c资料仅供参考D、t es t o k a nd gb c D、程序会运行和启动6 9.运行下列程序,会产生什么 结 果(C )p u b lic c la s s X ex t endsT hr ea d im p lem ent sR u na b lep u b lic v o id r u n()S y s t em,o u t.p r int in(t hisis r u n()”);)p u b lic s t a t ic v o idm a in(S t r ing a r gs)|T hr ea d t=newT hr ea d(new X
25、();t.s t a r t ();)A、第一行会产生编译错误B、第六行会产生编译错误C、第六行会产生运行错误70.要从文件 f il e.d a t 文件中读出第10个字节到变量C中,下列哪个方法适合?(B)A、Fil e l n putS tre a min=n e wFil e l n putS tre a m(z,f il e.d at);in.sk ip(9);in tc=in.re a d();B、Fil e l n putS tre a min=n e wFil e l n putS tre a m(/zf il e.d at);in.sk ip(10);in tc=in.re
26、a d();C、Fil e l n putS tre a min=n e wFil e l n putS tre a m(f il e.d at);in t c=in.re a d ();D、R a n d om Ac c e ssFil ein=n e wR a n d om Ac c e ssFil e(/zf il e.da t);in.sk ip(9);in t资料仅供参考c=in.re a d By te ();71,容器被重新设置大小后,哪种布局管理器的容器中的组件大小不随容器大小的变化而改变?(A)A、Ca rd L a y outB、Fl ow L a y outC、Bord
27、e rL a y outD、Grid L a y out72,给出下面代码:pub l ic c l a ss Pe rson sta tic in t a rr =n e w in t 10;pub l ic sta tic voidm a in(S trin g a )|S y ste m,out.prin tin(a rr 1D;)那个语句是正确的?(C)A、编译时将产生错误;B、编译时正确,运行时将产生错误;C、输出零;D、输出空。73.哪个关键字能够对对象加互斥锁?(B)A、tra n sie n tB、sy n c hron iz e dC、se ria l iz eD、sta t
28、ic74.下列哪些语句关于内存回收的说明是正确的?(B)A、程序员必须创立一个线程来释放内存;B、内存回收程序负责释放无用内存C、内存回收程序允许程序员直接释放内存资料仅供参考D、内存回收程序能够在指定的时间释放内存对象75.下列代码哪几行会出错:(C)1)pub l ic void m od if y()(2)in t I,j,k;3)I=100;4)w hil e (I 0)5)j =I*2;6)S y ste m,out.prin tin (T he va l ue of j is +j );7)k =k +1;8)I;9)10 )A、l in e 4B、l in e 6C、l in e
29、 7D、l in e 876.M AX _ L EN GT H 是 in t 型pub l ic成员变量,变量值保持为常量100,用简短语句定义这个变量。(B)A、pub l ic in tM AX _ L EN GT H=100;B、f in a l in tM AX _ L EN GT H=100;C、f in a l pub l ic in tM AX _ L EN GT H=100;D、pub l ic f in a l in tM AX _ L EN GT H=100.77.给出下面代码:1)c l a ss Pa re n t 2 priva te S trin gn a m e;
30、3 pub l ic Pa re n t()4)5)pub l ic c l a ssChil d e x te n d s Pa re n t 6 priva te S trin gd e pa rtm e n t;7 pub l ic Chi Id ()8 pub l ic S trin gge tV a l ue()re turnn a m e;9 pub l ic sta ticvoid m a in(S trin g a rg )(10 Pa re n t p=n e wPa re n t();11)12)那些行将引起错误?(A)A、第 3 行B、第 6 行C、第 7 行D、第 8
31、行78.类 T e a c he r 和 S tud e n t是类Pe rson 的子类;Pe rson p;T e a c he r t;S tud e n t s;/p,t a n d s a rea l l n on-n ul l.if(t in sta n c e ofPe rson)s=资料仅供参考(S tud e n t)t;最后一句语句的结果是:(B)A、将构造一个S tud e n t对象;B、表示式是合法的;C、表示式是错误的;D、编译时正确,但运行时错误。79,给出下面代码段1)pub l ic c l a ss T e st(2 in t m,n;3 pub l ic
32、T e st()4 pub l ic T e st(in ta)m=a;5)pub l ic sta ticvoid m a in(S trin g a rg )(6 T e st tl,t2;7 in t j,k;8 j=0;k=0;9 tl=n e w T e st();资料仅供参考10 t2=n e w7 pub l ic voidprin tV a l ue(in t i).8 pub l ic sta ticvoid m a in(S trin ga rgs )9 Pe rson t=n e wT e a c he r();10)t.prin tV a l ue(10);11 )第
33、10行语句将调用哪行语句?(B)A、l in e 2B、l in e 3C、l in e 6D、l in e 781.哪个关键字能够抛出异常?(C)A、tra n sie n t B、f in a l l yC、throwT e st(j,k);11)12 哪行将引起一个编译时错误?(C)A、l in e 3B、l in e 5C、l in e 6D、l in e 1080.对于下列代码:1)c l a ss Pe rson 2 pub l ic voidprin tV a l ue(in t i,in t j)/.3 pub l ic voidprin tV a l ue(in ti)/.4
34、)5)pub l ic c l a ssT e a c he r e x te n d s Pe rson6)pub l ic voidprin tV a l ue ()/.资料仅供参考D、sta ticre turn s;82.M a in()方法的返回类型是:(B)A、in tB、voidC、b ool e a nD、sta tic83.S y ste m类在哪个包中?(C)A、j a va,utilB、j a va,ioC、j a va,a w tD、j a va,l a n g84.对于下列代码:pub l ic c l a ss Pa re n t(pub l ic in ta d
35、d V a l ue(in t a,in t b)(in t s;s=a+b;)c l a ss Chil d e x te n d sPa re n t()下述哪些方法能够加入类Chil d?(D)A、in t a d d V a l ue(in t a,in t b )/d osom e thin g.B、pub l ic void a d d V a l ue(in t a,in t b )/d osom e thin g.C、pub l ic in ta d d V a l ue(in t a )/d osom e thin g.D、pub l ic in ta d d V a l u
36、e(in t a,in tb )throw s M y Ex c e ption/d o som e thin g.85.给出下面代码:pub l ic c l a ss te st资料仅供参考sta tic in t a =n e w a 10;pub l ic sta tic voidm a in(S trin g a rgs )S y ste m,out.prin tin(a rr l0);)那个选项是正确的?(A)A、编译时将产生错误;B、编译时正确,运行时将产生错误;C、输出零;D、输出空。86.下面哪些选项是正确的m a in方法说明?(B)A、pub l ic m a in(S
37、trin ga rgs )B、pub l ic sta tic voidm a in(S trin g a rgs )C、priva te sta tic voidm a in(S trin g a rgs )D、void m a in()87.给定下面的代码片段:1)S trin g str=n ul l;2)if (str!=n ul l)&(str.l e n gth()10)(3)S y ste m,out.prin tl n(m oretha n 10);4)5)e l se if (str!=n ul l)&(str.l e n gth()e rro r d e f a u l t
38、 c l a u s eno t d e f i ne dD、no o u t pu t d i s pl a y e d那个98.运行下列程序,会产生什么结果:(C )c l a s s Ou t e rl(pri v a t e i nt a;v o i d f o o(d o u b l ed,f i na l f l o a t f)St ri ng s;f i na l b o o l e a n b;c l a s s I nne rv o i dm e t h o d i nne r()Sy s t e m,o u t.pri nt l n(i nt h e I nne r);)
39、pu b l i c s t a t i c v o i dm a i n(St ri ng a rg s)(Ou t e r1 m e=ne wOu t e r 1 ();m e.f o o (1 2 3,1 2 3);Sy s t e m,o u t.pri nt l n(o u t er);)A、i n t h e I nne r o u t e rB、o u t e rC、i n t h e I nne rD、编译不经过99.下面哪个单词是Ja v a 语言的关键字(C )A、F l o a t B、t h i s C、s t ri ng D、u ns i g ne d1 0 0 .下
40、面哪个是Ja v a 语言中正确的标识符(C )A、3 c o m B、i m po rt C、t h a t D、t h i s资料仅供参考1 0 1.下面哪个语句不能定义一个字符变量(D)A、ch a r cl=0 6477;B、ch a r c2=u fa ce,;C、ch a r c4=0 x b eef;D、ch a r c3=u 0 0 41;1 0 2 .下面哪个修饰符修饰的方法只能被本类中的其它方法使用(C)A、p ro t ect ed B、s t a t i cC、p ri v a t e D、p u b l i c1 0 3.下面哪个运算后结果为32 (D)A、2 5 B
41、、(8 2)4C、2 5 D、(2 1)*(32 3)1 0 4.下面哪个是对字符串St ri n g 的 正 确 定 义(A )A、St ri n g s l=n u l l;B St ri n g s 2=,n u l l ;C、St ri n g s 3=(St ri n g)a b c ;D、St ri n gs 4=(St ri n g)t fu fa ce,;1 0 5.下面哪条语句不能定义一 个 f l o a t 型 的 变 量(C)A、fl o a t f1=-343;B、fl o a t f2=3.1 4;C、fl o a t f3=0 x l 2 345;D、fl o a
42、 t f4=2.8F;1 0 6.下面哪条语句定义了 5个元素的数组(B)A 、i n t a=2 2,2 3,2 4,2 5,1 2);B、i n t a =n ew i n t (5);C、i n t 5 a rra y;D、i n t a rr;资料仅供参考1 0 7.下面哪个范围是ch a r型的取值范围(C)A、-2 56 2 55B、一(2 1 5)(2 1 5)-1C、u 0 0 0 0 u ffffD、0 32 7671 0 8.给出一段程序,选择运行结果p u b l i c cl a s s s s s p u b l i c s t a t i c v o i dm a
43、i n(St ri n g a rgs )|St ri n g s l=a rgs l;St ri n g s 2=a rgs 2;St ri n g s 3=a rgs 3;St ri n g s 4=a rgs 4;Sy s t em,o u t.p ri n t i n(“a rgs 2=+s 2);)命令行执行:j a v a s s s 123 4 结果是下面哪一个?(C)资料仅供参考A、a rgs 2=2 B、a rgs 2=n u l l C、a rgs 2=1 D、运行出现异常1 0 9.下面哪个描述是正确的(C)A、A p p l et程序中不需要m a i n。方法,也不能
44、有B、A p p l i ca t i o n程序中能够没有m a i n ()方法。C、A p p l et程序中能够不定义i n i t()方法D、A p p l i ca t i o n程序中必须有ru n()方法1 1 0 .给出一段程序,试判断哪 个 是 正 确 的 结 果(D )p u b l i c cl a s s rt Ex cep t(p u b l i c s t a t i c v o i dt h ro w i t ()Sy s t em,o u t.p ri n t(t h ro w i t );t h ro w n ewR u n t i m eEx cep t
45、i o n ();p u b l i c s t a t i c v o i dm a i n (St ri n g a a)t ry Sy s t em,o u t.p ri n t(h ell o “);t h ro w i t ();ca t ch(Ex cep t i o n re)Sy s t em,o u t.p ri n t(ca ugh t );fi n a l l y Sy s t em,o u t.p ri n t(fi na l l y ”);Sy s t em,o u t.p ri n t(a fter”);)A、h el l o t h ro w i t ca u g
46、h tB、h el l o t h ro w i t ca u gh t资料仅供参考fi n a l l y a ft erC、h el l o t h ro w i tR u n t i m eEx cep t i o n a ft erD、h el l o t h ro w i t ca u gh tfi n a l l y a ft erR u n t i m eEx cep t i o n1 1 1 .对 一 个j a v a源文件a a a.j a v a,编辑保存后但未编译,在其所在目录下执行j a v a a a a,则接着会出现什么(C)A、erro r:ca n n o t
47、rea d:a a a.j a v aB、无任何显示C、Ex cep t i o n i n t h rea dm a i nj a v a.l a n g.No Cl a s s DefFo u ndErro r:a a aD、程序正常执行并显示1 1 2 .编 译j a v a程序时出现erro r:ca n n o t rea d:a a a.j a v a,则下列原因最正确的 是(D)A、原因是执行的当前目录下没有找到a a a.j a v a文件。B、原因是没有安装J DK开发环境。C、原因是j a v a源文件名后缀一定是以.t x t结尾。D、原因是J DK安装后没有正确 设 置
48、 环 境 变 量P A T H和Cl a s s p a t h 。1 1 3.给出一段程序,试判断哪个是正确的结果(B)p u b l i c cl a s s m y p ro gra m p u b l i c s t a t i c v o i d m a i n(St ri n g a rgs )t ry Sy s t em,o u t.p ri n t(H eil o w o rl d );fi n a l l y Sy s t em.o u t.p ri n t l n(“Fi n a l l y ex ecu t i n g);资料仅供参考A、无法编译,因为没有指定异常B、无法
49、编译,因为没有ca t ch子句C、H el l o w o rl dD、H el l o w o rl d Fi n a l l yex ecu t i n g1 1 4.下面哪个是J a v a 语言中正确的标识符(B)A、3D B、$t h i s C、ex t en ds D、i m p l em en t s1 1 5.下面哪个范围是ch a r型的取值范围(C)A、-2 56 2 55 B、-(2 1 5)(2 1 5)-1 C、,u 0 0 0 0,u ffff D、0 32 7671 1 6.下面哪个语句不能定义一个字符变量(D)A、ch a r cl=32 1 0;B、ch
50、a r c2=u fa ce ;D、ch a rc3二”u 0 0 65”;1 1 7.下面哪个是对字符串St ri n g 的 正 确 定 义(A )A、St ri n g s l=n t n u l l”;B、St ri n gs 2=n u l l ;C、St ri n g s 3=(St ri n g)a b c ;D、St ri n gs 4=(St ri n g),u fa ce,;1 1 8.给出下面一段程序,选择运行结果(C)p u b l i c cl a s s X p u b l i c s t a t i c v o i dm a i n(St ri n g a rgs