Question: If a 3x3 matrix is filled with consecutive integers starting from 1, what is the value at the position (2, 2)?
Options:
Correct Answer: 5
Solution:
The matrix would be [[1, 2, 3], [4, 5, 6], [7, 8, 9]], so the value at (2, 2) is 5.