Given the following declarations, which of the following if statements will compile without errors?
int i = 3; int j = 3; int k = 3;
a and c
Option b results in a comparison between i and j which returns a Boolean value.
This value cannot be compared against the integer k.
Option d requires an operand before the expression, >k.