Answer:
The answer is below
Explanation:
Given that:
Diameter (D) = 0.03 mm = 0.00003 m, length (L) = 2.4 mm = 0.0024 m, longitudinal tensile strength
, Fracture strength

a) The critical length (
) is given by:

The critical length (4.5 mm) is greater than the given length, hence th composite can be produced.
b) The volume fraction (Vf) is gotten from the formula:

I think it’s b sry if I’m wrong tho
Answer:
In this era, Sun Ra was among the first of any musicians to make extensive and pioneering use of synthesizers and other various electronic keyboards; he was given a prototype Minimoog by its inventor, Robert Moog.
Explanation:
Answer:
74,4 litros
Explanation:
Dado que
W = nRT ln (Vf / Vi)
W = 3000J
R = 8,314 JK-1mol-1
T = 58 + 273 = 331 K
Vf = desconocido
Vi = 25 L
W / nRT = ln (Vf / Vi)
W / nRT = 2.303 log (Vf / Vi)
W / nRT * 1 / 2.303 = log (Vf / Vi)
Vf / Vi = Antilog (W / nRT * 1 / 2.303)
Vf = Antilog (W / nRT * 1 / 2.303) * Vi
Vf = Antilog (3000/1 * 8,314 * 331 * 1 / 2,303) * 25
Vf = 74,4 litros
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
************************************************************************************