Examlex

Solved

This Code Would Generate Compiler Errors

question 47

True/False

This code would generate compiler errors.
for ( int i = 0; i < arrayName.length; i++ )
{
for ( int j = 0; j < arrayName[i].length; j++ )
{
// process element arrayName[i][j]
}
}


Definitions:

Related Questions