Now I get it...

Report a typo

You have the following code:

fun main() {
    try {
        println(42 / 0)
    } catch (e: NumberFormatException) {
        println("Incorrect format!")
    } catch (e: Exception) {
        println("I got you now!")
    } catch (e: ArithmeticException) {
        println("Division by zero!")
    }
}

What exception will be caught?

Select one option from the list
___

Create a free account to access the full topic