Which of the following results in a == 0 being true?
a == 0
int a = 3 / 4;
int a = (int) (3.0 / 4.0);
double a = 3 / 4;
More information: Lesson 2.1.4 and Lesson 2.1.5