一、選擇題
JAVA部分(總分30分:每題3分,多選/錯選不得分,漏選得1分)
1、下面哪些是short型的取值范圍?
A.-27—27-1
B.0—216-1
C.-215—215-1
D.-231—231-1
2、下面哪些是合法的標識符?
A.$persons
B.TwoUsers
C.*point
D.this
E._endline
3、哪些是將一個十六進制值賦值給一個long型變量?
A.long number = 345L;
B.long number = 0345;
C.long number = 0345L;
D.long number = 0x345L;
4、下面的那些程序片斷可能導致錯誤?
A.String s = ”Gone with the wind”;
String t = “good”;
String k = s + t;
B.String s = “Gone with the wind”;
String t;
t = s[3] +”one”;
C.String s = “Gone with the wind”;
String standard = s.yoUpperCase();
D.String s =”home directory”;
String t = s-“directory”;
5、當Frame的大小被改變時Frame中的按扭的位置可能被改變時使用的哪一個布局管理器?
A.BorderLayout
B.FlowLayout
C.CardLayout
D.GridLayout
6、哪些不是Java關鍵字?
A.TRUE
B.Sizeof
C.Const
D.Super
E.Void