 
                 
                InterviewSolution
 Saved Bookmarks
    				| 1. | In a certain city there are 30 colleges. Each college has 15 peons, 6clerks, 1 typist and 1 section officer. Express the given information as acolumn matrix. Using scalar multiplication, find the total number of posts ofeach kind in all the colleges. | 
| Answer» A college has 15 peons, 6 clerks, 1 typist and 1 section officer. So, in matrix representation, `A = [[15],[6],[1],[1]]` Here, first row represents number of peons, second row represents number of clerks. Third row represents number of typist and fourth row represents number of section officer. As there are `30` colleges , so total number of posts, `X = 30A = 30[[15],[6],[1],[1]] = [[450],[180],[30],[30]]` `:.` Total number of peons `=450` Total number of clerks`=180` Total number of typists`=30` Total number of section officers `=30` | |