电子科技大学智慧树知到“计算机科学与技术”《面向对象程序设计》网课测试题答案
(图片大小可自由调整)
第1卷
一.综合考核(共10题)
1.Java的屏幕坐标是以像素为单位,容器的左下角被确定为坐标的起点。()
A.正确
B.错误
2.下列关于接口的叙述中,()是正确的。
A.接口之间不能有继承关系
B.接口中只含有抽象方法和常量
C.接口与抽象类是相同的概念
D.一个类只能实现一个接口
3.Java中main()函数的值是()。
A.void
B.int
C.char
D.String
4.创建字符串s:String s=new String("abcd"); 以下()将改变s。
A.以上语句都不会
B.s.substring(3);
at("y");
D.s.append("x");
5.public class X extends Frame{ public static void main(String[] args){ X x=new X(); x.pack(); x.setVisible(true); } public X(){ setLayout(new GridLayout(2,2)); Panel p1=new Panel(); add(p1); Button b1
A.all change height and width
B.Button Two change height and Button Three change width
C.Button One change height
D.Button Four change height and width
6.已知如下代码:public class Test{ static long a[] = new long[10]; public static void main ( String arg[] ) { System.out.println ( a[6] ) ; } } 则下面()语句是正确的。
A.When running, some error will occur.
B.When compile, some error will occur.
C.Output is null.
D.Output is 0.
7.下列()修饰符可以使在一个类中定义的成员变量只能被同一包中的类访问。
A.无修饰符
B.public
C.protected
D.private
8.下列语句输出结果为()。 public class A{public static void main(String[]args){byte b=0xa;System.out.println(b);}}
A.a
B.10
C.1
java网课推荐D.0xa
9.下列命令中,是Java编译命令的是()。
A.javadoc
B.javac
C.java
D.appletviewer
10.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.Number(0));} } what is the result?
Apilation succeeds and 3 is printed
Bpilation succeeds and 2 is printed
Cpilation succeeds and 1 is printed
D.An error at this program cause compilation to fail
第1卷参考答案
一.综合考核
1.参考答案:B
2.参考答案:B
3.参考答案:A
4.参考答案:A
5.参考答案:D
6.参考答案:D
7.参考答案:A
8.参考答案:B
9.参考答案:B
10.参考答案:C
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论