公眾號(hào):mywangxiao
及時(shí)發(fā)布考試資訊
分享考試技巧、復(fù)習(xí)經(jīng)驗(yàn)
新浪微博 @wangxiaocn關(guān)注微博
聯(lián)系方式 400-18-8000
1. Which of the following range of short is correct?
A. -27 -- 27-1
B. 0 -- 216-1
C. ?215 -- 215-1
D. ?231 -- 231-1
翻譯 下面哪些是short型的取值范圍。
答案
C 解析
短整型的數(shù)據(jù)類型的長度是16 bits,有符號(hào)。另外需要說明的是java中所有的整(Integral)數(shù)(包括byte,short,int,long)全是有符號(hào)的。
2. Which declarations of identifiers are legal?
A. $persons
B. TwoUsers
C. *point
D. this
E. _endline
翻譯 下面哪些是合法的標(biāo)識(shí)符。
答案
A,B,E 解析
Java的標(biāo)識(shí)符可以以一個(gè)Unicode字符,下滑線(_),美元符($)開始,后續(xù)字符可以是前面的符號(hào)和數(shù)字,沒有長度限制,大小寫敏感,不能是保留字。
3. Which statement of assigning a long type variable to a hexadecimal value is correct?
A. long number = 345L;
B. long number = 0345;
C. long number = 0345L;
D. long number = 0x345L
翻譯 哪些是將一個(gè)十六進(jìn)制值賦值給一個(gè)long型變量。
答案
D 解析
十六進(jìn)制數(shù)以0x開頭,long型數(shù)以L(大小寫均可,一般使用大寫,因?yàn)樾懙膌和數(shù)字1不易區(qū)分)。
4.Which of the following fragments might cause errors?
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.toUpperCase();
D. String s = "home directory";
String t = s - "directory";
翻譯 下面的哪些程序片斷可能導(dǎo)致錯(cuò)誤。
答案B,D 解析
A:String類型可以直接使用+進(jìn)行連接運(yùn)算。
B:String是一種Object,而不是簡單的字符數(shù)組,不能使用下標(biāo)運(yùn)算符取其值的某個(gè)元素,錯(cuò)誤。
C:toUpperCase()方法是String對(duì)象的一個(gè)方法,作用是將字符串的內(nèi)容全部轉(zhuǎn)換為大寫并返回轉(zhuǎn)換后的結(jié)果(String類型)。
D:String類型不能進(jìn)行減(-)運(yùn)算,錯(cuò)誤。
相關(guān)鏈接:JAVA認(rèn)證考試報(bào)考指南 考試論壇 考試知道 考試動(dòng)態(tài)
(責(zé)任編輯:fky)