首页>计算机等级考试>模拟试题>正文
JAVA程序员试题及答案 2

www.zige365.com 2010-7-28 13:58:59 点击:发送给好友 和学友门交流一下 收藏到我的会员中心
【基础题】

int i = 1,j = -1;

switch (i) {

    case 0, 1:j = 1;

    case 2: j = 2;

    default; j = 0;

}

System.out.println(“j=”+j);

What is the result? ( E )

A.        j = -1

B.        j = 0

C.       j = 1

D.       j = 2

E.        Compilation fails.

7.        【基础题】

switch(x) {

default:

System.out.println(“Hello”);

}

Which two are acceptable types for x? (Choose two) ( AC )

A.        byte

B.        long

C.       char

D.       float

E.        Short

F.        Long

三、名词解释

四、问答题

本新闻共3页,当前在第3页  1  2  3  

我要投稿 新闻来源: 编辑: 作者:
相关新闻