Question 5:

What is the output?

---

int a = Integer.MAX_VALUE;
System.out.println(a + 1);

---

A. 2147483648
B. A compile-time error
C. A runtime exception
D. A large negative number
