What is the result of this code?
1: int a = 1; 2: int b = 0; 3: int c = a/b; 4: System.out.println(c);
It will throw an ArithmeticException.
It will run and output 0.
It will run and output infinity.
It will not compile because of line 3.