answersLogoWhite

0


Best Answer

The square root of the area of the paper.

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the length and breadth of a square paper?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you find breadth using perimeter and length?

If the shape is a rectangle (or square), then Perimeter = 2*(Length + Breadth) So Breadth = Perimeter/2 - Length


How do you find the breadth of a square?

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.


What is the area of square shape?

The area of any rectangular shape, including the square, is the length times the breadth. Area = length x breadth


How many tiles would be needed to cover a square design with a length of 7 tiles explain how you know?

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.


What is the difference between length and breadth?

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.


What are square tiles?

They are tiles whose length is the same as their breadth.


How can i find the Volume of a square tank?

multiply its height,breadth and length


Find the area of a rectangle if it's length and breadth are made five times-?

If the breadth of the rectangle is 2, then its length is 5. which means that the area is 10 square units.


What is the area of a square with each side measuring 3.5 inches?

Length = Breadth = 3.5 inches∴ Area = Length * Breadth = 3.5 * 3.5 = 12.25 sq. inches


1 square foot how many cubic feet?

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.


What is the value of diagonal of rectangle?

It is square root of (length square + breadth square) (l2 + b2 ) 1/2


Write a c sharp program to find the area of square?

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(); }