answersLogoWhite

0

2.82 metres

User Avatar

stephen dando

Lvl 2
1y ago

What else can I help you with?

Related Questions

Circumference of a 600mm dia circle?

Its circumference = 600*pi mm


What is the area of a 3 dia circle?

The area is 7.068 units2


How many square inches in a 12 dia circle?

A 12-inch circle has an area of 0.784 square feet.


How many cubic inches in a 11.5 dia circle?

Zero. Circles have area, but no volume.


What is the area of a 6 dia circle?

Area = pi * radius^2. radius = diameter / 2, so radius of this circle is 3.Area = 9 * pi (take your favorite value of pi: 3.1416....)


What is 600mm X 600mm in feet?

To convert 600mm to feet, you need to divide by 304.8 (since 1 foot is equal to 304.8mm). Therefore, 600mm is approximately 1.97 feet. Since the dimensions are given as 600mm X 600mm, the area would be 600mm x 600mm = 360,000 square millimeters. Converting this area to square feet would involve dividing by 92903.04 (since 1 square foot is equal to 92903.04 square millimeters), resulting in approximately 3.88 square feet.


How many sq feet in a 24 foot dia. circle?

The formula for the area (A) of a circle is A = π r2 - where r is the radius. The diameter (d) of a circle is twice the radius. The area of circle having a diameter of 24 ft is A = π 122 = 144π = 452.39 sq ft (2dp)


How many sq ft in a 54 dia circle?

Divide the diameter by 2 to get the radius. Then use the formula: area = pi x radius2.


What is the circumferance of 10m dia circle?

It is: 10*pi


Determining th perimeter length of a 600mm diam circle?

The perimeter of a circle is called the circumference. Its formula is C = pi x diameter. The value of pi is often rounded to 3.14 for problem solving purposes. So just plug in the values for pi and the diameter into the formula to get the circumference of the circle: 3.14 x 600mm = approximately 1884 mm.


How many cm in 600mm?

600mm = 60cm


Find diameter of the circle in java program?

public class CircleDiameter { publicCircleDiameter() { super(); } publicfloatgetDiameterFrmRadius(float radius){ return radius * 2; } /** * @param args */ public static void main(String[] args) { float radius = 5; CircleDiameter circle = newCircleDiameter(); float dia = circle.getDiameterFrmRadius(radius); System.out.println("Diameter of this circle is: " + dia); } }