Solved

Suppose You Wish to Write a Method That Returns the Sum

Question 1

Multiple Choice

Suppose you wish to write a method that returns the sum of the elements in the partially filled array myArray. Which is a reasonable method header?


A) public static int sum(int[] values)
B) public static int sum()
C) public static int sum(int[] values, int currSize)
D) public static int sum(int[] values, int size, int currSize)

Correct Answer:

verifed

Verified

Related Questions