Solved

Given the Method Heading Public Static Void Strange(int A, Int

Question 31

Multiple Choice

Given the method heading public static void strange(int a, int b) and the declaration int[] 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:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions