东大网院JAVA语言程序设计Ⅰ_2020春答案
JAVA语言程序设计Ⅰ_2020春_011.[单选题]设 a = 8,则表达式 a >>>2 的值是( )。
A.1
B.2
C.3
D.4
正确答案:——B——
2.[单选题]设有下面的两个类定义: class AA { void Show(){ System.out.println("我喜欢Java!"); } class BB extends AA { void Show(){ System.out.println("我喜欢C++!"); } 则顺序执行如下语句后输出结果为:( ) AA a; BB b; a.Show(); b.Show();
A.我喜欢Java! 我喜欢C++!
B.我喜欢C++! 我喜欢Java!
C.我喜欢Java! 我喜欢Java!
D.我喜欢C++! 我喜欢C++!
正确答案:——A——
3.[单选题]下面程序的输出结果是什么? String s= "ABCD"; s.concat("E"); s.replace('C','F'); System.out.println(s);
A.编译错误,字符串是不可改变的
B.ABFDE
C.ABCDE
D.ABCD
正确答案:——D——
4.[单选题]下面的哪些程序段可以正确地获得从命令行传递的参数的个数?
A.int count = args.length;
B.int count = args.length-1;
C.int count=0; while(args!=null) count++;
D.int count=0;while (!(args.equals(“”))) count++;
正确答案:————
5.[单选题]有下面的类: public class Example{ public static void main(String args[]){ static int x[] = new int; System.out.println(x); } } 下面的那些说法是正确的。
A.编译时出错
B.运行时出错
C.输出0
D.输出null
正确答案:————
6.[单选题]如果你要读一个参数值,而该参数在标签内没有定义,则会:
A.运行时抛出异常
B.参数值为空
C.参数值是个空字符串
正确答案:————
7.[单选题]顺序执行下列程序语句后,则b的值是 String a="Hello"; String b=a.substring(0,2);
A.Hello
B.hello
C.Hel
D.null
正确答案:————
8.[单选题]下列程序的功能是在监控台上每隔一秒钟显示一个字符串“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{
A.sleep(1000) InterruptedException
B.sleep(1000) RuntimeException
C.Thread.sleep(1000) RuntimeException
D.Thread.sleep(1000) InterruptedException
正确答案:————
9.[单选题]以下由do-while语句构成的循环执行的次数是( )。int k = 0;do { ++k; }while ( k< 1 );
A.一次也不执行
B.执行1次
C.无限次
D.有语法错,不能执行
正确答案:————
10.[单选题]下列语句序列执行后,k的值是( )。 int j=8, k=15; for( int i=2; i!=j; i++ ) { j-=2; k++; }
A.15
B.16
C.17
D.18
正确答案:————
11.[单选题]如果你要读一个参数值,而该参数在<applet>标签内没有定义,则会:
A.运行时抛出异常
B.参数值为空
C.参数值是个空字符串
D.程序不能运行
正确答案:————
12.[单选题]以下代码的输出结果是什么? class Foo{ public static void main(String args[]){ int x=4,j=0; switch(x){ case 1:j++; case 2:j++; case 3:j++; case 4:j++; case 5:j++; break; default:j++; } System.out.println(j); } }
A.1
B.2
C.3
D.编译错误
正确答案:————
13.[单选题]若a的值为3时,下列程序段被执行后,c的值是多少?( ) c = 1; if ( a>0 ) if ( a>3 ) c = 2; else c = 3; else c = 4;
A.1
B.2
C.3
D.4
正确答案:————
14.[单选题]下面程序的输出结果是什么?class Happy {public static void main(String args[]) {int i =1;int j = 10;do {if ( i++< j--)continue;} while ( i<5 );System.out.println ( i+" "+j );}}
A.5 5
B.5 4
C.6 4
D.5 6
正确答案:————
15.[单选题]下列语句序列执行后,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; }
A.60
B.54
C.0
D.5
正确答案:————
16.[多选题]下面代码执行后的输出是什么?outer: for(int i=0;i<3; i++)inner: for(int j=0;j<2;j++){if(j==1) continue outer;System.out.println(j+ “ and “+i);}
A.0 and 0
B.0 and 1
C.0 and 2
D.1 and 0
E.1 and 1
F.1 and 2
G.2 and 0
H.2 and 1
正确答案:————
17.[多选题]给出下面的代码段: public class Base{ int w, x, y ,z; public Base(int a,int b) { x=a; y=b; } public Base(int a, int b, int c, int d) { //赋值 x=a, y=b w=d; z=c; } } 在代码说明//赋值 x=a, y=b处写入如下哪几行代码是正确的?
A.Base(a,b)
B.x=a,y=b;
C.x=a;y=b;
D.this(a,b);
正确答案:————
18.[多选题]已知如下代码: 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 的
A.0
B.1
C.2
D.3
E.4
F.以上都不是
正确答案:————
19.[多选题]已知如下代码:public class Test{public static void main(String arg[]){int i = 5;do {System.out.println(i);} while (--i>5)System.out.println("finished");}}执行后的输出结果包括什么?
A.5
B.4
C.6
D.finished
E.什么都不输出
正确答案:————
20.[多选题]已知如下类定义: class Base { public Base (){ //... } public Base ( int m ){ //... } protected void fun( int n ){ //... } } public class Child extends Base{ // member methods } 如下哪句可以正确地加入子类中?
A.private void fun( int n ){ //...}
B.void fun ( int n ){ //... }
C.protected void fun ( int n ) { //... }
D.public void fun ( int n ) { //... }
正确答案:————
JAVA语言程序设计Ⅰ_2020春_02
1.[单选题]阅读下列代码后 public class Person{ int arr[]=new int; public static void main(String args[]){ System.out.println(arr); } } 正确的说法是
A.编译时将产生错误
B.编译时正确,运行时将产生错误
C.输出零
D.输出空
正确答案:——C——
2.[单选题]下面程序的输出结果是什么? String s= "ABCD"; s.concat("E"); s.replace('C','F'); System.out.println(s);
A.编译错误,字符串是不可改变的
B.ABFDE
C.ABCDE
D.ABCD
正确答案:——D——
3.[单选题]下面程序的输出结果是什么? public static void main(String args[]) { int a=10; int b=20; if(a=b) System.out.println("Not Equal"); else System.out.println("Equal"); }
A.Equal
B.Not Equal
C.编译错误
D.运行时将抛出异常
正确答案:——C——
4.[单选题]下面语句返回的数据类型是什么? (short)10/10.2*2;
A.int
B.double
C.float
D.short
正确答案:————
5.[单选题]给出下列的代码,哪行在编译时可能会有错误? ① 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; ⑧ } ⑨ }
A.4
B.6
C.7
D.8
正确答案:————
6.[单选题]下面的代码段中,执行之后i 和j 的值是什么? int i = 1; int j; j = i++;
A.1, 1
B.1, 2
C.2, 1
D.2, 2
正确答案:————
7.[单选题]如果你要读一个参数值,而该参数在<applet>标签内没有定义,则会:
A.运行时抛出异常
B.参数值为空
C.参数值是个空字符串
D.程序不能运行
正确答案:————
8.[单选题]下列程序的功能是在监控台上每隔一秒钟显示一个字符串“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{
A.sleep(1000) InterruptedException
B.sleep(1000) RuntimeException
C.Thread.sleep(1000) RuntimeException
D.Thread.sleep(1000) InterruptedException
正确答案:————
9.[单选题]顺序执行下列程序语句后,则b的值是 String a="Hello"; String b=a.substring(0,2);
A.Hello
B.hello
C.Hel
D.null
正确答案:————
10.[单选题]设有下面两个类的定义: class Person { long id; // 身份证号 String name; // 姓名 } class Student extends Person { int score; // 入学总分 int getScore(){ re
A.包含关系
B.继承关系
C.关联关系
D.无关系,上述类定义有语法错误
正确答案:————
11.[单选题]如果你要读一个参数值,而该参数在标签内没有定义,则会:
A.运行时抛出异常
B.参数值为空
C.参数值是个空字符串
正确答案:————
12.[单选题]设有下面的两个类定义: class AA { void Show(){ System.out.println("我喜欢Java!"); } class BB extends AA { void Show(){ System.out.println("我喜欢C++!"); } 则顺序执行如下语句后输出结果为:( ) AA a; BB b; a.Show(); b.Show();
A.我喜欢Java! 我喜欢C++!
B.我喜欢C++! 我喜欢Java!
C.我喜欢Java! 我喜欢Java!
D.我喜欢C++! 我喜欢C++!
正确答案:————
13.[单选题]若a的值为3时,下列程序段被执行后,c的值是多少?( ) c = 1; if ( a>0 ) if ( a>3 ) c = 2; else c = 3; else c = 4;
A.1
B.2
C.3
D.4
正确答案:————
14.[单选题]在oneMethod()方法运行正常的情况下,程序段将输出什么? public void test() { try { oneMethod(); System.out.println("condition 1"); } catch (ArrayIndexOutOfBoundsException e) { System.out.println("condition 2"); } catch(Exception e) { System.out.println("condition 3");
A.condition 1
B.condition 2
C.condition 3
D.condition 1 finally
正确答案:————
15.[单选题]已知如下代码: public class Test { long a[] = new long; public static void main ( String arg[] ) { System.out.println ( a ); } } 请问哪个语句是正确的?
A.输出结果是 null.
B.输出结果是0
C.编译时出错
D.运行时出错
正确答案:————
16.[多选题]假定文件名是“Fred.java”,下面哪个是正确的类声明。
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; }
D.public int x = 0;
正确答案:————
17.[多选题]在如下源代码文件Test.java中, 哪个是正确的类定义?
A.public class test { public int x = 0; public test(int x) { this.x = x; } }
B.public class Test{ public int x=0; public Test(int x) { this.x = x; } }
C.public class Test extends T1, T2 { public int x = 0; public Test (int x) { this.x = x; } }
D.public class
正确答案:————
18.[多选题]针对下面的程序,那些表达式的值是true? Class Aclass{ private long val; public Aclass(long v){val=v;} public static void main(String args[]){ Aclass x=new Aclass(10L); Aclass y=new Aclass(10L); Aclass z=y; long a=10L; int b=10; } }
A.a==b;
B.a==x;
C.y==z;
D.x==y;
E.a==10.0;
正确答案:————
19.[多选题]已知如下代码:public class Test{public static void main(String arg[]){int i = 5;do {System.out.println(i);} while (--i>5)System.out.println("finished");}}执行后的输出结果包括什么?
A.5
B.4
C.6
D.finished
E.什么都不输出
正确答案:————
20.[多选题]已知如下代码: 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 的
A.0
B.1
C.2
D.3
E.4
F.以上都不是
正确答案:————
JAVA语言程序设计Ⅰ_2020春_03
1.[单选题]下列语句序列执行后,k的值是( )。 int j=8, k=15; for( int i=2; i!=j; i++ ) { j-=2; k++; }
A.15
B.16
C.17
D.18
正确答案:——C——
2.[单选题]给出下列代码,如何使成员变量m 被方法fun()直接访问? class Test { private int m; public static void 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
正确答案:——C——
3.[单选题]给出下列的代码,哪行在编译时可能会有错误? ① 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; ⑧ } ⑨ }
A.4
B.6
C.7
D.8
正确答案:——C——
4.[单选题]以下由do-while语句构成的循环执行的次数是( )。int k = 0;do { ++k; }while ( k< 1 );
A.一次也不执行
B.执行1次
C.无限次
D.有语法错,不能执行
正确答案:————
5.[单选题]下面语句返回的数据类型是什么? (short)10/10.2*2;
A.int
B.double
C.float
D.short
正确答案:————
6.[单选题]如果你要读一个参数值,而该参数在标签内没有定义,则会:
A.运行时抛出异常
B.参数值为空
C.参数值是个空字符串
正确答案:————
7.[单选题]若a的值为3时,下列程序段被执行后,c的值是多少?( ) c = 1; if ( a>0 ) if ( a>3 ) c = 2; else c = 3; else c = 4;
A.1
B.2
C.3
D.4
正确答案:————
8.[单选题]设有下面两个类的定义: class Person { long id; // 身份证号 String name; // 姓名 } class Student extends Person { int score; // 入学总分 int getScore(){ re
A.包含关系
B.继承关系
C.关联关系
D.无关系,上述类定义有语法错误
正确答案:————
9.[单选题]阅读下列代码后 public class Person{ int arr[]=new int; public static void main(String args[]){ System.out.println(arr); } } 正确的说法是
A.编译时将产生错误
B.编译时正确,运行时将产生错误
C.输出零
D.输出空
正确答案:————
10.[单选题]下面程序的输出结果是什么? String s= "ABCD"; s.concat("E"); s.replace('C','F'); System.out.println(s);
A.编译错误,字符串是不可改变的
B.ABFDE
C.ABCDE
D.ABCD
正确答案:————
11.[单选题]下列程序段执行后t5的结果是( )。int t1 = 9, t2 = 11, t3=8;int t4,t5;t4 = t1 >t2 ? t1 : t2+ t1;t5 = t4 >t3 ? t4 : t3;
A.8
B.20
C.11
D.9
正确答案:————
12.[单选题]下面程序的输出结果是什么? public static void main(String args[]) { int a=10; int b=20; if(a=b) System.out.println("Not Equal"); else System.out.println("Equal"); }
A.Equal
B.Not Equal
C.编译错误
D.运行时将抛出异常
正确答案:————
13.[单选题]下列代码中,将引起一个编译错误的行是 1)public class Test{ 2) int m,n; 3) public Test() {} 4) public Test(int a) {m=a;} 5) public static void main(String args[]){ 6) Test t1,t2; 7) int j,k; 8) j=0;k=0; 9) t1=new Test(); 10) t2=new Test(j,k); 11) } 12
A.第3行
B.第5行
C.第6行
D.第10行
正确答案:————
14.[单选题]在oneMethod()方法运行正常的情况下,程序段将输出什么? public void test() { try { oneMethod(); System.out.println("condition 1"); } catch (ArrayIndexOutOfBoundsException e) { System.out.println("condition 2"); } catch(Exception e) { System.out.println("condition 3");
A.condition 1
B.condition 2
C.condition 3
D.condition 1 finally
正确答案:————
15.[单选题]如果你有下面的类定义 abstract class Shape{ abstract void draw(); } 请问,在试图编译下面的类定义时会发生什么情况? class Square extends Shape{ }
A.都可以成功编译
B.Shpe可以编译,而Square不能
C.Square可以编译,而Shape不能
D.Shape和Square都不能编译
正确答案:————
16.[多选题]假定文件名是“Fred.java”,下面哪个是正确的类声明。
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; }
D.public int x = 0;
正确答案:————
17.[多选题]已知如下类定义: class Base { public Base (){ //... } public Base ( int m ){ //... } protected void fun( int n ){ //... } } public class Child extends Base{ // member methods } 如下哪句可以正确地加入子类中?
A.private void fun( int n ){ //...}
B.void fun ( int n ){ //... }
C.protected void fun ( int n ) { //... }
D.public void fun ( int n ) { //... }
正确答案:————
18.[多选题]已知如下代码: 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 的
A.0
B.1
C.2
D.3
E.4
F.以上都不是
正确答案:————
19.[多选题]给出下面的代码段: public class Base{ int w, x, y ,z; public Base(int a,int b) { x=a; y=b; } public Base(int a, int b, int c, int d) { //赋值 x=a, y=b w=d; z=c; } } 在代码说明//赋值 x=a, y=b处写入如下哪几行代码是正确的?
A.Base(a,b)
B.x=a,y=b;
C.x=a;y=b;
D.this(a,b);
正确答案:————
20.[多选题]选择所有有效的构造函数。 class Happy { } }
A.public void Happy(){}
B.public Happy(int c){}
C.protected Happy(){}
D.public int Happy(){}
E.void Happy(){}
正确答案:————
页:
[1]