answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: Is length of rectangle always greater than breadth?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Can length of rectangle be greater than its breadth always?

Usually, yes.


The perimeter of the rectangle is 60cm what is the length of the rectangle?

Assuming that the length of a rectangle is greater than its breadth, any value L such that 15 ≤ L < 30 cm will do. Then breadth, B = 30 - L cm.


If a rectangle has perimeter of 1.57 kilomteres its length is 168 meters what is breadth?

Perimeter = 2*(Length + Breadth) So, 1570 = 2*(168 + Breadth) 785 = 168 + Breadth Breadth = 617 metres Which is rather an unusual result because normally the length is greater than the breadth.


How do you find the length and breadth if area is known for a rectangle?

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!


IS it compulsory that length always greater than breadth?

No, but language implies it.


How can you calculate the perimeter of a rectangle if you know its length and breadth?

Add the length and breadth and then double it.


What is the breadth of the rectangle when the area and length is given?

Divide the area by the length of the rectangle


How do you find area and length of a rectangle if perimeter and breadth is given?

2(length+breadth)=Perimetre Length= (Perimetre/2)-Breadth Area=Length x breadth


What is the area of the rectangle when the length and breadth are given?

All you need to do is length x breadth = area


Formula for area of the rectangle?

length*breadth


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


Write a C program to find the area and perimeter of you square ii rectangle?

#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"); }