answersLogoWhite

0


Best Answer

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

User Avatar

Wiki User

10y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Find the area of a rectangle if it's length and breadth are made five times-?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

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!


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


How do you find area of a rectangle?

breadth multipied by the length


How do you find out the area of a rectangle?

multiply the length with the breadth.


To find the area of rectangle?

product of length and 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


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

If the breadth is 3, it means that the length is 5 which therefore means the area is 15 square units.


How do you find the volume a rectangle prism?

Volume = Length *Breadth*Height


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


How do you find height when length and breadth are given in rectangle?

A rectangle is a 2-dimensional object. It cannot have length and breadth AND height. If three dimensions are given, then two of them (eg breadth and height) must stand for the same thing.


How to find the breadth of a rectangle whose perimeter is 140m and length is 40m?

360


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