Division by zero

Report a typo

What happens after launching the code?

public class DivisionByZero {
    public static void main(String[] args) {
        int a = 42;
        int b = 0;
        System.out.println(a / b);
    }
}
Select one option from the list
___

Create a free account to access the full topic