Home » Java Programming » Exceptions

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 "); } } }

← Previous Next →

Discussion & Comments

No comments yet. Be the first to comment!