欢迎来到天天文库
浏览记录
ID:38031701
大小:53.00 KB
页数:6页
时间:2019-05-24
《Core Java测试题》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、CoreJava第二阶段测试题本试题共3个部分,满分100分第一部分选择题10*1分、第二部分阅读程序5*2分、第三部分编程题16*5分一、选择题1.下列哪个是合法的Java标识符?(C)A、Tree&GlassesB、caseC、_$theLastOneD、273.52.JavaApplication源程序的主类是指包含有(A)方法的类。A、main方法B、toString方法C、init方法D、actionPerfromed方法3.Java的字符类型采用的是Unicode编码方案,每个Unicode码占用(
2、B)位。A、8B、16C、32D、644.编译Java Application源程序文件将产生相应的字节码文件,这些字节码文件的扩展名为(B)。 A、.Java B、.class C、.html D、.exe5.若a的值为3时,下列程序段被执行后,c的值是多少?(C)c=1;if(a>0)if(a>3)c=2;elsec=3;elsec=4;A、1B、2C、3D、46.以下语句不能通过编译的是(D)。A.int[]a={1,2,3,4};B.intb[];C.intc[]=newint[3];D.
3、intd=newint[];7.在switch(表达式)语句中,表达式的类型不能为(C)。 A、byte B、char C、long D、int8.设有下面两个类的定义:classPerson{}classStudentextendsPerson{longid;//身份证号intscore;//入学总分Stringname;//姓名intgetScore(){returnscore;}}-6-问:类Person和类Student的关系是(B)。A、包含关系B、继承关系C、关联关系D、无关系,上述类
4、定义有语法错误9.设有下面的两个类定义:classAA{voidShow(){System.out.println(“我喜欢Java!”);}classBBextendsAA{voidShow(){System.out.println(“我喜欢C++!”);}则顺序执行如下语句后输出结果为:(A)AAa;BBb;a.Show();b.Show();A、我喜欢Java!B、我喜欢C++!我喜欢C++!我喜欢Java!C、我喜欢Java!D、我喜欢C++!我喜欢Java!我喜欢C++!10.设有下面的一个类定义:c
5、lassAA{staticvoidShow(){System.out.println(“我喜欢Java!”);}}classBB{voidShow(){System.out.println(“我喜欢C++!”);}}已经使用AA类创建对象a和BB类创建对象b,则下面哪一个方法调用是正确的:(C)A、a.Show()B、AA.Show();b.Show()BB.Show();C、AA.Show();D、a.Show();b.Show();BB.Show();二、阅读程序,写出运行结果1、publicclassWa
6、iter{ intvar; Waiter(intvar){ this("Welcome"); } Waiter(Strings){ this(); System.out.println(s); } Waiter(){ System.out.println("Good-bye"); } publicstaticvoidmain(String[]args){-6- Waitert=newWaiter(1); } }Good-byeWelcome2.
7、classC0{ publicC0(intx){ System.out.println("C0"+x); } C0(){System.out.println("C0");} } classC1extendsC0{ publicC1(intx){super(1); System.out.println("C1"+x); } publicstaticvoidmain(Stringargs[]){ newC1(1); } }Key:C0C113.importjava.
8、io.*;publicclassabc{publicstaticvoidmain(Stringargs[]){Strings1="Hello!";Strings2=newString("World!");System.out.println(s1.concat(s2));}}Key:Hello!World!4.classA{ publicintgetNumber(inta){
此文档下载收益归作者所有