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

String is mutable or immutable?

3 Answers  


how its run?

0 Answers  


As a developer what steps do you take to improve the performance?

4 Answers  


What is unicode?

1 Answers  


Why inputstreamreader is used in java?

0 Answers  






if we give input as " hi how are you" then the output should be "uoy woh"...it should skip odd words in the input and should reverse even words from the end of string...can anyone help me to write this program in java

1 Answers  


what is the difference b/w static and final methods?

1 Answers  


How can you say HashMap is syncronized?

14 Answers   Arete, IBM,


What is prime number in java?

0 Answers  


What is n in java?

0 Answers  


what is use of business objects?

3 Answers   Tech Mahindra,


What is difference between static class and singleton pattern?

0 Answers  


Categories