Geekific
What will be the output of the following code?--------------------public static void main(String[] args) { System.out.print("Start"); try { System.out.print(" Try"); } finally { System.out.print(" Finally"); } System.out.print(" End");}
1 month ago | [YT] | 4
@gerion4516
No Trowable thrown so no catch block execution but there isn't even one.
1 month ago | 0
Geekific
What will be the output of the following code?
--------------------
public static void main(String[] args) {
System.out.print("Start");
try {
System.out.print(" Try");
} finally {
System.out.print(" Finally");
}
System.out.print(" End");
}
1 month ago | [YT] | 4