What do we know about the variable x if the following method returns true?

public boolean question(int x)
{
    return x % 2 == 0;
}
x is divisible by 2
  • x must equal 0
  • x must equal 1
  • We can't draw any conclusions about x
  • This code will produce a syntax error when compiled

There are no hints for this question