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.

Answer Posted / nik

The resource connection will not be closed on line 88.

Is This Answer Correct ?    21 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Is java same as core java?

588


What is java english?

496


extending thread class or implementing runnable interface. Which is better? : Java thread

563


Why method overriding is used?

537


Why is it called boolean?

525






Can we define private and protected modifiers for variables in interfaces?

582


What is a ternary operator in java?

535


Name four container classes.

559


How many bits is a float?

542


Explain about anonymous inner classes in java?

582


How do you differentiate abstract class from interface?

532


What is the argument in java?

497


How many decimal digits is 64 bit?

536


Can we assign the reference to this variable?

545


What is int short for?

516