1.设有下面的两个类界说: 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++!
2.下列哪个选项的java源文件代码片段是不正确的?
A.package testpackage; public class Test{ }
B.import java.io.*; package testpackage; public class Test{ }
C.import java.io.*; class Person{ } public class Test{ }
D.import java.io.*; import java.awt.*; public class Test{ }
4.下面程序运转后I的成果是啥? Class sree { fun(){ static int I =0; I++; } public static void main(String args[]) { sree obj=new sree(); obj.fun(); obj.fun(); }
A.编译错误
B.运转时错误
C.1
D.2
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; ⑧ } ⑨ }
8.阅览下列代码后 public class Person{ int arr[]=new int[10]; public static void main(String args[]){ System.out.println(arr[1]); } } 正确的说法是
A.编译时将发生错误
B.编译时正确,运转时将发生错误
C.输出零
D.输出空
9.下列类头界说中,错误的是( )。
A.class x { .... }
B.public x extends y { .... }
C.public class x extends y { .... }
D.class x extends y implements y1 { .... }
10.以下代码的输出成果是啥? 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.编译错误
11.若a的值为3时,下列程序段被履行后,c的值是多少?( ) c = 1; if ( a>0 ) if ( a>3 ) c = 2; else c = 3; else c = 4;
13.下面的代码段中,履行之后i 和j 的值是啥? int i = 1; int j; j = i++;
A.1, 1
B.1, 2
C.2, 1
D.2, 2
14.给出下面的接口: interface A{ int method1(int i); int method2(int j); } 下面那个类完成了这个接口,而且不是笼统的?
A.class B implements A{ int method1(){} int method2(){} }
B.class B { int method1(int i){} int method2(int j){} }
C.class B implements A{ int method1(int i){} int method2(int j){} }
D.class B extends A{ int method1(int i){} int method2(int j){} }
15.请挑选以下代码的正确的重载结构器。 class Happy { Happy() { } }
A.public void Happy(){}
B.public Happy(int c){}
C.protected Happy(){}
D.void Happy(){}
16.下列句子序列履行后,k的值是( )。 int j=8, k=15; for( int i=2; i!=j; i++ ) { j-=2; k++; }
A.15
B.16
C.17
D.18
17.设有下面的一个类界说: class AA { static void Show( ){ System.out.println("我喜爱Java!"); } } class BB { void Show( ){ System.out.println("我喜爱C++!"); } } 若现已运用AA类创立对象a和BB类创立对象b,则下面哪一个方法调用是正确的:( )
A.Show( ) b.Show( )
B.AA.Show( ) BB.Show( )
C.AA.Show( ) b.Show( )
D.Show( ) BB.Show( )
18.假如你有下面的类界说 abstract class Shape{ abstract void draw(); } 请问,在企图编译下面的类界说时会发作啥状况? class Square extends Shape{ }
A.都能够成功编译
B.Shpe能够编译,而Square不能
C.Square能够编译,而Shape不能
D.Shape和Square都不能编译
19.已知如下代码: boolean m = true; if ( m = false ) System.out.println("False"); else System.out.println("True"); 履行成果是啥?
A.False
B.True
C.编译时犯错
D.运转时犯错
20.下列句子序列履行后,j 的值是( )。 Int j=3, i=2; while( --i!=i/j ) j=j+2;
A.2
B.4
C.5
D.6
二、多选题 (共 10 道试题,共 40 分)
21.已知如下代码: 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.以上都不是
22.已知如下类阐明: 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(); // 程序代码… } } 如下哪个运用是正确的?
A.t.f
B.this.n
C.Test.m
D.Test.n
23.已知如下界说: String s = "story"; 下面哪些表达式是合法的?
A.s += "books";
B.char c = s[1];
C.int len = s.length;
D.String t = s.toLowerCase();
24.给出下面的代码段: 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);
25.在如下源代码文件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; } }
27.你如何从下面main()的调用中拜访单词“kiss”? java lyrics a kiss is but a kiss
A.args[0]
B.args[1]
C.args[2]
D.args[3]
E.args[4]
F.args[5]
28.已知如下代码: 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.啥都不输出
29.已知如下类界说: class Base { public Base (){ //... } public Base ( int m ){ //... } protected void fun( int n ){ //... } } public class Child extends Base{ // member methods } 如下哪句能够正确地参加子类中?
试卷总分:100 得分:100
一、单选题 (共 20 道试题,共 60 分)
1.设有下面的两个类界说: 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++!
2.下列哪个选项的java源文件代码片段是不正确的?
A.package testpackage; public class Test{ }
B.import java.io.*; package testpackage; public class Test{ }
C.import java.io.*; class Person{ } public class Test{ }
D.import java.io.*; import java.awt.*; public class Test{ }
3.给出下列代码,则数组初始化中哪项是不正确的? byte[] array1,array2[]; byte array3[][]; byte [][] array4;
A.array2 = array1
B.array2=array3
C.array2=array4
D.array3=array4
4.下面程序运转后I的成果是啥? Class sree { fun(){ static int I =0; I++; } public static void main(String args[]) { sree obj=new sree(); obj.fun(); obj.fun(); }
A.编译错误
B.运转时错误
C.1
D.2
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.在程序的源文件开端处有下面一行程序: package awt;
A.成果是一个编译错误,由于Java现已界说了一个awt包
B.阐明这个文件里的一切的类都大概包括在java.awt包里
C.阐明这个文件里的一切的类都大概包括在自己界说的awt包里
D.导入你自己界说的awt包里的一切类
7.已知表达式int m[] = {0, 1, 2, 3, 4, 5, 6 }; 下面哪个表达式的值与数组下标量总数持平?
A.length()
B.length
C.length()+1
D.length+1
8.阅览下列代码后 public class Person{ int arr[]=new int[10]; public static void main(String args[]){ System.out.println(arr[1]); } } 正确的说法是
A.编译时将发生错误
B.编译时正确,运转时将发生错误
C.输出零
D.输出空
9.下列类头界说中,错误的是( )。
A.class x { .... }
B.public x extends y { .... }
C.public class x extends y { .... }
D.class x extends y implements y1 { .... }
10.以下代码的输出成果是啥? 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.编译错误
11.若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
12.下面程序的输出成果是啥? String s= "ABCD"; s.concat("E"); s.replace(\'C\',\'F\'); System.out.println(s);
A.编译错误,字符串是不可以改动的
B.ABFDE
C.ABCDE
D.ABCD
13.下面的代码段中,履行之后i 和j 的值是啥? int i = 1; int j; j = i++;
A.1, 1
B.1, 2
C.2, 1
D.2, 2
14.给出下面的接口: interface A{ int method1(int i); int method2(int j); } 下面那个类完成了这个接口,而且不是笼统的?
A.class B implements A{ int method1(){} int method2(){} }
B.class B { int method1(int i){} int method2(int j){} }
C.class B implements A{ int method1(int i){} int method2(int j){} }
D.class B extends A{ int method1(int i){} int method2(int j){} }
15.请挑选以下代码的正确的重载结构器。 class Happy { Happy() { } }
A.public void Happy(){}
B.public Happy(int c){}
C.protected Happy(){}
D.void Happy(){}
16.下列句子序列履行后,k的值是( )。 int j=8, k=15; for( int i=2; i!=j; i++ ) { j-=2; k++; }
A.15
B.16
C.17
D.18
17.设有下面的一个类界说: class AA { static void Show( ){ System.out.println("我喜爱Java!"); } } class BB { void Show( ){ System.out.println("我喜爱C++!"); } } 若现已运用AA类创立对象a和BB类创立对象b,则下面哪一个方法调用是正确的:( )
A.Show( ) b.Show( )
B.AA.Show( ) BB.Show( )
C.AA.Show( ) b.Show( )
D.Show( ) BB.Show( )
18.假如你有下面的类界说 abstract class Shape{ abstract void draw(); } 请问,在企图编译下面的类界说时会发作啥状况? class Square extends Shape{ }
A.都能够成功编译
B.Shpe能够编译,而Square不能
C.Square能够编译,而Shape不能
D.Shape和Square都不能编译
19.已知如下代码: boolean m = true; if ( m = false ) System.out.println("False"); else System.out.println("True"); 履行成果是啥?
A.False
B.True
C.编译时犯错
D.运转时犯错
20.下列句子序列履行后,j 的值是( )。 Int j=3, i=2; while( --i!=i/j ) j=j+2;
A.2
B.4
C.5
D.6
二、多选题 (共 10 道试题,共 40 分)
21.已知如下代码: 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.以上都不是
22.已知如下类阐明: 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(); // 程序代码… } } 如下哪个运用是正确的?
A.t.f
B.this.n
C.Test.m
D.Test.n
23.已知如下界说: String s = "story"; 下面哪些表达式是合法的?
A.s += "books";
B.char c = s[1];
C.int len = s.length;
D.String t = s.toLowerCase();
24.给出下面的代码段: 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);
25.在如下源代码文件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
26.下面的哪些程序片断能够致使错误。
A.String s="Gonewiththewind"; String t="good"; String k=s+t;
B.String s="Gonewiththewind"; String t; t=s[3]+"one";
C.String s="Gonewiththewind"; String standard=s.toUpperCase();
D.String s="homedirectory"; String t=s-"directory".
27.你如何从下面main()的调用中拜访单词“kiss”? java lyrics a kiss is but a kiss
A.args[0]
B.args[1]
C.args[2]
D.args[3]
E.args[4]
F.args[5]
28.已知如下代码: 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.啥都不输出
29.已知如下类界说: 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 ) { //... }
30.挑选一切有用的结构函数。 class Happy { } }
A.public void Happy(){}
B.public Happy(int c){}
C.protected Happy(){}
D.public int Happy(){}
E.void Happy(){}
作业答案 联系QQ:3326650399 微信:cs80188