

InterviewSolution
Saved Bookmarks
1. |
Which of the following is a `2xx3` matrix such that every element in the matrix is zero ?A. `[{:(0,0,0),(0,0,0):}]`B. `[{:(0,0),(0,0),(0,0):}]`C. `[{:(0,0),(0,0)]`D. `[{:(0,0,0,0),(0,0,0,0),(0,0,0,0):}]` |
Answer» Correct Answer - A (i) Zero matrix of order `2xx3`. (ii) The matrix with 2 rows and 3 columns with all the elements as zeroes is the required matrix. |
|