

InterviewSolution
Saved Bookmarks
1. |
Write a matrix of order `3xx3` in which every element is equal to 3. |
Answer» The given matrix is of order `3xx3` and each element is equal to 3. `:.` The required matrix `=({:(3,3,3),(3,3,3),(3,3,3):})`. |
|