Solved

Int[][] MyVals = New Int[3][]

Question 37

Essay

int[][] myVals = new int[3][]
myVals[0] = new int[3];
myVals[1] = new int[10];
myVals[2] = new int[5];
The above code depicts a ragged array. What does this mean? Describe the rows and columns that make up this array.

Correct Answer:

verifed

Verified

In a two-dimensional array, each row als...

View Answer

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

Related Questions