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 state is a thread in when it is executing?

0 Answers  


Explain the relationship between the Canvas and Graphics class?

1 Answers  


What are local variables?

0 Answers  


Can an integer be a string?

0 Answers  


What is implicit object in java?

0 Answers  






Explain the difference between runnable and callable interface in java?

0 Answers  


What is an empty class? What functionality does it offer in Java?

0 Answers   Deloitte, EXL, JPMorgan Chase,


Is zero a positive integer?

0 Answers  


How do you control extraneous variables?

0 Answers  


What is the difference between integer parseint and integer valueof?

0 Answers  


How do you sort in descending order in java using collections sort?

0 Answers  


Which one of the following suits the description of a string better: derived or primitive?

0 Answers  


Categories