- 一级建造师考试
- 二级建造师考试
- 三支一扶
- 安全评价师考试
- 保险经纪资格考试
- 报关员资格考试
- 博士入学考试
- 成人高考
- 成人英语三级考试
- 程序员考试
- 出版专业资格考试
- 大学英语三级
- 大学英语四六级考试
- 单证员考试
- 导游证考试
- 电气工程师
- 电子商务设计师考试
- 房地产经纪人考试
- 房地产评估师考试
- 高级会计师资格考试
- 高考
- 高中会考
- 给排水工程师
- 公共英语等级考试
- 公务员考试
- 国际货运代理
- 国际内审师
- 国家司法考试
- 化工师
- 环境影响评价师
- 会计人员继续教育
- 会计职称考试
- 基金从业资格
- 计算机等级考试
- 计算机软件水平考试
- 监理工程师考试
- 教师招聘
- 教师资格
- 结构工程师考试
- 经济师考试
- 考研
- 空姐招聘
- 遴选
- 美术高考
- 普通话考试
- 期货从业资格
- 求职招聘
- 人力资源管理师
- 软件设计师考试
- 商务英语考试(BEC)
- 社会工作者职业水平考试
- 审计师考试
- 事业单位招聘
- 事业单位招聘
- 数据库系统工程师
- 特许公认会计师(ACCA)
- 同等学力
- 统计师考试
- 托福考试(T0EFL)
- 外贸跟单员考试
- 网络工程师考试
- 网络管理员考试
- 网络规划设计师考试
- 系统分析师考试
- 消防工程师
- 小升初
- 校园招聘
- 信息系统管理工程师考试
- 选调生考试
- 雅思考试
- 岩土工程师考试
- 医生招聘
- 艺术高考(艺考)
- 银行从业人员资格
- 银行招聘
- 英语翻译资格考试
- 营销师考试
- 造假工程师考试
- 证券从业资格考试
- 中考
- 注册安全工程师考试
- 注册测绘师考试
- 注册城市规划师考试
- 注册环保工程师考试
- 注册会计师考试
- 注册计量师考试
- 注册建筑师考试
- 注册税务师考试
- 注册资产评估师
- 专升本考试
- 专业英语四级八级考试
- 自考
- 安全员
- 跟单员
- 考试一本通
- 其它资料
北京宇信易诚科技有限公司招聘 JAVA 笔试真题及答案
选择题
1:鉴于 Java 的特点,它最适合的计算环境是 b
A.并行计算环境
B.分布式计算环境
C.高强度计算环境
D.开放式计算环境
2:Which method you define as the starting point of new thread in a class from which new
the thread can be excution? b
A.public void start()
B.public void run()
C.public void runnable()
D.public static void main(String args[])
3:Which statement about listener is true? A 什么是 Listener
A.Most component allow multiple listeners to be added.
B.If multiple listener be add to a single component, the event only affected one listener.
C.Component don?t allow multiple listeners to be add.
D.none
4:软件生命周期的瀑布模型把软件项目分为 3 个阶段、8 个子阶段,以下哪一个是正常的开发顺序? a
A.计划阶段、开发阶段、运行阶段
B.设计阶段、开发阶段、编码阶段
C.设计阶段、编码阶段、维护阶段
D.计划阶段、编码阶段、测试阶段
5: b
1. What will be printed when you execute the following code?
2.
3. class X
4. {
5. Y b = new Y();
6. X()
7. {
8. System.out.print("X");
9. }
10. }
11.
12. class Y
13. {
14. Y()
15. {
16.
System.out.print("Y");
17. }
18. }
19.
20. public class Z extends X
21. {
22. Y y = new Y();
23. Z()
24. {
25. System.out.print("Z");
26. }
27. public static void main(String[] args)
28. {
29.
new Z();
30. }
31. }
32.
33. Choices:
A.Z
B.YZ
C.XYZ
D.YXYZ
6: c
1. Give the following method:
2. public void method( ){
3. String a,b;
4. a=new String(“hello world”);
5. b=new String(“game over”);
6. System.out.println(a+b+”ok”);
7. a=null;
8. a=b;
9. System.out.println(a);
10. }
11. In the absence of compiler optimization, which is the earliest point the object a refer
ed is definitely elibile to be garbage collection.
A.before line 5
B.before line 6
C.before line 7
D.before line 9
7: c
1. Which is the most appropriate code snippet that can be inserted at line 18 in the foll
owing code?
2.
3. (Assume that the code is compiled and run with assertions enabled)
4.
5. 1. import java.util.*;
6.
7. 2.
8.
9. 3. public class AssertTest
10.
11. 4. {
12.
13. 5.
private HashMap cctld;
14.
15. 6.
16.
17. 7.
public AssertTest()
18.
19. 8.
{
20.
21. 9.
cctld = new HashMap();
22.
23. 10.
cctld.put("in", "India");
24.
25. 11.
cctld.put("uk", "United Kingdom");
26.
27. 12.
cctld.put("au", "Australia");
28.
29. 13.
// more code...
30.
31. 14.
}
32.
33. 15.
// other methods ....
34.
35. 16.
public String getCountry(String countryCode)
36.
37. 17.
{
38.
39. 18.
// What should be inserted here?
40.
41. 19.
String country = (String)cctld.get(countryCode);
42.
43. 20.
return country;
44.
45. 21.
}
46.
47. 22. }
A.assert countryCode != null;
B.assert countryCode != null : "Country code can not be null" ;
C.assert cctld != null : "No country code data is available";
D.assert cctld : "No country code data is available";
8:Which declares for native method in a java class corrected? b
A.public native void method(){}
B.public native void method();
C.public native method();
D.public void native method();
9: d
1. What will be the result of executing the following code?
2.
3. public static void main(String args[])
4. {
5. char digit = 'a';
6.
for (int i = 0; i < 10; i++)
7. {
8.
switch (digit)
9.
{
10.
case 'x' :
11.
{
12.
int j = 0;
13.
System.out.println(j);
14.
}
15.
default :
16.
{
17.
int j = 100;
18.
System.out.println(j);
19.
}
20.
}
21. }
22. int i = j;
23. System.out.println(i);
24. }
25.
26. Choices:
A.100 will be printed 11 times.
B.The code will not compile because the variable i cannot be declared twice within the
main() method.
C.The code will not compile because the variable j cannot be declared twice within the
switch statement.
D.None of these.
10:Which modifier should be applied to a method for the lock of object this to be obtained
prior to excution any of the method body? a
A.synchronized
B.abstract
C.final
D.static
11: b
1.
2.
3.
4.
5.
6.
Give this class outline:
class Example{
private int x;
//rest of class body…
}
Assuming that x invoked by the code java Example, which statement can made x be
directly accessible in main() method of Example.java?
A.Change private int x to public int x
B.change private int x to static int x
温馨提示:当前文档最多只能预览 5 页,此文档共10 页,请下载原文档以浏览全部内容。如果当前文档预览出现乱码或未能正常浏览,请先下载原文档进行浏览。
发表评论(共0条评论)
下载需知:
1 该文档不包含其他附件(如表格、图纸),本站只保证下载后内容跟在线阅读一样,不确保内容完整性,请务必认真阅读
2 除PDF格式下载后需转换成word才能编辑,其他下载后均可以随意编辑修改
3 有的标题标有”最新”、多篇,实质内容并不相符,下载内容以在线阅读为准,请认真阅读全文再下载
4 该文档为会员上传,版权归上传者负责解释,如若侵犯你的隐私或权利,请联系客服投诉
点击加载更多评论>>