Question: 6) What is the output of the following Java code? Why the last two lines in the output are the same? public class VariableLengthParameters {

6) What is the output of the following Java code? Why the last two lines in the output are the same?
public class VariableLengthParameters {
private static int add ( int ... items ) {
int total = 0;
for ( int i = 0; i < items.length; i++ )
total = total + items[i];
return total;
}
public static void main( String[] args ) {
System.out.println( add( new int[] { 1 } ) );
System.out.println( add( 1 ) );
System.out.println( add( new int[] { 1,2,3 } ) );
System.out.println( add( 1, 2, 3 ) );
}
}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!