java软件工程师笔试题目(II) 规则: 1. 时间:40分钟 2. 个人独立完成,不能使用手机等上网上查询。如果被发现作弊,则零分。 3. 为了环保和节约纸张,请在答题卡上填写答案 一、不定项选择题(每题5分) Question 1 Given: 11. public class Test { ( E4 R6 k6 r: x0 F8 u# O
12. public static void main(String [] args) {
% T4 P7 j9 I3 k; o13. int x =5;
7 @7 {, H' Z" f; b3 p; p; T+ _5 F14. boolean b1 = true; ! Y* ~8 s/ t* j- c" z
15. boolean b2 = false;
/ X" N1 x1 t- m* B. U* _17.if((x==4) && !b2)
. A4 M9 B( p7 i% I! p8 B4 r4 t$ k18. System.out.print(”l “); 0 F" s$ l; [5 D. p; u
19. System.out.print(”2 “); 6 v3 b: }7 Z" r9 T
20. if ((b2 = true) && b1) 9 g1 c5 u6 [' B0 r. e- L6 y; h/ O& M
21. System.out.print(”3 “);
; u7 {& U+ ?" ]22. } 9 i' A* G* F# r
23. } 2 D7 Q$ K* ]) y7 j0 m1 Y- d- ~
What is the result?
9 z% U- C, E3 M* L7 _: I1 C* C7 FA. 2
% D+ W/ L2 X; |3 eB. 3 # ], s) J8 u3 u6 T% a0 ]- z8 K
C. 1 2 & B9 d% n$ ~% [! A ~
D. 2 3 % @5 S$ f& H8 O6 z0 ?
E. 1 2 3 6 m2 ~7 y" j7 a
F. Compilation fails.
' Z) H5 d% l' V3 d0 ]G. Au exceptional is thrown at runtime. Question 2 Assume that country is set for each class. Given: 10. public class Money { 7 Q, l% A% H% g8 v! M9 r9 W
11. private String country, name; ' Q' }3 c3 J0 f) _5 ~; [: P
12. public String getCountry() { return country; } 8 U2 u y5 e* q6 V- x9 Y: G& k5 W
13.} and: 24. class Yen extends Money { , \+ N: ?2 o0 |
25. public String getCountry() { return super.country; } 1 G+ H" _" O, m% E
26. }
* U* j( B/ s9 @27. ) o2 u9 B1 C" \1 d" r, ^& x
28. class Euro extends Money { 2 Z: q( x7 M1 S! b& Y3 c/ a. f q
29. public String getCountry(String timeZone) {
( `: H8 s. q7 |. G# a# L30. return super.getCountry(); & W' `. F; L, ~7 q* X- ?
31. }
! c7 p. w7 r3 I7 K' R& c32. } # G2 A' r% ^) G- v6 J3 P
Which two are correct? (Choose two.) A. Yen returns correct values. , n. h" b! k) H3 }$ b+ f
B. Euro returns correct values.
, c2 V3 {0 v" ?7 {/ |* xC. An exception is thrown at runtime.
' [1 W$ F' L# H0 N$ pD. Yen and Euro both return correct values. 4 G) r0 i0 x# _! `1 J
E. Compilation fails because of an error at line 25.
2 H) q( M4 |) d1 C* D2 e* T: ^# bF. Compilation fails because of an error at line 30. Question 3 Given: 1. class TestA { ! S% q; G. O, W
2. public void start() { System.out.println(”TestA”); } ( n" i) }+ i6 | r9 G6 t% ?
3. } " f4 }3 K( T2 Y' x9 h* A
4. public class TestB extends TestA { ( R4 {" ^8 U/ g) T! y# K
5. public void start() { System.out.println(”TestB”); } 6 E1 ]* x: V# A% Q: {
6. public static void main(String[] args) { 7 r" x$ j8 J8 B, T5 I) m
7. ((TestA)new TestB()).start(); % n! L, _! m$ C5 |1 [
8. } , u& {' K* l$ l3 d
9. }
+ T) y8 B5 O: {9 XWhat is the result? A. TestA 2 L4 e& q( S5 |. Q3 v- ]
B. TestB
6 g) \1 `: W, R3 x$ iC. Compilation fails. " M) o+ B) ?% N
D. An exception is thrown at runtime. Question 4 Given: 11. public static void main(String[] args) {
1 ^2 u& t2 h! P, T( U( V% K( x12. String str = “null’;
# N0 x* z, ?* n13. if (str == null) {
1 u, s- q/ y: F" y7 q14. System.out.println(”null”); ' u7 B( T1 \, J$ @+ C% K, u: ~3 M
15. } else (str.length() == 0) { # n0 F% o! W* E. N0 z, a
16. System.out.println(”zero”);
$ H ^ ^. j* R( D) A0 N17. } else { ~. W5 ?& D i& ~! l* q
18. System.out.println(”some”);
# G' ?% F9 o. @% }- a: X1 T19. }
V7 w, o6 r9 Z- D$ y20. } 6 u& R. b9 m* o5 o0 {0 N9 }6 u, _
‘What is the result? A. null T% g) Y- T- X1 H& z
B. zero ' E- B( C" C( j& p
C. some
0 J% L6 Q! W9 Y1 SD. Compilation fails. 6 ?3 z- _% e9 `, T
E. An exception is thrown at runtime. Question 5 Given: 33. try { % V; U4 i0 \! c" @# P4 n, H8 O
34. // some code here % p$ `3 ~0 l/ V1 {
35. } catch (NullPointerException e1) { 0 N0 N- _; T. b- q- X4 A* T
36. System.out.print(”a”);
% k) S! ]) p# {" N- R9 n8 y37. } catch (RuntimeException e2) {
1 y% u4 @8 t6 a9 P' g' K38. System.out.print(”b”); % ]' y3 I- {. z* B
39. } finally {
3 [1 X6 P& n" j7 l3 U40. System.out.print(”c”); & h4 P, D5 s) v' q! S1 m) }, F
41. } - b- m4 _$ ~9 J" t* d. V" q0 e/ v
What is the result if a NullPointerException occurs on line 34?
8 h$ V- [, R5 C$ ?& ]! F* q f7 `) ^# hA. c 6 [) D1 N& D3 ?) S
B. a
! N9 f7 u3 ~ R( z! k# F' PC. ab
/ Z9 r/ n, G9 MD. ac : j/ m/ q( X$ z/ o6 d
E. bc
. q M% @: e! ?F. abc Question 6 Given this method in a class: 21. public String toString() { $ d% x# g6 v; r$ e7 G0 h
22. StringBuffer buffer = new StringBuffer();
; C+ q d; _" o% w1 q23. buffer.append(’<’); 8 T& S; t7 s ?
24. buffer.append(this.name); + b1 D3 e6 d+ ]% z( j
25. buffer.append(’>’); 1 {. m3 T5 w& g% U7 ~
26. return buffer.toString(); , r k; i) `5 {5 P% q2 z$ @5 @6 ]* N
27. }
; K3 M. N9 p y8 x6 sWhich is true? A. This code is NOT thread-safe. $ d" T; S4 j; D# u
B. The programmer can replace StringBuffer with StringBuilder with no
- Y' q% s# u2 Y1 r' pother changes. 4 k% O% _, U- L0 `" Z, V1 f5 O2 s" S
C. This code will perform well and converting the code to use
; J3 O! z' l: D4 X) K1 C0 VStringBuilder will not enhance the performance. . i2 c! V: L0 g% @
D. This code will perform poorly. For better performance, the code
+ {' U& o7 L' n( }0 m# F! \should be rewritten: return “<“+ this.name + “>”; Question 7 Given: 14. DateFormat df;
: x) n/ C4 N+ O( X0 n15. Date date = new Date(); 4 j9 ^; `# j+ ?. m1 p
16. //insert code here 2 h7 k& T% ]* i2 K7 Z
17. String s = df.format( date);
p B5 {. g6 @1 ZWhich two, inserted independently at line 16, allow the code to compile? (Choose two.) A. df= new DateFormat();
4 z: M6 t& j0 U0 sB. df= Date.getFormatter(); 6 [' c/ \4 E3 C
C. df= date.getFormatter(); ! I% k" t% J* G* @3 s
D. df= date.getDateFormatter(); ^; R% N c1 a) m, N1 D" j# D
E. df= Date.getDateFormatter(); : b3 e' U u) @ L& \' a
F. df= DateFormat.getInstance();
' [! P* e* Q% h# ~% e- ]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的执行流程。 $ @+ R; q) ~( l2 \) }
|