- 1、本文档共5页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
北京东华合创数码科技股份有限公司
笔试试卷(Java 语言部分)
姓名:
联系方式:
1. which won’t cause a compiler warning or error?a) float f = 1.3;
b) char c = ‘a’;
c) byte b = 257;
d) boolean b = null;
e) int i = 10;
2. 请选择下面这段代码的输出结果?
int i = 0;
switch (i) {
case 0:
System.out.println(zero);
case 1:
System.out.println(one);
case 2:
System.out.println(two);
break;
case 3:
System.out.println(three);
}
1) zero
2) zero,one
3) zero,one,two
4) zero,one,two,three
3. public class Test{
private static int j=0;
public static boolean methodB(int k){
j+=k;
return true;
}
public static void methodA(int i){
boolean b;
b=i10methodB(1);
b=i10methodB(2);
}
public static void main(String args){
methodA(0);
17)
}
}
what is the value of j at line 17?
1)0
2)1
3)2
4)3
4. If we execute the code below with “java Test Red Green Blue”, what is the result?
public class Test{
public static void main(String[] args){
String foo=args[1];
String bar=args[2];
String baz=args[3];
}
}
what is the value of baz?
A. baz has value of
B. baz has value of null
C. baz has value of Red
D. baz has value of Blue
E. baz has value of Green
F. the code does not compile
G. the program throw an exception
5. 请选择下面这段代码的输出结果?
1)public class Test{
2)public static void main(String[] args){
3) class Foo{
4) public int i=3;
5) }
6)Object o=(Object)new Foo();
7) Foo foo=(Foo)o;
8)System.out.println(foo.i);
9) }
10) }
A.compile error at line 6
B.compile error at line 7
C.compile error at line 8
D.print out 3
6.
int index=1;
String[] test=new String[3];
String foo=test[index];
what is the result of foo?
A. B.null C.throw a Exception D.not compile
7. 下面的五个选择中哪两个描述是正确的?(多选)
A. static inner class requires a static initializer
B. A static inner class requires an instance of the enclosing class
C. A static inner class has no reference to an instance of the
您可能关注的文档
- 8BUnit5-6词组.doc
- 2010英语专业毕业论文集(待续).doc
- 1A M1教案.doc
- Intellectual Paradigms in Public Administration 中文翻译.doc
- 五年级第一学期英语第一单元测试卷.doc
- 上海版2A Unit3.doc
- PMBOK常用缩写.doc
- 大学英语表头1册.doc
- 四六级翻译文化词汇.doc
- 2016 词义猜测八法.doc
- 2.3.2有理数的乘法-乘法运算律(同步教学设计)2024-2025学年七年级数学上册同步精品课堂(浙教版2024).docx
- Unit5 Our New rooms Lesson1(教学设计)2024-2025学年重大版英语五年级上册.docx
- 期末专题教学设计 2023-2024学年统编版七年级历史下册.docx
- 扇形统计图(练习课)(教学设计)-2024-2025学年六年级上册数学人教版.docx
- 西师大版一年级下册第四单元 小骑兵之歌 教学设计.docx
- 第十三章 事件与可能性 教学设计 2024——2025学年京改版数学八年级上册.docx
- 8-2 倒幕运动和明治政府的成立 教案.docx
- 第3课 了解信息处理工具(教学设计)浙教版信息科技三年级上册.docx
- 第2单元 8 食物在身体里的旅行2023-2024学年四年级科学上册同步教学配套教学设计(教科版).docx
- 6景阳冈(教学设计)2023-2024学年-部编版语文五年级下册.docx
文档评论(0)