What is the Layout for ToolBar?
What are the methods available in a class?
How do you read a char in java?
What is a values collection view ?
What is meant by throwing an Exception?
A person says that he compiled a java class successfully without even having a main method in it? Is it possible?
What is the difference between an interface and an abstract class?
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.
When will you define a method as static in Java?
0 Answers SwanSoft Technologies,
What is bitwise complement?
What is the benefit of using enum to declare a constant?
Explain Global variables in Packages?
Is math class static in java?