Assume for this question, the following method:

public int add2Ints(int a, int b)
{
    return a + b;
}

Which of the following is NOT a correct method call?

add2Ints(12);
  • add2Ints(10 + 2, 3 + 1);
  • add2Ints(add2Ints(10, 2), 4);
  • add2Ints(12, 5 - 1);

There are no hints for this question