Which of the following compile? (Choose all that apply)
A, B, G.
A and B are correct because the single vararg parameter is the last parameter declared.
G is correct because it doesn't use any vararg parameters.
C and F are incorrect because the vararg parameter is not last.
D is incorrect because two vararg parameters are not allowed in the same method.
E is incorrect because the ... for a vararg must be after the type, not before it.