How many types of exception can occur in a java program?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More Core Java Interview Questions

What is continuity of a function?

0 Answers  


String is an immutable object. Then how can the following code be justified. String s1 = ?ABC?; String s1 = s1+?XYZ?; s.o.p(s1); The output is ABCXYZ, which is the value of s1 ?

6 Answers   Flextronics, Keane India Ltd,


What is java’s garbage collected heap?

0 Answers  


what is aberivation of java?

14 Answers  


how to create multithreaded program? Explain different ways of using thread? When a thread is created and started, what is its initial state? : Java thread

0 Answers  


What must a class do to implement an interface in java programming?

0 Answers  


What is exception propagation?

0 Answers  


What does a za z0 9 mean?

0 Answers  


What is finally and finalize in java?

0 Answers  


public class BatchTest { public static void main(String[] args) { Runtime run = Runtime.getRuntime(); try { Process p = run.exec("cmd start /c D:/test.bat"); System.out.println(p.exitValue()); } catch (Exception e) { e.printStackTrace(); } System.out.println("FINISHED"); } }

0 Answers  


Can a class have 2 constructors?

0 Answers  


What is the difference between abstract class and interface?

3 Answers   Aspire,


Categories