The area doesn't tell you anything about the shape or its dimensions. There are
an infinite number of different shapes and dimensions that it could be. Even if
we know that it's a rectangle, it could be . . .
1 meter x 40 meters
2 x 20
3 x 131/3
4 x 10
5 x 8
6 x 62/3
.
.
etc.
Chat with our AI personalities
49 tiles because a square has the same length as it does breadth. The Area of a square is length times breadth, so if length eqauls seven then so does the breadth which means that the area will be 7x7 which eqauls 49.
The breadth of a square is typically referred to as the length of one of its sides, as all sides of a square are equal in length. To find the breadth of a square, you simply measure the length of one of its sides using a ruler or measuring tape. Alternatively, if you know the area or perimeter of the square, you can use mathematical formulas to calculate the length of its sides.
If the breadth of the rectangle is 2, then its length is 5. which means that the area is 10 square units.
If the breadth is 3, it means that the length is 5 which therefore means the area is 15 square units.
#include<stdio.h> void main() { float length, breadth, area, perimeter; printf("Enter the length & breadth of a Rectangle\n(length breadth): "); scanf("%f %f",&length,&breadth); area=length*breadth; perimeter=2*(length+breadth); printf(" Area of the Rectangle=%0.3f\n",area); printf("Perimeter of the Rectangle=%0.3f\n",perimeter); printf("(Press ENTER to exit.)"); getch(); printf("\n"); }