java软件工程师笔试题目(II) 规则: 1. 时间:40分钟 2. 个人独立完成,不能使用手机等上网上查询。如果被发现作弊,则零分。 3. 为了环保和节约纸张,请在答题卡上填写答案 一、不定项选择题(每题5分) Question 1 Given: 11. public class Test { 6 x' a9 X# B5 l4 Y
12. public static void main(String [] args) { ! d% e. T" t+ ]% {
13. int x =5; 7 v' k1 \, i& O1 W! u) [& Z
14. boolean b1 = true;
7 p; ^' O n' e1 D# ?' a15. boolean b2 = false;
8 n3 o7 d" q0 P4 V: _17.if((x==4) && !b2) ) J5 k# v7 j" g# T* r5 l
18. System.out.print(”l “);
0 y0 C1 \( l: e# p+ M) P: l" u! M19. System.out.print(”2 “);
v; }# J$ x2 O+ I- Q20. if ((b2 = true) && b1)
- [6 n) N3 e; n$ E% y+ I8 F0 _21. System.out.print(”3 “); 1 B7 V Y4 X4 l* \1 L8 d
22. } ! U+ _* n# H. N6 P5 I8 C6 [
23. }
" G& M9 P" e- i0 XWhat is the result?
. O$ ^" ? M- S! v# g- CA. 2
) l& ]9 k# a7 T8 D$ l/ i0 }B. 3
6 m5 i* x! D5 Y0 l0 W6 Q1 E& b- AC. 1 2 1 o. k5 B+ i% F; |8 p1 }' m/ Q
D. 2 3
6 f" U% }8 _ N4 qE. 1 2 3
/ r4 A) T& { |) Q" }F. Compilation fails.
/ x2 x: \- D( N0 |G. Au exceptional is thrown at runtime. Question 2 Assume that country is set for each class. Given: 10. public class Money {
% G, v9 ~. u- o) W' p! I) R11. private String country, name; 9 {6 i* Z' |# Y8 C* @. ~
12. public String getCountry() { return country; }
" R- A* ]+ n! w- m; G6 f13.} and: 24. class Yen extends Money { ( O! `0 p9 j% q4 M$ x) E" G
25. public String getCountry() { return super.country; }
6 ]& Q, R# U' g3 F- N2 a26. } ' n% H; e" ^% p
27. / X+ F2 I1 z( C+ T, g6 W
28. class Euro extends Money { 9 k1 h% R i. h2 A6 Z& i
29. public String getCountry(String timeZone) { ! ~5 t" y! ~/ j) o
30. return super.getCountry(); - _3 ~8 R, i5 D0 v- ^
31. } + ^9 R' v9 D) K; Q& I8 s
32. }
( N- k3 k. b3 B9 dWhich two are correct? (Choose two.) A. Yen returns correct values.
2 D' E: M/ m+ z$ sB. Euro returns correct values.
4 M3 ~$ ^( s1 {5 HC. An exception is thrown at runtime. 3 o& r' H, j9 f% K) |+ {+ ?( z- `
D. Yen and Euro both return correct values.
1 _1 A0 X7 h; o3 g' A* v' @5 Z- rE. Compilation fails because of an error at line 25. ) d$ ~$ {) J2 I3 h3 A( L3 Q# C
F. Compilation fails because of an error at line 30. Question 3 Given: 1. class TestA {
7 {. N% f8 x2 w; c3 E, V* D. f2. public void start() { System.out.println(”TestA”); }
4 `4 G: o& c! k7 @/ f7 j, t; d. N3. }
. G" W! g8 N5 }4. public class TestB extends TestA {
/ a# k G1 ^# L9 n( U5. public void start() { System.out.println(”TestB”); } % v$ t$ D( o1 b
6. public static void main(String[] args) { % B; r( u: w/ h6 q3 T
7. ((TestA)new TestB()).start();
2 h( G( h6 P# q; S8 q- k8. } 8 N6 J, P0 E2 d/ f8 _
9. } 0 P+ z7 ]) O: w, O
What is the result? A. TestA
( G) q" d! n( b7 `7 c3 jB. TestB ' a' c8 D; s) b: Y, ?9 m1 j
C. Compilation fails.
6 N) Z4 K/ |$ ~D. An exception is thrown at runtime. Question 4 Given: 11. public static void main(String[] args) { ; P% L2 U* H& u" F2 V5 ` l) ~
12. String str = “null’;
- x% g4 ^0 P4 `. H7 ?1 s/ ?13. if (str == null) {
( _4 x6 ]/ |& x- I7 p [7 }) x. m3 N14. System.out.println(”null”);
# [: e% J! {+ k15. } else (str.length() == 0) {
6 k2 E7 I1 I+ B! w6 @& L4 ]16. System.out.println(”zero”); $ i3 p* o" B: j- \3 B
17. } else { 6 i1 F: f( z5 F9 `. i
18. System.out.println(”some”);
1 O& X C8 C+ A' p- S19. }
7 B7 v+ t* ] Y5 i20. } 4 T; b! V9 g/ s. D7 j P
‘What is the result? A. null
$ c6 x! k0 [8 ~/ P3 g7 I% MB. zero # u5 O" T8 w3 D
C. some
. A% D; r! z( TD. Compilation fails. # T# l0 }+ W% P5 [* c* C# |
E. An exception is thrown at runtime. Question 5 Given: 33. try {
$ |/ q& E4 @$ o2 T34. // some code here
" Q# W7 |- w9 ~7 d0 B5 V' ?! G35. } catch (NullPointerException e1) {
4 k2 W1 |+ }- M% z36. System.out.print(”a”);
! C9 ?1 C, e% k37. } catch (RuntimeException e2) {
8 N3 L" ?% f a8 g4 T# M! w38. System.out.print(”b”);
- z* x3 R2 l/ s8 G% ~0 T. U39. } finally { - r3 k; R6 j2 [, t, u! ?$ E$ m8 A6 y
40. System.out.print(”c”); 1 a1 j+ d0 D) `7 G# Z% e
41. }
# e7 d! w+ @3 Z5 ~0 X8 o* M! P5 t1 o8 U$ wWhat is the result if a NullPointerException occurs on line 34? # D9 h0 a7 @! D) [5 b3 s% ~9 R
A. c $ u- i" `0 J2 ^" {# x8 `2 A
B. a ) U* G6 _- e$ t) z
C. ab
! F* Z: V0 n7 Y; wD. ac ! Z/ \: @, \0 q5 o8 @$ `" K% ]
E. bc 9 F0 I R$ \- X3 P
F. abc Question 6 Given this method in a class: 21. public String toString() {
8 M. \4 B& X/ y* l22. StringBuffer buffer = new StringBuffer(); $ X% K* }( ~2 ~1 I8 q& x
23. buffer.append(’<’);
( }* Q7 K+ x* i& ]& I24. buffer.append(this.name); - a& k. Y* Y0 t0 D5 c8 Y0 `
25. buffer.append(’>’); & t/ L2 X3 M5 i }+ D
26. return buffer.toString(); ) }# A0 `) C7 x/ _2 y
27. } q m. U6 k0 b: ]4 W
Which is true? A. This code is NOT thread-safe.
' C& M a1 `" X% u+ jB. The programmer can replace StringBuffer with StringBuilder with no
* n0 A! b0 U, L# yother changes. 4 _& H' v2 x; ?
C. This code will perform well and converting the code to use & z, M; h+ o; k3 N! X! W
StringBuilder will not enhance the performance.
% o1 Y' q) G9 h! l9 UD. This code will perform poorly. For better performance, the code 4 t- A7 c) Q; w: v, t* x
should be rewritten: return “<“+ this.name + “>”; Question 7 Given: 14. DateFormat df; ) J3 O, U( g7 ^6 H
15. Date date = new Date();
% `6 L: @) E$ k. h4 l16. //insert code here
* N4 A$ B" W9 |1 E17. String s = df.format( date);
. M5 a- a( s. P) J/ g+ x# WWhich two, inserted independently at line 16, allow the code to compile? (Choose two.) A. df= new DateFormat();
' f" Z5 W! c0 l9 DB. df= Date.getFormatter();
0 m$ O- ^7 j% T6 nC. df= date.getFormatter();
1 H- M5 ]$ k2 p9 w% ]D. df= date.getDateFormatter();
/ Q" K) j* ?" c& p$ wE. df= Date.getDateFormatter();
L( y: n# W4 DF. df= DateFormat.getInstance(); 3 R$ N) c9 h( }' v8 U
G. df = DateFormat.getDateInstance(); Question 8 为数据库中一个或者多个表中的数据提供另外一种查看方式的逻辑表被称为()。(选择一项) A. 存储过程 B. 数据库关系图 C. 视图 D. 表 Question 9 已知employee表中具有默认约束df_email,删除该约束的语句为()。A. alter talbe employee drop constraint df_email B. alter talbe employee remove constraint df_email C. alter talbe employee delete constraint df_email D. remove constraint df_email from talbe employee Question 10 将E-R图转换为表的过程中,如果实体之间存在多对多的关系,通常的做法是()。 A. 在两个实体间建立主外键关系。 B. 在两个实体间建立关联表,把一个多对多的关系分解成两个一对多的关系。 C. 在两个实体间建立关联表,把一个多对多的关系分解成两个一对一的关系。 D. 在两个实体间不建立任何关系。 Question 11 假设有scores表的设计如下: ID(编号,主键) StudentID(学生编号) CourseID(课程编号) Score(分数) 现在要查询参加过至少两门课程考试的学生各门课程的平均成绩。以下SQL语句正确的是()。 A. select StudentID,avg(score) from scores group by StudentID having count(studentID)>1 B. select StudentID,avg(score) from scores group by StudentID where count(studentID)>1 C. select StudentID,avg(score) from scores group by StudentID where count(studentID)>1 group by StudentID D. select StudentID,avg(score) from scores having count(studentID)>1 Question 12 在()的列上更适合创建索引。 A. 需要对数据进行排序 B. 具有默认值 C. 频繁更改 D. 频繁搜索 Question 13 (hibernate)以下哪个选项不是持久化层的对象状态? A. 临时状态B. 独立状态C. 游离状态D. 持久化状态 Question 14 设计模式一般用来解决什么样的问题( ) A.同一问题的不同表相 B不同问题的同一表相 C.不同问题的不同表相 D.以上都不是 Question 15 设计模式的两大主题是( ) A.系统的维护与开发 B 对象组合与类的继承 C.系统架构与系统开发 D.系统复用与系统扩展 Question 16 单子模式中,两个基本要点( )和单子类自己提供单例 A .构造函数私有 B.唯一实例 C.静态工厂方法 D.以上都不对 二、简答题(每题5分) 1、AOP和IOC的概念以及在spring中是如何应用的。 2、简单描述hibernate持久化对象三种状态转换关系。 3、spring的事务有几种方式?并描述spring事务的隔离级别和传播行为。 4、简要阐述struts2的执行流程。 0 _7 S- n; R% ]0 f
|