xaguax9409 xaguax9409 04-03-2024 Computers and Technology contestada What will this method call output? public boolean someMethod(int number) { if(number % 2 == 0) { return true; } else { return false; } } someMethod(9990)a) trueb) false