Multiple Choice
Given the method heading public static void strange(int a, int b) and the declarationint[] alpha = new int[20];
Int[] beta = new int[25];Which of the following is a valid call to the method strange?
A) strange(alpha[10], alpha[15]) ;
B) strange(alpha[5], beta) ;
C) strange(alpha[0], beta[25]) ;
D) strange(alpha, beta[20]) ;
Correct Answer:

Verified
Correct Answer:
Verified
Q5: double[] as = new double[7];<br>Double[] bs;bs =
Q6: In which package is the class Vector
Q8: Which method of the class vector would
Q10: char[][] table = new char[10][5];How many rows
Q12: Which of the following is the array
Q13: char[][] table = new char[10][5];What is the
Q19: You can create an array of reference
Q22: A Vector object can shrink during program
Q29: The statement int[] list = new int[15];
Q41: When a boolean array object is instantiated,