欢迎光临
我们一直在努力

电科20春《JAVA程序设计》在线作业2【标准答案】

可做奥鹏国开全部院校作业论文!答案请添加qq:599792888 或 微信:1095258436

20春《JAVA程序设计》在线作业2

试卷总分:100  得分:100

一、单选题 (共 20 道试题,共 80 分)

1.若在某一个类定义中定义有方法:abstract void f();则该类是

A.抽象类

B.不能确定

C.public类

D.final类

 

2.A class design requires that a member variable should be accessible only by same package, which modifer word should be used?

A.public

B.protected

C.private

D.no modifer

 

3.在Java语言中, 包是自动导入的。

A.java.lang

B.java.io

C.java.awt

D.java.applet

 

4.Java语言中, 是所有类的根类。

A.Thread

B.Root

C.Object

D.Applet

 

5.关键字super的作用是

A.用来调用父类的构造方法

B.用来调用父类中被重载的方法

C.用来访问父类被隐藏的成员变量

D.以上都是

 

6.构造方法在 时候被调用。

A.调用对象方法时

B.类定义时

C.创建对象时

D.使用对象的变量时

 

7.下列叙述中不正确的是

A.static方法中能直接处理非static的属性

B.abstract类中不可以有private的成员

C.abstract方法必须在abstract类中

D.abstract不能与final并列修饰同一个类

 

8.Java源文件中最多只能有一个 类,其他类的个数不限。

A.public

B.interface

C.final

D.abstract

 

9.实现下列 接口可以对TextField对象的事件进行监听和处理。

A.WindowListener

B.MouseMotionListener

C.FocusListener

D.ActionListener

 

10.以下 方法用于定义线程的执行体(线程体)。

A.synchronized()

B.start()

C.run()

D.init()

 

11.Java Application源程序文件的扩展名为

A..java

B..html

C..exe

D..class

 

12.Java语言是在 语言基础上衍生的。

A.pascal

B.VF

C.C++

D.C

 

13.下面 函数是public void example(int k){…}的重载函数。

A.public void example( int m){…}

B.public void example2(int k){…}

C.public int example( int m, float f){…}

D.public int example(int k){…}

 

14.监听器接口的方法返回值是

A.void

B.int

C.String

D.Object

 

15.Thread类的方法中,toString()方法的作用是

A.返回线程的字符串信息

B.返回当前线程所属的线程组的名称

C.返回当前线程对象

D.只返回线程的名称

 

16.下面是类A的构造函数声明,其中正确的是

A.void a(int x){…}

B.void A(int x){…}

C.a(int x){…}

D.A(int x){…}

 

17.Which modifier should be applied to a method for the lock of object “this” to be obtained prior to excution any of the method body?

A.synchronized

B.static

C.final

D.abstract

 

18.class A {public int getNumber(int a){return a+1;}} class B extends A {public int getNumber(int a, char c){return a+2;} public static void main(String[] args) {B b=new B();System.out.println(b.getNumber(0));} } what is the result?

A.compilation succeeds and 3 is printed

B.compilation succeeds and 2 is printed

C.compilation succeeds and 1 is printed

D.An error at this program cause compilation to fail

 

19.public class Test{ public static void main(String[] args){ String a=args[1];String b=args[2];String c=args[3]; } } execute command:java Test Red Green Blue what is the value of c?

A.the program throw an exception

B.the code does not compile

C.c has value of null

D.c has value of Blue

 

20.如下 方法可以将MenuBar加入Frame中。

A.setMenuBar()

B.setMenu()

C.addMenuBar()

D.add()

 

二、判断题 (共 5 道试题,共 20 分)

21.( )字符串分为两大类,一类是字符串常量,使用StringBuffer类的对象表示;另一类是字符串变量,使用String类的对象表示。

 

22.( )子类要调用父类的方法,必须使用super关键字。

 

23.( )如果p是父类Parent的对象,而c是子类Child的对象,则语句c = p是正确的。

 

24.( )用“+”可以实现字符串的拼接,用“-”可以从一个字符串中去除一个字符子串。

 

25.( )A subclass inherits all methods ( including the constructor ) from the superclass.

赞(0)
未经允许不得转载:奥鹏作业网 » 电科20春《JAVA程序设计》在线作业2【标准答案】

评论 抢沙发

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址