Are arrays passed by reference in java?
No Answer is Posted For this Question
Be the First to Post Answer
without using arthematic operation ,how can you write the logic for adding/substraction/multiplication?
7 Answers Tanla Solutions, Wipro,
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.
What is parameter tag and what is its use?
What are the actions that can occur when a thread enters blocked state?
Is void a keyword in java?
What is internal iteration in java se 8?
What is the difference between size and length in java?
When should you use arraylist and when should you use linkedlist?
What is method and methodology?
Can an abstract class be a final class?
When is the finally clause of a try-catch-finally statement executed?
Can static methods be inherited?