失效链接处理 |
大连东软Java期中题库 PDF 下载
本站整理下载:
提取码:i3iy
相关截图:
主要内容:
二、多选 共20题 (共计40分)
第1题 (2.0分) 题号:1059 难度:中 第1章
Which are valid declarations?
A:int $x;
B:int 123;
C:int _123;
D:int %percent;
E:int *divide;
F:int central_sales_region_Summer_2005_gross_sales;
答案:ACF
第2题 (2.0分) 题号:1058 难度:中 第1章
what is the result when you compile and run the following code?
char c='c';
int i=10;
double d=10;
long l=1;
String s="Hello"
Select all right answer:
A:c=c+i
B:s+=i
C:i+=s
D:c+s
答案:B
第3题 (2.0分) 题号:1062 难度:中 第1章
给定下面的类定义
public class ShrubHill{
public void foregate(String sName){}
//Here
}
下面的哪一个方法可以合法的直接替换//Here?
A:public int foregate(String sName){}
B:public void foregate(StringBuffer sName){}
C:public void foreGate(String sName){}
D:private void foregate(String sType){}
答案:BC
第4题 (2.0分) 题号:989 难度:中 第2章
class Example{
public static void main(String[] args){
int x
if(x>4) {System.out.println("case 1");}
else if(x>9){
System.out.println("case 2");
}
else {System.out.println("case 3");}
}
}
what value of x will cause case 3 printed in the output
A:less than zero
B:less 4
C:between 4 and 9
D:10 and greater
E:None
|