Home > Java Programming > Exceptions > Questions and Answers
Q: |
class A{ public static void main(String args[]){ try{ System.out.println(“oneâ€); } System.out.println(“fourâ€); catch(Exception e){ System.out.println(“twoâ€); }finally{
System.out.println(“threeâ€); } } } | ||||||||||
|
Comment on this Question | |
Name: | |
|