R
Q. What is the output of the following program code? public class Test{ public static void main(String args[]){ try{ int i; return; } catch(Exception e){ System.out.print("inCatchBlock"); } finally{ System.out.println("inFinallyBlock"); } } }
No solution found for this question.
Add Solution and get +2 points.
You must be Logged in to update hint/solution
Q. The main method should be static for the reason
Q. What is the value of the expression false && false in Java?
Q. hich package is used for Remote Method Invocation (RMI)?
Q. Which of this interface must contain a unique element?
Q. Which of the following is not a memory classification in java?
Q. Which is quicker and uses less memory?
Q. A method can be called only on its ___________.
Q. Which of these class have only one field 'TYPE'?
Q. In Java, what is the purpose of the Arrays.equals() method?
Discusssion
Login to discuss.