

InterviewSolution
Saved Bookmarks
1. |
For a 2x2 matrix, A = [aij], whose elements are given by aij = i /j , write the value of a12. |
Answer» aij=i/j => a12=1/2 [Here i = 1 and j = 2] |
|