R
Q. What will be the output of the following Java code?
class Output { public static void main(String args[]) { try { int a = 0; int b = 5; int c = b / a; System.out.print("Hello"); } catch(Exception e) { System.out.print("World"); } } }
No solution found for this question.
Add Solution and get +2 points.
You must be Logged in to update hint/solution
Q. To which of the following does the class string belong to.
Q. JDBC is a Java API that is used to connect and execute query to the database
Q. Literals in java must be appended by which of these?
Q. The method used to set Fonts is
Q. Which of the following is false
Q. Which method in Thread class is used to check weather a thread is still running?
Discusssion
Login to discuss.