1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Luden [163]
3 years ago
11

When the vessel and its contents are warmed to 100 °C, Q decomposes into its constituent elements. What is the total pressure, a

nd what are the partial pressures of xenon and oxygen in the container?

Engineering
1 answer:
Aleksandr [31]3 years ago
4 0

Answer:

The question is incomplete, but here is a similar question with complete details ; Gaseous compound Q contains only xenon and oxygen . When 0.100 g of Q is placed in a 50.0 mL steel vessel at 0 °C, the pressure is 0.229 atm. (a) What is the molar mass of Q (b) When the vessel and its contents are warmed to 100 °C, Q decomposes into its constituent elements . What is the total pressure , and what are the partial pressures of Xenon and Oxygen

Explanation:

The step by step calculations is as shown in the attached file.

It should be noted that what was applied is

  1. The Ideal gas equation PV = nRT
  2. Daltons law of partial pressure which states that in a mixture of gases, the total pressure exerted is equal to the sum of the individual partial pressures of the gases at constant temperature.
  3. It should be noted that the total pressure of the gases can be gotten by applying pressures law at constant volume
  4. P1/P2 = T1/T2
  5. It should also be noted that Partial pressure = Total pressure x Mole fraction

You might be interested in
Carbon resistors often come as a brown cylinder with colored bands. These colored bands can be read to determine the manufacture
alexandr1967 [171]

Answer:

a) 4.7 kΩ, +/- 5%

b) 2.0 MΩ, +/- 20%

Explanation:

a) If the resistor has the following combination of color bands:

1) Yellow = 1st digit = 4

2) Violet = 2nd digit = 7

3) Red = multiplier = 10e2

4) Gold = tolerance = +/- 5%

this means that the resistor has 4700 Ω (or 4.7 kΩ), with 5% tolerance.

b) Repeating the process for the following combination of color bands:

1)  Red = 1st digit = 2

2) Black = 2nd digit = 0

3) Green = multiplier = 10e5

4) Nothing = tolerance = +/- 20%

This combination represents to a resistor of 2*10⁶ Ω (or 2.0 MΩ), with +/- 20% tolerance.

7 0
3 years ago
The lattice constant of a simple cubic primitive cell is 5.28 Å. Determine the distancebetween the nearest parallel ( a ) (100),
skelet666 [1.2K]

Answer:

a)5.28 Å , b)3.73 Å , c)3.048 Å

Explanation:

the atoms are situated only at the corners of cube.Each and every atom in simple cubic primitive at the corner is shared with 8 adjacent unit cells.

Therefore, a particular unit cell consist only 1/8th part of an atom.

The lattice constant of a simple cubic primitive cell is 5.28 Å

We know formula of distance,

d = \frac{a}{\sqrt{h^{2}+k^{2}+l^{2}}}

a)(100)

a=5.28 Å

Distance = \frac{5.28 Å}{\sqrt{1^{2}+0^{2}+0^{2}}}=5.28 Å

b)(110)

Distance = \frac{5.28}{\sqrt{1^{2}+1^{2}+0^{2}}} = 3.73 Å

c)(111)

Distance= \frac{5.28}{\sqrt{1^{2}+1^{2}+1^{2}}}= 3.048 Å

6 0
3 years ago
An iron-carbon alloy initially containing 0.286 wt% C is exposed to an oxygen-rich and virtually carbon-free atmosphere at 1200°
Fantom [35]

Answer:

Explanation:

Given data:

initial construction co = 0.286 wt %

concentration at surface position cs = 0 wt %

carbon concentration cx = 0.215 wt%

time = 7 hr

D =  7.5 \times 10^{-11} m^2/s

for 0.225% carbon concentration following formula is used

\frac{cx -co}{cs -co} = 1 - erf(\frac{x}{2\sqrt{DT}})

where, erf stand for error function

\frac{cx -co}{cs -co} = \frac{0.215 -0.286}{0 -0.286} =0.248

0.248 = 1 - erf(\frac{x}{2\sqrt{DT}})

erf(\frac{x}{2\sqrt{DT}}) = 1 - 0.248

erf(\frac{x}{2\sqrt{DT}}) = 0.751

from the table erf(Z) value = 0.751 lie between (z) = 0.80 and z = 0.85 so by inteerpolation we have z = 0.815

from given table

\frac{x}{2\sqrt{DT}} = 0.815

x = 2\times 0.815 \times \sqrt{7.5 \times 10^{-11}\times (7\times 3600)

x = 2.39\times 10^{-3} m

x = 0.002395 mm

8 0
3 years ago
PLEASE HURRY!!!
Naily [24]

Answer:

A

Explanation:

He should get a job in engineering to see what it's like to work in the field.

3 0
2 years ago
Read 2 more answers
Integer to Float Conversion All labs must be done during lab time. Each labs worth 10 points The lab can be hand in next day wit
andrew-mc [135]

Answer:

Code explained below

Explanation:

.data

msg1: .asciiz "Please input a temperature in celsius: "

msg2: .asciiz "The temperature in Fahrenheit is: => "

num: .float 0.0

.text

main:

#print the msg1

li $v0, 4

la $a0, msg1

syscall

#read the float value from user

li $v0,6 #read float syscall value is $v0

syscall #read value stored in $f0

#formula for celsius to fahrenheit is

#(temperature(C)* 9/5)+32

#li.s means load immediate float

#copy value 9.0 to $f2

li.s $f2,9.0  

#copy value 5.0 to $f3

li.s $f3,5.0

# following instructions performs: 9/5

#div.s - division of two float numbers

#divide $f2 and f3.Result will stores in $f1

div.s $f1,$f2,$f3

#following instruction performs: temperature(C) * (9/5)

#multiple $f1 and $f0.Result stored in $f1

mul.s $f1,$f1,$f0

#copy value 32 to $f4

li.s $f4,32.0

#following instruction performs: (temperature(C) * (9/5))+32

#add $f1 and $f4.Result stores in $f1

add.s $f1,$f1,$f4

#store float from $f1 to num

s.s $f1,num

#print the msg2

li $v0, 4 #print string syscall value is 4

la $a0, msg2 #copy address of msg2 to $a0

#print the float

syscall

li $v0,2 #print float syscall value is 2

l.s $f12,num #load value in num to $f12

syscall

#terminate the program

li $v0, 10 #terminate the program syscall value is 10

syscall

4 0
3 years ago
Other questions:
  • Technician A says that when the malfunction indicator light or service engine light is on you should retrieve the diagnostic tro
    10·1 answer
  • How does the map scale help to interpret the map?
    14·2 answers
  • A simple ideal Rankine cycle with water as the working fluid operates between the pressure limits of 4 MPa in the boiler and 25
    14·2 answers
  • ). A company periodically tests its product for tread wear under simulated conditions. Thirty random samples, each containing 5
    11·1 answer
  • Consider a 1000-W iron whose base plate is made of 0.5-cm-thick aluminum alloy 2024-T6 (rho = 2770 kg/m3 and cp = 875 J/kg·°C).
    12·1 answer
  • Which utility program reads an assembly language source file and produces an object file?
    6·1 answer
  • (,,)=^3−^3+^3, where is the sphere ^2 + ^2 + ^2=^
    6·1 answer
  • Explain what the engineering team should advise in the following scenario.
    7·1 answer
  • Subject : SCIENCE
    12·1 answer
  • By the end of the day, a 45 ft x 25 ft x 8 ft office has a carbon dioxide air level of 1,100 ppm. Determine the time in hours ne
    10·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!