欢迎来到沃文网! | 帮助中心 分享知识,传播智慧!
沃文网
全部分类
  • 教学课件>
  • 医学资料>
  • 技术资料>
  • 学术论文>
  • 资格考试>
  • 建筑施工>
  • 实用文档>
  • 其他资料>
  • ImageVerifierCode 换一换
    首页 沃文网 > 资源分类 > DOC文档下载
    分享到微信 分享到微博 分享到QQ空间

    《Java程序设计》理论题库—选择题(单选题).doc

    • 资源ID:868820       资源大小:144KB        全文页数:35页
    • 资源格式: DOC        下载积分:10积分
    快捷下载 游客一键下载
    账号登录下载
    微信登录下载
    三方登录下载: QQ登录 微博登录
    二维码
    微信扫一扫登录
    下载资源需要10积分
    邮箱/手机:
    温馨提示:
    快捷下载时,用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)。
    如填写123,账号就是123,密码也是123。
    支付方式: 支付宝    微信支付   
    验证码:   换一换

    加入VIP,下载更划算!
     
    账号:
    密码:
    验证码:   换一换
      忘记密码?
        
    友情提示
    2、PDF文件下载后,可能会被浏览器默认打开,此种情况可以点击浏览器菜单,保存网页到桌面,就可以正常下载了。
    3、本站不支持迅雷下载,请使用电脑自带的IE浏览器,或者360浏览器、谷歌浏览器下载即可。
    4、本站资源下载后的文档和图纸-无水印,预览文档经过压缩,下载后原文更清晰。
    5、试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。

    《Java程序设计》理论题库—选择题(单选题).doc

    1、Java 程序设计理论题库选择题(单选 175题)1.欲构造 ArrayList类的一个实例,此类继承了List 接口,下列哪个方法是正确的( ) A、 ArrayList myList=new Object(); B、 List myList=new ArrayList(); C、 ArrayList myList=new List(); D、 List myList=new List(); 2.paint()方法使用哪种类型的参数( ) A、 Graphics B、 Graphics2D C、 String D、 Color 3.指出正确的表达式( ) A、 byte=128; B、 Bo

    2、olean=null; C、 long l=0xfffL; D、 double=0.9239d; 4.指出下列程序运行的结果( )public class Example String str=new String(good); charch=a,b,c; public static void main(String args) Example ex=new Example(); ex.change(ex.str,ex.ch); System.out.print(ex.str+ and ); Sytem.out.print(ex.ch); public void change(String s

    3、tr,char ch) str=test ok; ch0=g; A、 good and abc B、 good and gbc C、test ok and abc D、 test ok and gbc 5.运行下列程序, 会产生什么结果( ) public class X extends Thread implements Runable public void run() System.out.println(this is run(); public static void main(String args)public void run() System.out.println(this

    4、 is run(); public static void main(String args) Thread t=new Thread(new X(); t.start(); A、 第一行会产生编译错误 B、 第六行会产生编译错误 C、 第六行会产生运行错误 D、 程序会运行和启动 6.要从文件 file.dat文件中读出第 10 个字节到变量 C 中,下列哪个方法适合( )A、 FileInputStream in=new FileInputStream(file.dat); in.skip(9); int c=in.read(); B、 FileInputStream in=new Fil

    5、eInputStream(file.dat); in.skip(10); int c=in.read(); C、 FileInputStream in=new FileInputStream(file.dat); int c=in.read(); D、 RandomAccessFile in=new RandomAccessFile(file.dat); in.skip(9); int c=in.readByte(); 7.容器被重新设置大小后,哪种布局管理器的容器中的组件大小不随容器大小的变化而改变( )A、 CardLayout B、 FlowLayout C、 BorderLayout

    6、D、 GridLayout 8.给出下面代码: public class Person static int arr = new int10; public static void main(String a) System.out.println(arr1); 那个语句是正确的( )A、 编译时将产生错误; B、 编译时正确,运行时将产生错误; C 、输出零; D、 输出空。 9.哪个关键字可以对对象加互斥锁( ) A、 transient B synchronizedC serialize D static 10.下列哪些语句关于内存回收的说明是正确的( )A、 程序员必须创建一个线程来释

    7、放内存; B、 内存回收程序负责释放无用内存 C、内存回收程序允许程序员直接释放内存 D、内存回收程序可以在指定的时间释放内存对象 11.下列代码哪几行会出错 ( )1) public void modify() 2) int I, j, k; 3) I = 100; 4) while ( I 0 ) 5) j = I * 2; 6) System.out.println ( The value of j is + j ); 7) k = k + 1; 8) I-; 9) 10 A、 line 4 B、 line 6 C、 line 7 D、 line 8 12.MAX_LENGTH 是 in

    8、t 型 public 成员变量, 变量值保持为常量 100, 用简短语句定义这个变量( ) A、 public int MAX_LENGTH=100; B、 final int MAX_LENGTH=100; C、 final public int MAX_LENGTH=100; D、 public final int MAX_LENGTH=100. 13.给出下面代码: 1) class Parent 2 private String name; 3 public Parent() 4 5) public class Child extends Parent 6 private String

    9、 department; 7 public Child() 8 public String getValue() return name; 9 public static void main(String arg) 10 Parent p = new Parent(); 11 12 那些行将引起错误( )A、 第 3 行 B、 第 6 行 C、 第 7 行 D、 第 8 行 14.类 Teacher 和 Student 是类 Person的子类; Person p; Teacher t; Student s; /p, t and s are all non-null. if(t instanc

    10、eof Person) s = (Student)t; 最后一句语句的结果是( )A、 将构造一个 Student 对象; B、 表达式是合法的; C、 表达式是错误的; D、 编译时正确,但运行时错误。 15.给出下面代码段:1) public class Test 2) int m, n; 3) public Test() 4) public Test(int a) m=a; 5) public static void main(String arg) 6) Test t1,t2; 7) int j,k; 8) j=0; k=0; 9) t1=new Test(); 10) t2=new

    11、Test(j,k); 11) 12) 哪行将引起一个编译时错误( ) A、 line 3 B、 line 5 C、 line 6 D、 line 10 16.对于下列代码: 1) class Person 2) public void printValue(int i, int j) /. 3) public void printValue(int i)/. 4) 5) public class Teacher extends Person 6) public void printValue() /. 7) public void printValue(int i) /. 8) public

    12、static void main(String args) 9) Person t = new Teacher(); 10) t.printValue(10); 11) 第 10 行语句将调用哪行语句( )A、 line 2 B、 line 3 C、 line 6 D、 line 7 17.哪个关键字可以抛出异常( ) A、 transient B、 finally C、 throw D、 static 18.Main()方法的返回类型是( ) A、 int B、 void C、 boolean D、 static 19.System 类在哪个包中( ) A、 java.util B、 jav

    13、a.io C、 java.awt D、 java.lang 20.对于下列代码: public class Parent public int addValue( int a, int b) int s; s = a+b; return s; class Child extends Parent 下述哪些方法可以加入类 Child?( )A、 int addValue( int a, int b )/ do something. B、 public void addValue (int a, int b )/ do something. C、 public int addValue( int

    14、a )/ do something.D、 public int addValue( int a, int b )throws MyException /do something. 21.给出下面代码: public class test static int a = new a10; public static void main(String args) System.out.println(arr10); 那个选项是正确的( ) A、 编译时将产生错误; B、 编译时正确,运行时将产生错误; C、 输出零; D、 输出空。 22.下面哪些选项是正确的 main 方法说明( ) A、 pub

    15、lic main(String args) B、 public static void main(String args) C、 private static void main(String args) D、 void main() 23.给定下面的代码片段: 1) String str = null; 2) if (str != null) & (str.length() 10) 3) System.out.println(more than 10); 4) 5) else if (str != null) & (str.length() 2)5 D、 (23) 40. 下面哪个是对字符串

    16、 String 的正确定义 ( ) A、String s1=null; B、String s2=null ; C、String s3=(String) abc ; D、String s4=(String) uface; 41. 下面哪条语句不能定义一个 float型的变量( ) A、float f1= -343 ; B、float f2=3.14 ; C、float f3=0x12345 ; D、float f4=2.8F ; 42. 下面哪条语句定义了 5 个元素的数组( ) A、int a=22,23,24,25,12; B、int a =new int(5); C、int 5 array

    17、; D、int arr; 43. 下面哪个范围是char 型的取值范围( ) A、-256 255 B、-(215) (215)-1 C、u0000 uffff D、 032767 44. 给出一段程序,选择运行结果( ) public class sss public static void main(String args) String s1=args1; String s2=args2; String s3=args3; String s4=args4; System.out.println(“args2=”+s2); 命令行执行: java sss 1 2 3 4 结果是下面哪一个

    18、( )A、args2=2 B、args2=null C、args2=1 D、运行出现异常 45. 下面哪个描述是正确的( ) A、Applet 程序中不需要 main()方法,也不能有 B、Application 程序中可以没有 main()方法。 C、Applet 程序中可以不定义 init( )方法 D、Application 程序中必须有run( )方法 46. 给出一段程序,试判断哪个是正确的结果( ) public class rtExcept public static void throwit() System.out.print(“throwit”); throw new Ru

    19、ntimeException(); public static void main(String aa) try System.out.print(“hello “); throwit(); catch(Exception re) System.out.print(“caught ”); finally System.out.print(“finally ”); System.out.print(“after ”); A、hello throwit caught B、hello throwit caught finally after C、hello throwit RuntimeExcept

    20、ion after D、hello throwit caught finally after RuntimeException 47. 对一个 java 源文件 aaa.java,编辑保存后但未编译,在其所在目录下执行 java aaa, 则接着会出现什么( ) A、error: cannot read: aaa.java B、无任何显示 C、Exception in thread main java.lang.NoClassDefFoundError: aaa D、 程序正常执行并显示 48. 编译 java 程序时出现 error: cannot read: aaa.java,则下列原因最

    21、正确的是 ( ) A、原因是执行的当前目录下没有找到 aaa.java文件。 B、原因是没有安装 JDK 开发环境。 C、原因是 java 源文件名后缀一定是以 .txt 结尾。D、原因是 JDK 安装后没有正确设置环境变量 PATH 和Classpath 。 49. 给出一段程序,试判断哪个是正确的结果( ) public class myprogram public static void main (String args) try System.out.print(“Hello world ”); finally System.out.println(“Finally executin

    22、g”); A、无法编译,因为没有指定异常 B、无法编译,因为没有 catch子句 C、Hello world D、Hello world Finally executing 50. 下面哪个是 Java语言中正确的标识符( ) A、3D B、$this C、extends D、implements 51. 下面哪个范围是char 型的取值范围( ) A、-256 255 B、-(215) (215)-1C、u0000 uffff D、 032767 52. 下面哪个语句不能定义一个字符变量( ) A、char c1=3210; B、char c2=uface ; C、char c4=0xabc

    23、d ; D、char c3=”u0065”; 53. 下面哪个是对字符串 String 的正确定义 ( ) A、String s1=”nt null”; B、String s2=null ; C、String s3=(String) abc ; D、String s4=(String) uface; 54. 给出下面一段程序,选择运行结果 public class X public static void main(String args) String names=new String5; for(int x=0;xargs.length;x+) namesx=argsx; System.o

    24、ut.println(names2); 命令行执行: java X a b 结果是下面哪一个( )A、names B、b C、null D、 运行出现异常 55. 下面哪个描述是正确的( ) A、Applet 程序中不需要 main()方法,也不能有 B、Application 程序中可以没有 main()方法。C、Applet 程序中可以不定义 init( )方法 D、Application 程序中必须有run( )方法 56. 下面哪项可以得到数组元素的个数,java 中定义数组名为 abc,( ) A、abc.length( ) B、abc.length C、len(abc) D、ubo

    25、und(abc) 57.下面哪个修饰符修饰的变量是所有同一个类生成的对象共享的( ) A、public B、private C、static D、final 58. 给出一段程序,试判断哪个是正确的结果( ) public class myprogram public static void main (String args) try System.out.print(“Hello world ”); finally System.out.println(“Finally executing”); A、无法编译运行,因为没有指定异常 B、无法编译运行,因为没有 catch 子句 C、Hell

    26、o world D、Hello world Finally executing 59.下面关于java 中类的说法哪个是不正确的( ) A、类体中只能有变量定义和成员方法的定义,不能有其他语句。 B、构造函数是类中的特殊方法。 C、类一定要声明为 public 的,才可以执行。 D、一个 java 文件中可以有多个 class定义。 60. 下面程序运行后的输出结果为: class A static int y=3; void showy( )System.out.println(“y=”+y); class testA public static void main(String aaa )

    27、 A a1=new A( ); A.y+=1; a1.y+; a1.showy( ); 输出结果选择 ( )A、y=3; B、y=4; C、y=5; D、程序运行出错 61. 编译 java 程序时出现 error: cannot read: aaa.java,则下列原因最正确的是( ) A、原因是执行的当前目录下没有找到 aaa.java文件。B、原因是没有安装 JDK 开发环境。 C、原因是 java 源文件名后缀一定是以 .txt 结尾。 D、原因是 JDK 安装后没有正确设置环境变量 PATH 和Classpath 。 62. 下面关于构造函数的说法不正确的是( ) A、构造函数也属于

    28、类的方法,用于创建对象的时候给成员变量赋值。 B、构造函数不可以重载。 C、构造函数没有返回值。 D、构造函数一定要和类名相同。 63. 在 java的一个异常处理中,哪个语句块可以有多个 ( ) A、catch B、finally C、try D、throws 64. 对一个 java 源文件 aaa.java,编辑保存后但未编译,在其所在目录下执行 java aaa, 则接着会出现什么( ) A、error: cannot read: aaa.java B、无任何显示 C、Exception in thread main java.lang.NoClassDefFoundError: aa

    29、a D|、程序正常执行并显示 65下面表达式中,用来访问数组中第一个值的是 ( )A、intArray1 B、 intArray.1 C.intArray0 D、intArray.0 66监听事件和处理事件 ( )A、都由 Listener 完成 B、都由相应事件 Listener 处登记过的构件完成 C、由 Listener 和构件分别完成 D、由 Listener和窗口分别完成 67如果希望所有的控件在界面上均匀排列,应使用下列那种布局管理器 ( )A、BoxLayout B、GridLayout C、BorderLayout D、FlowLouLayout 68给出如下代码: class

    30、 Test private int m; public static void fun() / some code. 如何使成员变量 m 被函数 fun()直接访问 ( )A、将 private int m 改为 protected int m B、将 private int m 改为 public int m C、将 private int m 改为 static int m D、将 private int m 改为 int m 69下面的代码段中,执行之后 i 和 j 的值是什么 ( )int i = 1; int j; j = i+; A、 1, 1 B、1, 2C、2, 1 D、2,

    31、2 70.欲构造 ArrayList类的一个实例,此类继承了 List 接口,下列哪个方法是正确的 ( ) A、 ArrayList myList=new Object(); B、 List myList=new ArrayList(); C、 ArrayList myList=new List(); D、 List myList=new List(); 71.paint()方法使用哪种类型的参数 ( )A、 Graphics B、 Graphics2D C、 String D、 Color 72.指出正确的表达式 ( )A、 byte=128; B、 Boolean=null; C、 lon

    32、g l=0xfffL; D、 double=0.9239d; 73.指出下列程序运行的结果 ( )public class Example String str=new String(good); charch=a,b,c; public static void main(String args) Example ex=new Example(); ex.change(ex.str,ex.ch); System.out.print(ex.str+ and ); Sytem.out.print(ex.ch); public void change(String str,char ch) str=

    33、test ok; ch0=g; A、 good and abc B、 good and gbc C、test ok and abc D、 test ok and gbc 74.运行下列程序, 会产生什么结果 ( )public class X extends Thread implements Runable public void run() System.out.println(this is run(); public static void main(String args) Thread t=new Thread(new X(); t.start(); A、 第一行会产生编译错误 B

    34、、 第六行会产生编译错误 C、 第六行会产生运行错误 D、 程序会运行和启动 75.要从文件 file.dat文件中读出第10 个字节到变量 C 中,下列哪个方法适合 ( )A、 FileInputStream in=new FileInputStream(file.dat); in.skip(9); int c=in.read(); B、 FileInputStream in=new FileInputStream(file.dat); in.skip(10); int c=in.read(); C、 FileInputStream in=new FileInputStream(file.dat); int c=in.read(); D、 RandomAccessFile in=new RandomAccessFile(file.dat); in.skip(9); int c=in.readByte(); 76.容器被重新设置大小后,哪种布局管理器的容器中的组件大小不随容器大小的变化而改 变 ( )A、 CardLayout B、 FlowLayout C、 BorderLayout D、 GridLayout 77.给出下面代码: public class Person static int arr = n


    注意事项

    本文(《Java程序设计》理论题库—选择题(单选题).doc)为本站会员(精***)主动上传,沃文网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知沃文网(点击联系客服),我们立即给予删除!




    关于我们 - 网站声明 - 网站地图 - 资源地图 - 友情链接 - 网站客服点击这里,给沃文网发消息,QQ:2622162128 - 联系我们

    版权声明:以上文章中所选用的图片及文字来源于网络以及用户投稿,由于未联系到知识产权人或未发现有关知识产权的登记,如有知识产权人并不愿意我们使用,如有侵权请立即联系:2622162128@qq.com ,我们立即下架或删除。

    Copyright© 2022-2024 www.wodocx.com ,All Rights Reserved |陕ICP备19002583号-1

    陕公网安备 61072602000132号     违法和不良信息举报:0916-4228922