0 / 60 seg.

¿Cuál es el resultado de ejecutar este código?

public static void main(String[] args) {
    try {
        int x = 5 / 0;
    } catch (Exception e) {
        System.out.println("Exception caught");
    } finally {
        System.out.println("Finally block executed");
    }
}