You are asked to create a method that accepts an array of integers and returns the highest value from that array.
Given the code fragment:
Which method signature do you use at line n1?
public int findMax (int[] numbers)
static int[] findMax (int[] max)
static int findMax (int[] numbers)
final int findMax (int[] )
Submit