Home > Java Programming > Exceptions > Questions and Answers
Q: |
1. What will be the output of the program? public class MyProgram{ public static void main(String args[]){ try{ System.out.print("Hello world "); } finally{ System.out.println("Finally executing "); } } } | ||||||||||
|
Comment on this Question | |
Name: | |
|