Question: 16.) After you run the code below, what is the value of mat[6][3]? int[][] mat = new int[12][12]; for(int r = 0; r < mat.length;

16.)

After you run the code below, what is the value of mat[6][3]?

int[][] mat = new int[12][12];

for(int r = 0; r < mat.length; r++ ){

for(int c = 0; c <= r; c++ ){

if(c == 0 || r == 0)

mat[r][c] = 1;

else

mat[r][c] = mat[r-1][c] + mat[r-1][c-1];

}

}

a.) 6

b.) 15

c.) 20

d.) 1

e.) 36

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Mathematics Questions!