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:
def theRoundTrip(movement):
x=0
y=0
for i in movement:
if i not in ["U","L","D","R"]:
print("bad input")
return
if i=="U":
y+=1
if i=="L":
x-=1
if i=="D":
y-=1
if i=="R":
x+=1
return x==0 and y==0
because not all substances react the same to temperature changes. If you heat a metal and an organic substance and you turn the temperature up, the organic substance like water will react (boil) while most metals need higher temperature to react.
- The conversion of 47,000 Ohms to kilo-ohms is equal to 47 kilo-ohms.
- The conversion of 47,000 Ohms to mega-ohms is equal to 0.047 kilo-ohms.
<h3>What is
resistance?</h3>
Resistance can be defined as an opposition to the flow of current in an electric circuit. Also, the standard unit of measurement of the resistance of an electric component is Ohms, which can be converted to kilo-ohms or mega-ohms.
For Ohms to kilo-ohms, we have:
1 Ohms = 0.001 kilo-ohms
47,000 Ohms = X kilo-ohms
Cross-multiplying, we have:
X = 0.001 × 47000
X = 47 kilo-ohms.
For Ohms to mega-ohms, we have:
1,000,000 ohms = 1 mega-ohms
47,000 Ohms = X mega-ohms
Cross-multiplying, we have:
X1,000,000 = 47,000
X = 47,000/1,000,000
X = 0.047 kilo-ohms.
Read more resistance here: brainly.com/question/19582164
#SPJ1