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