點(diǎn)擊查看:2018年3月全國(guó)計(jì)算機(jī)二級(jí)Java考試練習(xí)題及答案匯總
填空題
1 java 源程序編譯命令是 (javac)
2 java 應(yīng)用程序中有一個(gè)main()方法,它前面有三個(gè)修飾符是 ( public , static , void )
3 java語(yǔ)言數(shù)據(jù)類(lèi)型可分為兩大類(lèi),一類(lèi)稱(chēng)為 ( 基本數(shù)據(jù)類(lèi)型 ) ,另一類(lèi)稱(chēng)為 ( 引用數(shù)據(jù)類(lèi)型 )
4 在轉(zhuǎn)向語(yǔ)句中, ( continue ) 語(yǔ)句使得程序結(jié)束本次循環(huán),回到循環(huán)的條件測(cè)試部分繼續(xù)執(zhí)行。
5設(shè)x為float型變量, y為 double型變量, a為 int型變量,已知 x=2.5f, a=7 ,y=4.22 則表達(dá)式x+a%3*(int)x%(int)y的值為 ( 4.5 )
6設(shè)x為float型變量, y為 double型變量, a為 int型變量,b 為long 型變量,c為char 型,則表達(dá)式x+y*a/x+b/y+c 的值為( double ) 類(lèi)型 7設(shè)有數(shù)組定義:int MyIntArray[ ] = { 10 , 20 , 30 , 40 , 50 , 60 , 70}; 則執(zhí)行以下幾個(gè)語(yǔ)句后的輸出結(jié)果是 ( 120 )
for ( int i = 0 i < MyIntArray.length i + + ) if ( i % 2 = = 1 ) s += MyIntArray[i] System.out.println( s )
for ( int i = 0 i < MyIntArray.length i + + ) if ( i % 2 = = 1 ) s += MyIntArray[i] System.out.println( s )
程序閱讀
1.寫(xiě)出以下程序的運(yùn)行結(jié)果。
class First {
First( ) {
System.out.println ("in First"); } }
public class Second extends First { Second( ) {
System.out.println("in Second"); } public static void main(String[] args) { Second mine= new Second( ); } }
程序運(yùn)行的結(jié)果:
in First in Second
2.解釋程序中語(yǔ)句的含義
純文本文件f1.txt中的內(nèi)容是 abcd
下面的程序?qū)1.txt文件中的內(nèi)容寫(xiě)到f2.txt文件中和屏幕上 import java.io.*;
public class filecopy {
public static void main(String[] args) { try {
StringBuffer str=new StringBuffer( );
FileInputStream fin=new FileInputStream("f1.txt");
意義
FileOutputStream fout=new FileOutputStream("f2.txt");
意義
int c;
while((c=fin.read( ))!=-1) {
fout.write(c); 意義
str.append((char)c); 意義
}
fin.close( ); fout.close( );
String str2=str.toString( );
System.out.println(str2); 顯示的結(jié)果是
}catch(Exception c) {
System.out.println(c); } } }
實(shí)例化輸入流對(duì)象,指定輸入流來(lái)源文件為f1.txt 實(shí)例化輸出流對(duì)象,指定輸出流目標(biāo)文件為f2.txt 將C寫(xiě)入到輸出流對(duì)象中
將整數(shù)C轉(zhuǎn)化為字符,并添加到字符串str的尾部 abcd
微信搜索"考試吧"了解更多考試資訊、下載備考資料
相關(guān)推薦:
2018年全國(guó)計(jì)算機(jī)等級(jí)考試必做試題匯總(各科目)
2018年全國(guó)計(jì)算機(jī)等級(jí)考試復(fù)習(xí)知識(shí)點(diǎn)匯總(各科目)
2018計(jì)算機(jī)等級(jí)考試報(bào)名時(shí)間|各地報(bào)名入口|報(bào)名條件
2018年全國(guó)計(jì)算機(jī)等級(jí)考試時(shí)間|教材目錄(2018年版)
2018全國(guó)計(jì)算機(jī)等級(jí)考試備考經(jīng)驗(yàn)及應(yīng)試技巧匯總
北京 | 天津 | 上海 | 江蘇 | 山東 |
安徽 | 浙江 | 江西 | 福建 | 深圳 |
廣東 | 河北 | 湖南 | 廣西 | 河南 |
海南 | 湖北 | 四川 | 重慶 | 云南 |
貴州 | 西藏 | 新疆 | 陜西 | 山西 |
寧夏 | 甘肅 | 青海 | 遼寧 | 吉林 |
黑龍江 | 內(nèi)蒙古 |