InterviewSolution
Saved Bookmarks
| 1. |
Complete the table for area of a rectangle with given length and breadth. |
|
Answer» Area of rectangle = llength(l) * breadth(b) (i)Here, length ` = 3x,` breadth` = 5y` So, Area ` = 3x**5y = 15xy` (ii)Here, length` = 9y, `breadth `= 4y^2` So, Area ` = 9y**4y^2 = 36y^3` (iii)Here, length`= 4ab, `breadth` = 5bc` So, Area ` = 4ab**5bc= 20ab^2c` (iv)Here, length` = 2l^2m,` breadth `= 3lm^2` So, Area ` = 2l^2m**3lm^2= 6l^3m^3` |
|