Solved

Given the Following Method Heading Public Static Void Mystery(int List[]

Question 2

Multiple Choice

Given the following method heading public static void mystery(int list[], int size) and the declarationint[] alpha = new int[75];Which of the following is a valid call to the method mystery?


A) mystery(alpha[75], 50) ;
B) mystery(alpha[], 50) ;
C) mystery(alpha, 40) ;
D) mystery(int[75], alpha)

Correct Answer:

verifed

Verified

Related Questions