java自学网VIP

Java自学网

 找回密码
 立即注册

QQ登录

只需一步,快速开始

查看: 3687|回复: 0

【java笔试题】某金融公司java面试题 中级 珍藏

[复制链接]
  • TA的每日心情
    开心
    2021-5-25 00:00
  • 签到天数: 1917 天

    [LV.Master]出神入化

    2025

    主题

    3683

    帖子

    6万

    积分

    管理员

    Rank: 9Rank: 9Rank: 9

    积分
    66345

    宣传达人突出贡献优秀版主荣誉管理论坛元老

    发表于 2016-7-27 14:24:21 | 显示全部楼层 |阅读模式
    java软件工程师笔试题目(II)
       
    规则:
    1. 时间:40分钟
    2. 个人独立完成,不能使用手机等上网上查询。如果被发现作弊,则零分。
    3. 为了环保和节约纸张,在答题卡上填写答案
    一、不定项选择题(每题5分)
    Question 1
    Given:
    11. public class Test { 6 J8 {# F$ T" w/ b
    12. public static void main(String [] args) { & X& M  r0 x9 f3 ]6 v% t7 i7 N8 ^2 Y6 Z
    13. int x =5; 5 S  [8 x9 p6 d9 M" v! h8 B
    14. boolean b1 = true;
    ( _0 x: w. H( o9 f! U9 `. W15. boolean b2 = false;  1 f: k5 q2 a) F! X- l5 y
    17.if((x==4) && !b2) ' u# k) d( A6 i, L+ g5 m
    18. System.out.print(”l “); : l7 T! M1 Z& V/ O' m
    19. System.out.print(”2 “);
    + X8 j2 B7 l! j% H9 E9 J20. if ((b2 = true) && b1)  ! O  A1 z( r% S! m& s
    21. System.out.print(”3 “);
    5 S, w% m5 |" I7 l0 M- R9 J22. }
    # U- t% m& Z6 Z8 S! P& N23. } & c8 Z/ F6 Y5 f! v0 _# D) S
    What is the result?
    : d) }, I& I$ B% |, x' t3 u+ MA. 2 7 B. I/ z4 }+ j; z
    B. 3 / f; W' K& m6 i( K9 B& z
    C. 1 2 ( G6 f0 v% M' E# u: K5 u0 c8 M
    D. 2 3 ) c  }- n- o/ x6 j
    E. 1 2 3 . z1 l% C% b  ~$ q. I
    F. Compilation fails.
    2 N9 D: ~0 t7 J7 P7 iG. Au exceptional is thrown at runtime.
    Question 2
    Assume that country is set for each class.
    Given:
    10. public class Money {
    " ?/ e7 a! a# w11. private String country, name;
    * K9 C/ K! a" I% A) x, w: I12. public String getCountry() { return country; }
    7 |  h, W) V6 Y: u8 g13.}
    and:
    24. class Yen extends Money { , Z7 E6 f5 D$ h+ n' N
    25. public String getCountry() { return super.country; }
    9 _3 r* c! u4 P26. }
    4 u/ |# S+ J8 O' c- `# h27. " N4 d( A& K% D( _
    28. class Euro extends Money {
    9 D9 _9 {, C' k# w' A+ K. `29. public String getCountry(String timeZone) { % M% n! p8 l; n/ w( R" b
    30. return super.getCountry();
    6 v  T0 P* ?4 h' j/ ?6 E31. } ( u. m3 \3 `1 k
    32. }
      j2 o4 `1 D' z- PWhich two are correct? (Choose two.)
    A. Yen returns correct values.
    7 l9 i6 V! _1 m$ v9 Q* Y, XB. Euro returns correct values. % [/ ~& X6 T* b: O2 V3 W
    C. An exception is thrown at runtime. 0 u, ]6 t7 x  r- K0 s
    D. Yen and Euro both return correct values. + ~, M4 U3 N4 H6 E9 G
    E. Compilation fails because of an error at line 25. # z+ }/ C  i+ {' ^7 ]3 e/ U+ D
    F. Compilation fails because of an error at line 30.
    Question 3
    Given:
    1. class TestA {
    * P- Z$ L9 l/ ?6 u2. public void start() { System.out.println(”TestA”); }
    1 A: N1 _- {  [; w/ s3. }
    * w* l6 W9 M9 G3 ?! b4. public class TestB extends TestA { ( S. {7 W/ a2 ^; Z. t$ q7 @
    5. public void start() { System.out.println(”TestB”); }
    ) A8 l- O0 c* {' \6. public static void main(String[] args) {     # a6 d0 X# G( D6 L& L2 n# I
    7. ((TestA)new TestB()).start();
    / h% l# T3 L1 Q3 y& V6 x8. } " b! |( f/ Q: H) i
    9. } % V/ B# ]. \/ @1 `0 G
    What is the result?
    A. TestA   K+ R# r0 g5 a# e' x" [0 _
    B. TestB
    / @6 P# H  }+ f/ y9 YC. Compilation fails.
    , q- `/ W+ Y) O1 n; ~% hD. An exception is thrown at runtime.
    Question 4
    Given:
    11. public static void main(String[] args) {
    ! }, L/ K* _6 D: x$ n12. String str = “null’; ' {  `, w1 M. Y
    13. if (str == null) {     . V, ^' c* r; s# f
    14. System.out.println(”null”);
    - n& L* u: O8 o' }& X0 r: l15. } else (str.length() == 0) {   
    6 H/ k8 E' u3 P( K" y8 W% h3 [, T. u16. System.out.println(”zero”); ) Q4 |( D( X9 j! K2 J
    17. } else { ; ?5 k6 q- y6 X
    18. System.out.println(”some”);
    - @/ v( e& q) e  X# s3 G19. } , o' @& s3 |% d' D+ P/ N
    20. }
    ' a- D$ }+ ^+ ]/ f: ^‘What is the result?
    A. null
    $ T  _) s$ Y( f% c7 D2 l+ RB. zero 3 ^- [# X$ A' v8 z
    C. some
      r: K7 i3 m) q1 K) l, [D. Compilation fails. 0 B1 E- u. [2 g2 I. {- @; p
    E. An exception is thrown at runtime.
    Question 5
    Given:
    33. try {
    ( x! L8 y7 w" O8 p* Y( V# f$ m% `! m34. // some code here
    2 X  ?! ?% H- p' a8 f+ P35. } catch (NullPointerException e1) {
    ' D5 o3 P; r5 F' U9 R* i36. System.out.print(”a”); / `0 {, n: U! ]) ]  C
    37. } catch (RuntimeException e2) { 7 I( B1 r. ], x
    38. System.out.print(”b”); " u% q4 g3 H2 K) W# K0 }
    39. } finally {
    5 L6 u# I1 G" u' b* S40. System.out.print(”c”);
    * r6 K: j6 @% h/ ]8 T' R8 v7 O41. } # p+ S8 r- I. |+ o, C* Q
    What is the result if a NullPointerException occurs on line 34?
    + X0 U3 I$ |, ~, T0 p& kA. c 6 q6 U, Y  L  j) g; T
    B. a # e4 N, |( w6 E  @+ Y5 Y  p
    C. ab
    9 q- `3 A( h  C; ]4 J' J' p2 ~D. ac
    % V7 X7 ^" z" x0 J+ k+ uE. bc
    / h8 D' U1 }9 f9 Z8 `F. abc
    Question 6
    Given this method in a class:
    21. public String toString() {
    5 H+ r+ g! l3 v0 @9 Q; M22. StringBuffer buffer = new StringBuffer(); / k' b, _8 I) B) {3 \! ]# }
    23. buffer.append(’<’);
    5 m, F) [5 T2 O9 n% R; p- f24. buffer.append(this.name); ! q' ]& Z* [$ X- O, p
    25. buffer.append(’>’); 7 P0 p" ?* D8 I, F; J
    26. return buffer.toString();
    . j( j1 n% ?7 d9 h27. }
    $ O( q) R0 V( n2 D( U: i( C) d! |' QWhich is true?
    A. This code is NOT thread-safe. $ U8 y- c7 q3 \9 N& u* g) t
    B. The programmer can replace StringBuffer with StringBuilder with no
    " D3 ~) b! k8 Vother changes. / B0 S0 _/ }5 N6 i7 U
    C. This code will perform well and converting the code to use 9 T+ ^$ ]0 D2 ~7 ^( c  }3 a( [! b" g! |
    StringBuilder will not enhance the performance.
    - @. j5 N& Z' T- m+ l: P4 ^$ MD. This code will perform poorly. For better performance, the code
    ' F) Z; K& y3 H& M7 Y9 H& Ishould be rewritten: return “<“+ this.name + “>”;
    Question 7
    Given:
    14. DateFormat df; 3 t" ~1 s  Z2 z. u& o- G
    15. Date date = new Date();
    " G9 i5 x$ f5 f' p  W7 P* R16. //insert code here - N+ M; w$ e- i$ N, m) c# P# L9 ~
    17. String s = df.format( date); 2 |1 e* Z- `# n
    Which two, inserted independently at line 16, allow the code to compile? (Choose two.)
    A. df= new DateFormat(); 7 }1 v! A+ o0 C$ e! Q0 `  e$ e4 F
    B. df= Date.getFormatter(); 7 A- L, [  S! L
    C. df= date.getFormatter(); ' }$ F3 Q5 j* o- e
    D. df= date.getDateFormatter(); : l& G2 ^% C5 a2 B2 U
    E. df= Date.getDateFormatter(); : D9 Q! v4 {# y- W' S  @" Y
    F. df= DateFormat.getInstance();
    % s( Q( i  B% t7 wG. 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分)
    1AOPIOC的概念以及在spring中是如何应用的。
    2、简单描述hibernate持久化对象三种状态转换关系。
    3spring的事务有几种方式?并描述spring事务的隔离级别和传播行为。  
    4、简要阐述struts2的执行流程。

    $ k( H8 a9 S0 e, g2 @: r# F
    回复

    使用道具 举报

    您需要登录后才可以回帖 登录 | 立即注册

    本版积分规则

    QQ|Archiver|手机版|小黑屋|Java自学网

    GMT+8, 2024-11-21 17:31 , Processed in 0.153446 second(s), 34 queries .

    Powered by Javazx

    Copyright © 2012-2022, Javazx Cloud.

    快速回复 返回顶部 返回列表