Answer to Question #19863 in Java | JSP | JSF for nohra
27. What does this method do?
public static int foo( String [ ][ ] a )
{
int b = 0;
for ( int i = 0; i < a.length; i++ )
{
b++; }
return b; }
1
2012-12-03T08:59:47-0500
this method increases the variable b. value of the b will be number of rows ofarray.
Need a fast expert's response?
Submit order
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Learn more about our help with Assignments:
JavaJSPJSF
Comments
Leave a comment