东北大学17秋学期《JAVA语言程序设计Ⅰ》在线作业1参考答案
17秋学期《JAVA语言程序设计Ⅰ》在线作业1一、单选题:【20道,总分:60分】东北大学答案
1.设有下面的两个类定义: classAA { voidShow( ){ System.out.println("我喜欢Java!"); } classBB extendsAA { voidShow( ){ System.out.println("我喜欢C++!"); }则顺序执行如下语句后输出结果为:( ) AA a; BB b; a.Show( ); b.Show( ); (满分:3)
A. 我喜欢Java! 我喜欢C++!
B. 我喜欢C++!我喜欢Java!
C. 我喜欢Java!我喜欢Java!
D. 我喜欢C++! 我喜欢C++!
2.给出下列的代码,哪行在编译时可能会有错误? ① public void modify( ){ ② int i, j, k; ③ i = 100; ④ while ( i > 0 ){ ⑤ j = i * 2; ⑥ System.out.println (" The value of j is " + j ); ⑦ k = k + 1; ⑧ } ⑨ } (满分:3)
A. 4
B. 6
C. 7
D. 8
3.下面程序的输出结果是什么?public static void main(String args[]){int a=10;int b=20;if(a=b)System.out.println("Not Equal");elseSystem.out.println("Equal");} (满分:3)
A. Equal
B. Not Equal
C. 编译错误
D. 运行时将抛出异常
4.若a的值为3时,下列程序段被执行后,c的值是多少?( ) c = 1; if ( a>0 )if ( a>3 )c = 2; else c = 3; else c = 4; (满分:3)
A. 1
B. 2
C. 3
D. 4
5.选择正确的叙述.class Happy extends Frame {Happy( ) {SetLayout(new GridLayout(2,2));Panel p1 = new Panel( );add(p1);p1.add( new Button("One"));Panel p2 = new Panel( );add(p2);p2.add( new Button("Two"));add( new Button("Three"));add( new Button("Four"));s (满分:3)
A. 当frame调整大小时,按钮Three和Four 的大小也将调整。
B. 当frame调整大小时,所有按钮的大小都将调整。
C. 当frame调整大小时,按钮Two和Four 的大小也将调整。
D. 当frame调整大小时,按钮One和Two 的大小也将调整。
6.阅读下列代码后public class Person{int arr[]=new int;public static void main(String args[]){System.out.println(arr);}}正确的说法是 (满分:3)
A. 编译时将产生错误
B. 编译时正确,运行时将产生错误
C. 输出零
D. 输出空
7.如果你有下面的类定义abstract class Shape{ abstract void draw( );}请问,在试图编译下面的类定义时会发生什么情况?class Square extends Shape{} (满分:3)
A. 都可以成功编译
B. Shpe可以编译,而Square不能
C. Square可以编译,而Shape不能
D. Shape和Square都不能编译
8.下列语句序列执行后,k 的值是( )。int x=6, y=10, k=5;switch( x%y ){ case 0:k=x*y;case 6:k=x/y;case 12: k=x-y;default: k=x*y-x;} (满分:3)
A. 60
B. 54
C. 0
D. 5
9.如果你要读一个参数值,而该参数在标签内没有定义,则会: (满分:3)
A. 运行时抛出异常
B. 参数值为空
C. 参数值是个空字符串
D.
10.设有下面两个类的定义:classPerson { long id; // 身份证号 Stringname; // 姓名 } classStudentextendsPerson { intscore;// 入学总分 intgetScore( ){ re (满分:3)
A. 包含关系
B. 继承关系
C. 关联关系
D. 无关系,上述类定义有语法错误
11.请选择以下代码的正确的重载构造器。class Happy {Happy( ) {}} (满分:3)
A. public void Happy( ){}
B. public Happy(int c){}
C. protected Happy( ){}
D. void Happy( ){}
12.下列程序段执行后t5的结果是( )。int t1 = 9, t2 = 11, t3=8;int t4,t5;t4 = t1 > t2 ? t1 : t2+ t1;t5 = t4 > t3 ? t4 : t3; (满分:3)
A. 8
B. 20
C. 11
D. 9
13.Person, Student 和Teacher 都是类名。这些类有以下继承关系。Person|--------------------( )Student Teacher并且在Java源代码中有如下表达式:Person p = new Student( );如下哪个语句是正确的? (满分:3)
A. 这条语句是合法的
B. 这条语句是不合法的
C. 编译时出错
D. 编译正确但运行时出错
14.下列程序的功能是在监控台上每隔一秒钟显示一个字符串“Hello”,能够填写在程序中下划线位置,使程序完整并能正确运行的语句是public class Test implements Runnable{public static void main(String args[]){Test t=new Test( );Thread tt=new Thread(t);tt.start( );}public void run( ){for(;;){try{ (满分:3)
A. sleep(1000)InterruptedException
B. sleep(1000)RuntimeException
C. Thread.sleep(1000)RuntimeException
D. Thread.sleep(1000)InterruptedException
15.若有循环:int x=5,y=20;do{ y-=x; x++;}while(++x<--y);则循环体将被执行( )。 (满分:3)
A. 0次
B. 1次
C. 2次
D. 3次
16.有下面的类: public class Example{ public static void main(String args[]){ static int x[] = new int; System.out.println(x); } }下面的那些说法是正确的。 (满分:3)
A. 编译时出错
B. 运行时出错
C. 输出0
D. 输出null
17.下列语句序列执行后,j 的值是( )。Int j=3, i=2;while( --i!=i/j ) j=j+2; (满分:3)
A. 2
B. 4
C. 5
D. 6
18.65. 已知有下列类的说明,则下列哪个语句是正确的? 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( ); } } (满分:3)
A. t.f;
B. this.n;
C. Test.m;
D. Test.f;
19.下面的语句的作用是:( )。 VectorMyVector = newVector(100,50); (满分:3)
A. 创建一个数组类对象MyVector,有100个元素的空间,每个元素的初值为50。
B. 创建一个向量类对象MyVector,有100个元素的空间,每个元素的初值为50。
C. 创建一个数组类对象MyVector,有100个元素的空间,若空间使用完时,以50个元素空间单位递增。
D. 创建一个向量类对象MyVector,有100个元素的空间,若空间使用完时,以50个元素空间单位递增。
20.给出下列代码,则数组初始化中哪项是不正确的? byte[] array1,array2[]; byte array3[][]; byte [][] array4; (满分:3)
A. array2 = array1
B. array2=array3
C. array2=array4
D. array3=array4
二、多选题:【10道,总分:40分】
1.已知如下类定义:class Base {public Base( ){ //... }public Base( int m ){ //... }protected void fun( int n ){ //... }}public class Child extends Base{// member methods}如下哪句可以正确地加入子类中? (满分:4)
A. private void fun( int n ){ //...}
B. void fun( int n ){ //... }
C. protected void fun( int n ) { //... }
D. public void fun( int n ) { //... }
2.假定文件名是“Fred.java”,下面哪个是正确的类声明。 (满分:4)
A. public class Fred{ public int x = 0; public Fred(int x){ this.x=x; } }
B. public class fred{ public int x = 0; public Fred(int x){ this.x=x; } }
C. public class Fred extends MyBaseClass{ public int x = 0; }
3.已知如下类说明: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( );// 程序代码…} }如下哪个使用是正确的? (满分:4)
A. t.f
B. this.n
C. Test.m
D. Test.n
4.已知如下定义:String s = "story";下面哪些表达式是合法的? (满分:4)
A. s += "books";
B. char c = s;
C. int len = s.length;
D. String t = s.toLowerCase( );
5.选择所有有效的构造函数。class Happy {}} (满分:4)
A. public void Happy( ){}
B. public Happy(int c){}
C. protected Happy( ){}
D. public int Happy( ){}
E. void Happy( ){}
6.String s=”Example String”; 下面哪些语句是正确的? (满分:4)
A. s>>>=3;
B. int i=s.length( );
C. s=”x”;
D. String shorts=s.trim( );
E. String t=”root”+s;
7.已知如下代码:public class Test{public static void main(String arg[]){int i = 5;do {System.out.println(i);} while(--i>5)System.out.println("finished");}}执行后的输出结果包括什么? (满分:4)
A. 5
B. 4
C. 6
D. finished
E. 什么都不输出
8.下面的哪些程序片断可能导致错误。 (满分:4)
A. String s="Gonewiththewind";String t="good";String k=s+t;
B. String s="Gonewiththewind";String t;t=s+"one";
C. String s="Gonewiththewind";String standard=s.toUpperCase( );
D. String s="homedirectory";String t=s-"directory".
9.已知如下代码:switch(m){case 0: System.out.println("Condition 0");case 1: System.out.println("Condition 1"); case 2: System.out.println("Condition 2");case 3: System.out.println("Condition 3");break;default: System.out.println("Other Condition"); }当m 的 (满分:4)
A. 0
B. 1
C. 2
D. 3
E. 4
F. 以上都不是
10.请选出创建数组的正确语句。 (满分:4)
A. float f[][] = new float;
B. float []f[] = new float;
C. float f[][] = new float[];
D. float [][]f = new float;
更多学习资料请登录www.openhelp100.com
页:
[1]