Question 2:

What is the value of result after the following code executes?

---

int a = 7;
int b = 2;
double result = a / b;

---

A. 3.5
B. 3.0
C. 3
D. 4.0
