Question: Consider the array below, what is the value of table [1][1]? int [] [] table = { {5, 8, 7}, {2, 6, 0}, {3, 9,
Consider the array below, what is the value of table [1][1]?
int [] [] table = { {5, 8, 7}, {2, 6, 0}, {3, 9, 1}
};
1) What are the values in the major diagonal of the array above?
2) What are the values in the minor diagonal of the array above?
3) At what index positions (row and column) are the values of the major diagonal?
4) At what index positions (row and column) are the values of the minor diagonal?
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
