Consider the method total below: public static int total (int result, int a, int b) { if (a = = 0) { if (b = = 0) { return result * 2; } return result / 2; } else { return result * 3; }} The assignment statementx = total (1, 1, 1); must result in:A.
Answers (1)