Answer:
189.15cy
Explanation:
To understand this problem we need to understand as well the form.
It is clear that there is four wall, two short and two long.
The two long are 
The two long are 
The two shors are 
The height and the thickness are 14ft and 0.83ft respectively.
So we only calculate the Quantity of concrete,
![Q_c = [(2*122.08)+(2*86-375)]*14*0.833\\Q_c=4864.02ft^3](https://tex.z-dn.net/?f=Q_c%20%3D%20%5B%282%2A122.08%29%2B%282%2A86-375%29%5D%2A14%2A0.833%5C%5CQ_c%3D4864.02ft%5E3)
That in cubic yards is equal to 
Hence, we need order 5% plus that represent with the quantity

Answer:
» Microsoft word ( word processing )
» Microsoft powerpoint ( presentation )
» Microsoft access ( database mamagement )
» Microsoft excel ( spread sheets )
Explanation:

Answer:
a) What is the surface temperature, in °C, after 400 s?
T (0,400 sec) = 800°C
b) Yes, the surface temperature is greater than the ignition temperature of oak (400°C) after 400 s
c) What is the temperature, in °C, 1 mm from the surface after 400 s?
T (1 mm, 400 sec) = 798.35°C
Explanation:
oak initial Temperature = 25°C = 298 K
oak exposed to gas of temp = 800°C = 1073 K
h = 20 W/m².K
From the book, Oak properties are e=545kg/m³ k=0.19w/m.k Cp=2385J/kg.k
Assume: Volume = 1 m³, and from energy balance the heat transfer is an unsteady state.
From energy balance: 
Initial temperature wall = 
Surface temperature = T
Gas exposed temperature = 
Answer:
3A
Explanation:
Using Ohms law U=I×R solve for I by I=U/R
Answer:
# Program is written in Python Programming Language
# Comments are used for explanatory purpose
# Program starts here
# Accept input
Steps = input (Number of Steps: ")
# Calculate distance
distance = float(2000) * float(steps)
#Print Formatted Result
print('%0.2f' % distance)
# End of Program
.--------
The above program converts number of steps to miles.
At line 5, the number of steps is inputted and stored in variable named Steps.
At line 6, the number of miles is calculated by multiplying 2000 by the content of variable Steps
The result is printed at line 8