Answer:
how are supposed to help when you can't do anything?
Answer:
180 x 60 inches
Width = 60 inches
Length = 180 inches
Explanation:
Given
Let L = Length
W = Width
P = Perimeter
Length = 3 * Width
L = 3W
Perimeter of Brass = 480 inches
P = 480
Perimeter is given as 2(L + W);
So, 2 (L + W) = 480
L + W = 480/2
L + W = 240
Substitute 3W for L; so,
3W + W = 240
4W = 240
W = 240/4
W = 60 inches
L = 3W
L = 3 * 60
L = 180 inches
Answer:
The highest grade level is college.
Answer:
Tension can be easily explained in the case of bodies hung from chain, cable, string
Explanation
uniform speed, tension; T = W.
T=m(g±a)
Answer:
<em>Python code is as follows:
</em>
********************************************************************************
#function to get number up to any number of decimal places
def toFixed(value, digits):
return "%.*f" % (digits, value)
print("Enter the price: ", end='', flush=True) #prompt for the input of price
price = float(input()) #taken input
totalCost = price + 0.05 * price #calculating cost
print("Total Cost after the sales tax of 5% is applied: " + toFixed(totalCost,2)) #print and output totalCost
************************************************************************************