《JAVA語言程序設(shè)計Ⅰ》在線平時作業(yè)1-00001
試卷總分:100 得分:100
一、單選題 (共 20 道試題,共 60 分)
1.設(shè)有下面的兩個類定義: class AA { void Show(){ System.out.println("我喜歡Java!"); } class BB extends AA { void Show(){ System.out.println("我喜歡C++!"); } 則順序執(zhí)行如下語句后輸出結(jié)果為:( ) 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.給出下列代碼,則數(shù)組初始化中哪項是不正確的? byte[] array1,array2[]; byte array3[][]; byte [][] array4;
A.array2 = array1
B.array2=array3
C.array2=array4
D.array3=array4
4.下面程序運(yùn)行后I的結(jié)果是什么? Class sree { fun(){ static int I =0; I++; } public static void main(String args[]) { sree obj=new sree(); obj.fun(); obj.fun(); }
A.編譯錯誤
B.運(yùn)行時錯誤
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.結(jié)果是一個編譯錯誤,因為Java已經(jīng)定義了一個awt包
B.說明這個文件里的所有的類都應(yīng)該包含在java.awt包里
C.說明這個文件里的所有的類都應(yīng)該包含在自己定義的awt包里
D.導(dǎo)入你自己定義的awt包里的所有類
7.已知表達(dá)式int m[] = {0, 1, 2, 3, 4, 5, 6 }; 下面哪個表達(dá)式的值與數(shù)組下標(biāo)量總數(shù)相等?
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.編譯時將產(chǎn)生錯誤
B.編譯時正確,運(yùn)行時將產(chǎn)生錯誤
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.以下代碼的輸出結(jié)果是什么? 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時,下列程序段被執(zhí)行后,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.下面程序的輸出結(jié)果是什么? String s= "ABCD"; s.concat("E"); s.replace('C','F'); System.out.println(s);
A.編譯錯誤,字符串是不可改變的
B.ABFDE
C.ABCDE
D.ABCD
13.下面的代碼段中,執(zhí)行之后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); } 下面那個類實現(xiàn)了這個接口,并且不是抽象的?
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.請選擇以下代碼的正確的重載構(gòu)造器。 class Happy { Happy() { } }
A.public void Happy(){}
B.public Happy(int c){}
C.protected Happy(){}
D.void Happy(){}
16.下列語句序列執(zhí)行后,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.設(shè)有下面的一個類定義: class AA { static void Show( ){ System.out.println("我喜歡Java!"); } } class BB { void Show( ){ System.out.println("我喜歡C++!"); } } 若已經(jīng)使用AA類創(chuàng)建對象a和BB類創(chuàng)建對象b,則下面哪一個方法調(diào)用是正確的:( )
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(); } 請問,在試圖編譯下面的類定義時會發(fā)生什么情況? 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"); 執(zhí)行結(jié)果是什么?
A.False
B.True
C.編譯時出錯
D.運(yùn)行時出錯
20.下列語句序列執(zhí)行后,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"); } 當(dāng)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"; 下面哪些表達(dá)式是合法的?
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.下面的哪些程序片斷可能導(dǎo)致錯誤。
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()的調(diào)用中訪問單詞“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"); } } 執(zhí)行后的輸出結(jié)果包括什么?
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.選擇所有有效的構(gòu)造函數(shù)。 class Happy { } }
A.public void Happy(){}
B.public Happy(int c){}
C.protected Happy(){}
D.public int Happy(){}
E.void Happy(){}
奧鵬,國開,廣開,電大在線,各省平臺,新疆一體化等平臺學(xué)習(xí)
詳情請咨詢QQ : 3230981406或微信:aopopenfd777