Which of the following if statements will compile without errors?
int i = 3; int j = 3; int k = 3;
A and C
B results in a comparison between i and j which returns a Boolean value.
This value cannot be compared against the integer k.
D requires an operand before the expression > k.