84. try {
85. ResourceConnection con =
resourceFactory.getConnection();
86. Results r = con.query(”GET INFO FROM CUSTOMER”);
87. info = r.getData();
88. con.close();
89. } catch (ResourceException re) {
90. errorLog.write(re.getMessage());
91. }
92. return info;
Which is true if a ResourceException is thrown on line 86?
1 Line 92 will not execute.
2 The connection will not be retrieved in line
85.
3 The resource connection will not be closed
on line 88.
4 The enclosing method will throw an exception
to its caller.



84. try { 85. ResourceConnection con = resourceFactory.getConnection(); 86. Results r = con.quer..

Answer / nik

The resource connection will not be closed on line 88.

Is This Answer Correct ?    21 Yes 3 No

Post New Answer

More Core Java Interview Questions

What is java instanceof operator?

0 Answers  


What is the declaration statement?

0 Answers  


How many bits is a float?

0 Answers  


In multi-threading how can we ensure that a resource isn't used by multiple threads simultaneously?

0 Answers  


Is a class an object?

0 Answers  






What is the difference between path and classpath variables?

0 Answers  


Need to use public,static keywords in main function?

5 Answers  


How do you make a thread in java?

0 Answers  


What is the protocol is used in type4 driver?

4 Answers   CMC,


What do you mean by light weight and heavy weight components?

0 Answers  


What is stringbuffer in java?

0 Answers  


What do you mean by local class?

0 Answers  


Categories