山大网络《JAVA程序设计》模拟题及标准答案(ABC卷).doc
《山大网络《JAVA程序设计》模拟题及标准答案(ABC卷).doc》由会员分享,可在线阅读,更多相关《山大网络《JAVA程序设计》模拟题及标准答案(ABC卷).doc(21页珍藏版)》请在淘文阁 - 分享文档赚钱的网站上搜索。
1、,.JAVA程序设计模拟题 A一判断题1. Java源代码中定义几个类,编译结果就生成几个以.class为后缀的字节码文件。( )2. 注释的作用是使程序在执行时在屏幕上显示/之后的内容。 ( )3. 有的类定义时可以不定义构造函数,所以构造函数不是必需的。 ( ) 4. 由继承性可知,程序中子类拥有的成员数目一定大于等于父类拥有的成员数目。 ( )5. 抽象方法必须在抽象类中,所以抽象类中的方法都必须是抽象方法 ( )6. java异常处理中可以使用多个catch子句,此时应将高级别异常类的catch子句放在前面。 () 7. Java语言中的数组元素下标总是从0开始,下标可以是整数或整型表
2、达式。 ( )8. Applet是一种特殊的Panel,它是Java Applet程序的最外层容器。( )9. 在Java中对象可以赋值,只要使用赋值号(等号)即可,相当于生成了一个属性与赋值对象相同的新对象。 ( ) 10. System类不能实例化,即不能创建System类的对象。 ( ) 11. 一个线程对象的具体操作是由run()方法的内容确定的,但是Thread类的run()方法是空的,其中没有内容;所以用户程序要么派生一个Thread的子类并在子类里重新定义run()方法,要么使一个类实现Runnable接口并书写其中run()方法的方法体。( )12. 接口是特殊的类,所以接口也
3、可以继承,子接口将继承父接口的所有常量和抽象方法。( )13. 静态初始化器是在其所属的类加载内存时由系统自动调用执行。 ()14. 如果p是父类Parent的对象,而c是子类Child的对象,则语句p=c是正确的。( )15. 所有的鼠标事件都由MouseListener监听接口的监听者来处理 ( )二单项选择题1在编写Java Applet程序时,若需要对发生的事件作出响应和处理,一般需要在程序的开头写上( D )语句。A、import java.awt.* ; B、import java.applet.* ;C、import java.io.* ; D、import java.awt.e
4、vent.* ;2. 关于被私有保护访问控制符private protected修饰的成员变量,以下说法正确的是( c )A、可以被三种类所引用:该类自身、与它在同一个包中的其他类、在其他包中的该类的子类B、可以被两种类访问和引用:该类本身、该类的所有子类C、只能被该类自身所访问和修改D、只能被同一个包中的类访问 3 Java application中的主类需包含main方法,main方法的返回类型是什么?( d )A、int B、float C、double D、void4. 设有下面两个类的定义: class Person class Student extends Person long
5、 id; / 身份证号 int score; / 入学总分 String name; / 姓名 int getScore() return score; 则类Person和类Student的关系是( b )。A、包含关系 B、继承关系 C、关联关系 D、上述类定义有语法错误5 . 容器Panel和Applet缺省使用的布局编辑策略是( c )A、FlowLayoutB、BorderLayout C、GridLayout D、CardLayout6. 执行完以下代码int x = newint25;后,以下哪项说明是正确的( a )A、x24为0B、x24未定义C、x25为0 D、x0为空7.
6、编译并运行以下程序,以下描述哪个选项是正确的( a )1. class X2.protected String toString()3.return super.toString();4.A、编译通过运行无异常B、编译通过但运行时出错、C、行2出错,不能成功编译D、不能成功编译,行3出错8. 以下哪个不是Java的关键字?( a )A、FALSE B、const C、this D、void9. 有程序如下,关于程序的描述哪个是正确的?( c )public class Person static int arr = new int10;public static void main(Strin
7、g a) System.out.println(arr0); A、编译将产生错误B、编译时正确,但运行时将产生错误C、正确,输出0 D、正确,输出null10. 以下声明合法的是( b )A、default String s;B、public final static native int w( )C、abstract double d;D、abstract final double hyperbolicCosine( )11. 关于以下application的说明,正确的是( c )1class StaticStuff2 3. static int x=10;4. static x+=5;5
8、. public static void main(String args )6. System.out.println(“x=” + x);7. 8. static x/=3;9. A、4行与8行不能通过编译,因为缺少方法名和返回类型B、8行不能通过编译,因为只能有一个静态初始化器C、编译通过,执行结果为:x=5D、编译通过,执行结果为:x=312. 在使用interface声明一个接口时,只可以使用( a )修饰符修饰该接口。A、public B、protected C、private protected D、private13. 关于以下程序代码的说明正确的是( d )class Has
9、Static private static int x=100; public static void main(String args ) HasStatic hs1=new HasStatic( ); hs1.x+; HasStatic hs2=new HasStatic( ); hs2.x+; hs1=new HasStatic( ); hs1.x+;HasStatic.x- -; System.out.println(“x=”+x); A、5行不能通过编译,因为引用了私有静态变量B、10行不能通过编译,因为x是私有静态变量 C、程序通过编译,输出结果为:x=103D、程序通过编译,输出
10、结果为:x=10214. 关于以下程序段,正确的说法是( c )1. String s1=”abc”+”def”;2. String s2=new String(s1);3. if(s1= =s2)4. System.out.println(“= = succeeded”);5. if (s1.equals(s2)6. System.out.println(“.equals() succeeded”);A、行4与行6都将执行B、行4执行,行6不执行C、行6执行,行4不执行C、行4、行6都不执行15. 以下说法哪项是正确的( a )class MyListenerextends MouseAda
11、pter implements MouseListenerpublic void mouseEntered(MouseEvent mev)System.out.println(Mouse entered.); A、以上代码可通过编译B、不能通过编译,因为没有实现MouseListener接口中的所有方法C、不能通过编译,因为类头定义不能分行D、能通过编译,若组件用该类作为Mouse的监听者并且接收了mouse-exited事件,则在执行过程中会抛出异常三程序阅读题1阅读以下程序:import java.io.*;public class AboutFilepublic static void
12、main(String args)BufferedReader b=new BufferedReader (new InputStreamReader(System.in);String s;System.out.flush();s=b.readLine();System.out.println(“String is:”+s);运行以上程序,若从键盘输入:JAVA则输出结果为_String is:JAVA_。2阅读以下程序,输出结果为_ 1 2 3_。class C1 C1 () System.out.print (1 ); class C2 extends C1 C2() System.ou
13、t.print (2 ); public class C3 extends C2 C 3() System.out.println(3 ); public static void main(String args) C3 c = new C3( ); 3阅读以下程序,输出结果为_3_。import java.io.*;public class ATest public static void main(String args) SubClass sb = new SubClass( ); System.out.println(sb.add( ); class SuperClass int a
14、= 1 , b = 2 ; class SubClass extends SuperClass int add( ) return a+b; 4以下程序段的输出结果为_ Value is two_value is 2_。int j=2;switch ( j ) case 2:System.out.print(“Value is two.”);case 2+1 :System.out.println(“Value is three.”);break; default:System.out.println(“value is “+j);break;5阅读以下程序:class AExamplepub
15、lic static void main(String args)String s, s1=”;char c;s=args0;for( int i=0; i=a&c=A&c=Z)s1=s1+Character.toLowerCase(c);System.out.println(s1);若在命令行输入以下命令:java AExample helloWORLD则程序的输出为_。6阅读以下程序段:class Parentvoid printMe()System.out.println(“parent”);class Child extends Parentvoid printMe()System.o
16、ut.println(“child”);void printAll()super.printMe();this.printMe();printMe(); public class Test_thispublic static void main(String args )Child myC=new Child();myC.printAll();输出结果为:7以下程序段的输出结果为_。public class ABC public static void main(String args ) int i , j ;int a = 2,1,3,5,4; for ( i = 0 ; i a.leng
17、th-1; i + ) int k = i; for ( j = i ; j a.length ; j+ ) if ( ajak ) k = j; int temp =ai; ai = ak; ak = temp; for ( i =0 ; ia.length; i+ ) System.out.print(ai+ ); System.out.println( ); 参考答案:解:1 String is: JAVA5HELLOworld21 2 36parent child child3371 2 3 4 54value is two Java程序设计模拟题 B一、选择题1编译Java Appl
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- JAVA程序设计 网络 java 程序设计 模拟 摹拟 标准答案 abc
限制150内