收藏 分享(赏)

10年JAVA模拟试题A.doc

上传人:w89153 文档编号:6897196 上传时间:2019-04-26 格式:DOC 页数:9 大小:113.50KB
下载 相关 举报
10年JAVA模拟试题A.doc_第1页
第1页 / 共9页
10年JAVA模拟试题A.doc_第2页
第2页 / 共9页
10年JAVA模拟试题A.doc_第3页
第3页 / 共9页
10年JAVA模拟试题A.doc_第4页
第4页 / 共9页
10年JAVA模拟试题A.doc_第5页
第5页 / 共9页
点击查看更多>>
资源描述

1、10年 JAVA 模拟试题 A一 、 单 项 选 择 题 ( 135每 小 题 1分 , 3650每 小 题 2分 , 共 65分 )1. Java 虚拟机(JVM )在运行 JAVA 代码时,不会进行的操作是A)加载代码 B)校验代码 C)编译代码 D)执行代码2. JAVA 程序的并发机制是A)多线程 B)多接口 C)多平台 D)多态性3. 在方法内部使用,代表对当前对象自身引用的关键字是A)super B)This D)Super D)this4. 对鼠标点击按钮操作进行事件处理的接口是A)MouseListener B)WindowsListener C)ActionListener

2、D)KeyListener5. AWT 中用来表示颜色的类是A)Font B)Color C)Panel D)Dialog6. Java 中属于跳转语句的是A)try B)catch C)finally D)break7. 下面说法哪个是正确的( ) A)Applet 可以访问本地文件 B)对 static 方法的调用需要类实例 C)socket 类在 java.lang 中 D)127.0.0.1地址代表本机8. 下列哪个方法可用于创建一个可运行的类( ) A)public class X implements Runable public void run() B)public class

3、 X implements Thread public void run() C)public class X implements Thread public int run() D)public class X implements Runable protected void run()9. Java 编程所必须的默认引用包为( ) A)java.sys 包 B)java.lang 包 C)java.new 包 D )以上都不是 10. Java Applet 源程序文件的扩展名为( )。A).java B).class C).html D).exe11. 设 a = 3,则表达式(-a

4、) = 3; B) s3 = “x“; C) int i = s.length; D) String t = “For “ + s;36. What is written to the standard output given the following statement:System.out.println(4 100Select the right answer: 111A)4 B)5 C)6 D)7 37. What is written to the standard output given the following statement:System.out.println(7

5、|9);Select the right answer:A)0 B)7 C)9 D)1538. Consider the following code:Integer s = new Integer(9);Integer t = new Integer(9);Long u = new Long(9);Which test would return true?A) (s.equals(new Integer(9) B) (s.equals(9)C) (s=u) D)(s=t)39. What should you use to position a Button within an applic

6、ation frame so that the width of the Button is affected by the Frame size but the height is not affected.A) FlowLayout B)GridLayoutC) Center area of a BorderLayout D) North or South of a BorderLayout40. If this source code is contained in a file called SmallProg.java, what command should be used to

7、compile it using the JDK?public class SmallProg public static void main(String args) System.out.println(“Good luck!“); A) java SmallProg B)javac SmallProgC) java SmallProg.java D) javac SmallProg.java41. Which statement about listener is true?A) Most component unallow multiple listeners to be added.

8、B) If multiple listener be add to a single component, the event only affected one listener.C) Component dont allow multiple listeners to be add.D) The listener mechanism allows you to call an addXxxxListener method as many times as is needed, specifying as many different listeners as your design req

9、uire.42. What will be the result when you run the following code?class Aclassvoid go()System.out.println(“Aclass“);public class Bclass extends Aclassvoid goSystem.out.println(“Bclass“);public static void main(String args)Aclass a=new Aclass();Aclass a1=new Bclass();a.go();a1.go();The output is:A)Acl

10、ass B)Bclass C) Aclass D)BclassAclass Bclass Bclass Aclass43. 已知有下列类的说明,则下列哪个语句是正确的?public class Test private float f = 1.0f;int m = 12;static int n=1;public static void main(String arg)Test t = new Test( );A)t.f; B)this.n; C)Test.m; D)Test.f;44. 给定下面的代码片段:1) String str = null;2) if (str != null) 4)

11、 5) else if (str != null) i- )System.out.print(ai+“ “);System.out.println( );3、import java.awt.*;public class AppOut public static void main(String args)new FrameOut();class FrameOut extends Frame Label prompt;FrameOut()super(“西南交通大学“);prompt=new Label(“西南交通大学欢迎您 “);setLayout(new FlowLayout();add(pr

12、ompt);setSize(300,200);show( );4、import java.io.*;public class abc public static void main(String args) SubClass sb = new SubClass( ); System.out.println(sb.max( );class SuperClass int a = 10 , b = 20 ; class SubClass extends SuperClass int max( ) return (ab)?a:b); 三 、 写 出 下 面 程 序 的 运 行 结 果 (每 小 题 5

13、分 , 共 15分 )1、import java.io.*;public class abcpublic static void main(String args)String s1 = “Hello!“;String s2 = new String(“I am fine!“);System.out.println(s1+“ “+s2);2、import java.io.* ;public class abcpublic static void main(String args ) int i , s = 0 ;int a = 1,2,3,4,5,6,7,8,9,10 ;for ( i = 0 ; i =1) break outer;System.out.println(j +“ and “+ i);What will be output?第二、三题参考答案:二、写出下列类完成的功能。(每小题 5分,共20分)1、求 1至100之间的整数的和,并在屏幕上显示出来。2、从标准输入(即键盘)读入10个整数存入整型数组 a 中,然后逆序输出这10个整数。3、创建一个标题为“西南交通大学”的窗框,窗框中显示有“西南交通大学欢迎您”字样的标签。4、求两个数的最大值。三、写出下面程序的运行结果(每小题5分,共15分)1、Hello! I am fine!2、s=303、0 and 0

展开阅读全文
相关资源
猜你喜欢
相关搜索

当前位置:首页 > 企业管理 > 管理学资料

本站链接:文库   一言   我酷   合作


客服QQ:2549714901微博号:道客多多官方知乎号:道客多多

经营许可证编号: 粤ICP备2021046453号世界地图

道客多多©版权所有2020-2025营业执照举报