|
【奥鹏】-[电子科技大学]19秋《JAVA程序设计》在线作业3
试卷总分:100 得分:100
第1题,实现下列 接口可以对TextField对象的事件进行监听和处理。
A、ActionListener
B、FocusListener
C、MouseMotionListener
D、WindowListener
正确答案:
第2题,下列 是Java的调试器,如果编译器返回程序代码的错误,可以用它对程序进行调试。
A、java.exe
B、javadoc.exe
C、jdb.exe
D、javaprof.exe
正确答案:
第3题,容器Panel和Applet默认使用的布局管理器是
A、CardLayout
B、BorderLayout
C、FlowLayout
D、GridLayout
正确答案:
第4题,Give the following java class:
public class Example
{public static void main(String args[]){int x[] = new int[15];System.out.println(x[5]);}
}
Which statement is corrected?
A、When compile, some error will occur.
B、When run, some error will occur.
C、Output is zero.
D、Output is null.
正确答案:
第5题,Which modifer should be applied to a declaration of a class member variable for the value of variable to remain constant after the creation of the object?
A、static
B、final
C、const
D、abstract
正确答案:
第6题,下列 不是Java的保留字。
A、do
B、double
C、sizeof
D、while
正确答案:
第7题,类是所有异常类的父类。
A、Throwable
B、Error
C、Exception
D、AWTError
正确答案:
第8题,若在某一个类定义中定义有方法:abstract void f();则该类是
A、public类
B、final类
C、抽象类
D、不能确定
正确答案:
第9题,A class design requires that a member variable should be accessible only by same package, which modifer word should be used?
A、protected
B、public
C、no modifer
D、private
正确答案:
第10题,构造方法在 时候被调用。
A、类定义时
B、创建对象时
C、调用对象方法时
D、使用对象的变量时
正确答案:
第11题,如下 方法可以将MenuBar加入Frame中。
A、setMenu()
B、setMenuBar()
C、add()
D、addMenuBar()
正确答案:
第12题,下列常见的系统定义的异常中, 是数组下标越界异常。
A、ArithmeticException
B、IOException
C、ArrayIndexOutOfBoundsException
D、NullPointerException
正确答案:
第13题,下列叙述中, 是正确的。
A、类是变量和方法的集合体
B、数组是无序数据的集合
C、抽象类可以实例化
D、类成员数据必须是公有的
正确答案:
第14题,若要抛出异常,应该使用下列 子句。
A、catch
B、throw
C、try
D、finally
正确答案:
第15题,( )final类中的属性和方法都必须被final修饰符修饰。
A、错误
B、正确
正确答案:
第16题,( )用“+”可以实现字符串的拼接,用“-”可以从一个字符串中去除一个字符子串。
A、错误
B、正确
正确答案:
第17题,( )Java的屏幕坐标是以像素为单位,容器的左下角被确定为坐标的起点。
A、错误
B、正确
正确答案:
第18题,( )字符串分为两大类,一类是字符串常量,使用StringBuffer类的对象表示;另一类是字符串变量,使用String类的对象表示。
A、错误
B、正确
正确答案:
|
|