answersLogoWhite

0

How many sf in 1 cy?

Updated: 4/28/2022
User Avatar

Wiki User

14y ago

Best Answer

This question cannot be answered sensibly. A square foot is a measure of area, with dimensions [L2]. A cubic yard (cy) is a measure of volume, with dimensions [L3]. Basic dimensional analysis teaches that you cannot convert between measures with different dimensions such as these without additional information.

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How many sf in 1 cy?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How many sf you can poor whit a cubic yard?

13 1/2 sf for 2 foot deep 27 sf for 1 foot deep 54 sf for 6 inches deep 108 sf for 3 inches deep


How many acres is 35284 sq ft?

35,284 SF = 0.81 acre45,560 SF = 1 acre


Source code of Maze game in Visual Basic Net?

um... i found this somewhere, i think it works. I use Java, so i dont know how it works. I think you can compile it in Microsoft Excel. (if you are a mac user, you wont be able to. anyway, here it is: Dim CX As Integer Dim CY As Integer Dim started As Boolean Dim playerdead As Boolean Private Sub Worksheet_SelectionChange(ByVal Target As Range) If CX = 0 Then CX = Cells(1, 1) End If If CY = 0 Then CY = Cells(1, 2) End If If playerdead = True Then Cells(CY, CX) = "" playerdead = False CX = Cells(1, 1) CY = Cells(1, 2) End If If Target.Row = 2 Then If Target.Column = 1 Then If Cells(2, 1) = ">" Then Cells(2, 1) = "ll" ElseIf Cells(2, 1) = "ll" Then Cells(2, 1) = ">" Else Cells(2, 1) = ">" End If End If End If If Cells(2, 1) = ">" Then Exit Sub If Target.Row = CY - 1 Then If Target.Borders(xlEdgeBottom).LineStyle > 0 Then Cells(CY, CX).Select ElseIf Cells(CY, CX).Borders(xlEdgeTop).LineStyle > 0 Then Cells(CY, CX).Select Else Cells(CY, CX) = "" CY = CY - 1 If Cells(CY, CX) = "F" Then Cells(CY, CX) = "F" CX = Cells(1, 1) CY = Cells(1, 2) Cells(2, 2) = "yippee!" Cells(2, 2).Speak ElseIf Cells(CY, CX) = "R" Then Cells(CY, CX) = "R" CX = Cells(CY, 1) CY = Cells(CY, 2) Cells(2, 2) = "poof!" Cells(2, 2).Speak ElseIf Cells(CY, CX) = "C" Then Cells(CY, CX) = "C" CY = Cells(2, CX) CX = Cells(1, CX) Cells(2, 2) = "poof!" Cells(2, 2).Speak End If Cells(CY, CX) = "J" End If End If If Target.Row = CY + 1 Then If Target.Borders(xlEdgeTop).LineStyle > 0 Then Cells(CY, CX).Select ElseIf Cells(CY, CX).Borders(xlEdgeBottom).LineStyle > 0 Then Cells(CY, CX).Select Else Cells(CY, CX) = "" CY = CY + 1 If Cells(CY, CX) = "F" Then Cells(CY, CX) = "F" CX = Cells(1, 1) CY = Cells(1, 2) Cells(2, 2) = "yippee!" Cells(2, 2).Speak ElseIf Cells(CY, CX) = "R" Then Cells(CY, CX) = "R" CX = Cells(CY, 1) CY = Cells(CY, 2) Cells(2, 2) = "poof!" Cells(2, 2).Speak ElseIf Cells(CY, CX) = "C" Then Cells(CY, CX) = "C" CY = Cells(2, CX) CX = Cells(1, CX) Cells(2, 2) = "poof!" Cells(2, 2).Speak End If Cells(CY, CX) = "J" End If End If If Target.Column = CX + 1 Then If Target.Borders(xlEdgeLeft).LineStyle > 0 Then Cells(CY, CX).Select ElseIf Cells(CY, CX).Borders(xlEdgeRight).LineStyle > 0 Then Cells(CY, CX).Select Else Cells(CY, CX) = "" CX = CX + 1 If Cells(CY, CX) = "F" Then Cells(CY, CX) = "F" CX = Cells(1, 1) CY = Cells(1, 2) Cells(2, 2) = "yippee!" Cells(2, 2).Speak ElseIf Cells(CY, CX) = "R" Then Cells(CY, CX) = "R" CX = Cells(CY, 1) CY = Cells(CY, 2) Cells(2, 2) = "poof!" Cells(2, 2).Speak ElseIf Cells(CY, CX) = "C" Then Cells(CY, CX) = "C" CY = Cells(2, CX) CX = Cells(1, CX) Cells(2, 2) = "poof!" Cells(2, 2).Speak End If Cells(CY, CX) = "J" End If End If If Target.Column = CX - 1 Then If Target.Borders(xlEdgeRight).LineStyle > 0 Then Cells(CY, CX).Select ElseIf Cells(CY, CX).Borders(xlEdgeLeft).LineStyle > 0 Then Cells(CY, CX).Select Else Cells(CY, CX) = "" CX = CX - 1 If Cells(CY, CX) = "F" Then Cells(CY, CX) = "F" CX = Cells(1, 1) CY = Cells(1, 2) Cells(2, 2) = "yippee!" Cells(2, 2).Speak ElseIf Cells(CY, CX) = "R" Then Cells(CY, CX) = "R" CX = Cells(CY, 1) CY = Cells(CY, 2) Cells(2, 2) = "poof!" Cells(2, 2).Speak ElseIf Cells(CY, CX) = "C" Then Cells(CY, CX) = "C" CY = Cells(2, CX) CX = Cells(1, CX) Cells(2, 2) = "poof!" Cells(2, 2).Speak End If Cells(CY, CX) = "J" End If End If Cells(CY, CX).Select If Cells(CY, CX).Font.Bold = True Then playerdead = True End If If playerdead = True Then Cells(CY, CX) = "N" Cells(2, 2) = "ouch!" Cells(2, 2).Speak Else Cells(CY, CX) = "J" End If End Sub


How many sq feet in 1 acre?

43,560 sf


How many yards of concrete do you need for my project 650 square feet 3 inches deep?

6.02 cubic yards. Order 6-1/2 if they'll let you to be safe. SF x depth / 27 = cubic yards. 650 x .25 (3" is .25 of 1 ft) / 27 = 6.02 cy.


How tall is Cy Shim?

Cy Shim is 5' 7 1/2".


How many children did cy young have?

Cy Young and his wife, Robba, had no children.


How many pages does Combat SF have?

Combat SF has 204 pages.


How many bonds are in the molecule SF?

SF has a single bond but it is not a molecule.


When was Cy Stevens born?

Cy Stevens was born on June 1, 1893, in Pennsylvania, USA.


How many shutouts did Cy Young hit?

Cy Young had 76 career Shutouts.


What is 0.00747 rounded to the nearest sf?

There is no such thing as a nearest significant figure. For sf (as with decimal places) it is necessary to specify how many. 0.00747 to 1 sf is 0.007, to 2 sf it is 0.0075, to 3 sf it is 0.00747, to 4 sf it is 0.007470 and so on.