Page 1 of 1

In the following Java code, which call to sum() method is appropriate?

Posted: Wed Jul 13, 2022 7:45 pm
by answerhappygod
class Output {  public static int sum(int ...x) { return; } static void main(String args[]) { sum(10); sum(10,20); sum(10,20,30); sum(10,20,30,40); } }
a) only sum(10)
b) only sum(10,20)
c) only sum(10) & sum(10,20)
d) all of the mentioned