answer question number 35 and show answer step by step usinene ollowing furclla
ID: 3843129 • Letter: A
Question
answer question number 35 and show answer step by step
Explanation / Answer
35.
myArray[4][3] = [
[2,4,6],
[1,15,20],
[3,5,7],
[1,11,15]
];
declares and initialize a matrix with 4 rows and 3 columns
corresponding values for each index will be
myArray[0][0] = 2
myArray[0][1] = 4
myArray[0][2] = 6
myArray[1][0] = 1
myArray[1][1] = 15
myArray[1][2] = 20
myArray[2][0] = 3
myArray[2][1] = 5
myArray[2][2] = 7
myArray[3][0] = 1
myArray[3][1] = 11
myArray[3][2] = 15
Related Questions
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.