breadth
It is: 32/4 = 8m in length
Its breadth is also 12m because 12 times 12 = 144 square m
If you do not know the length or breadth of a rectangle, you cannot know the area. If you do not know the area of a rectangle, you cannot know the length and breadth. To know the length and breadth of a rectangle, you have to know some other contributing factor in the equation. If you don't, measure it!
To calculate the square footage, multiply the length by the breadth. So, 10 feet x 8 feet = 80 square feet
If the shape is a rectangle (or square), then Perimeter = 2*(Length + Breadth) So Breadth = Perimeter/2 - Length
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.
The area of any rectangular shape, including the square, is the length times the breadth. Area = length x breadth
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.
A rectangular shape has a long side (length) and a breadth (width, short side). A square still has a length and width, though both are the same measurement to form a square.
They are tiles whose length is the same as their breadth.
multiply its height,breadth and length
If the breadth of the rectangle is 2, then its length is 5. which means that the area is 10 square units.
Length = Breadth = 3.5 inches∴ Area = Length * Breadth = 3.5 * 3.5 = 12.25 sq. inches
Does not compute. A square foot is flat like paper, two dimentional, length x breadth. A cubic foot is like a dice, three dimentional, length x breadth x height. One is not a division or multiple of the other.
It is square root of (length square + breadth square) (l2 + b2 ) 1/2
include<stdio.h> #include<conio.h> void main() { int length, breadth, area ; printf("\n Enter the length & breadth of a Rectangle"); scanf("d",&length,&breadth); area=length*breadth; printf("\n Area of the Rectangle=%d",area); getch(); }