Level 1 — RecognitionStates of Matter (Quantitative)

States of Matter (Quantitative)

20 minutes30 marksprintable — key stays hidden on paper

Time limit: 20 minutes
Total marks: 30


Section A — Multiple Choice (1 mark each)

Choose the single best answer.

Q1. At constant temperature, if the pressure on a fixed mass of gas is doubled, its volume becomes:
(a) doubled (b) halved (c) unchanged (d) quadrupled

Q2. The ideal gas equation is PV=nRTPV = nRT. The SI unit of RR is:
(a) J mol1K1\text{J mol}^{-1}\text{K}^{-1} (b) atm L\text{atm L} (c) K mol1\text{K mol}^{-1} (d) J mol\text{J mol}

Q3. According to Graham's law, the rate of effusion of a gas is proportional to:
(a) MM (b) M\sqrt{M} (c) 1/M1/M (d) 1/M1/\sqrt{M}

Q4. In the kinetic theory expression P=13ρvrms2P = \tfrac{1}{3}\rho v_{rms}^2, the symbol ρ\rho represents the gas:
(a) pressure (b) density (c) temperature (d) molar mass

Q5. For a Maxwell–Boltzmann speed distribution, the correct order of speeds is:
(a) vmp<vavg<vrmsv_{mp} < v_{avg} < v_{rms} (b) vrms<vavg<vmpv_{rms} < v_{avg} < v_{mp} (c) vavg<vmp<vrmsv_{avg} < v_{mp} < v_{rms} (d) all equal

Q6. The compressibility factor ZZ for an ideal gas is:
(a) 0 (b) 1 (c) depends on TT (d) infinite

Q7. In the van der Waals equation, the constant aa accounts for:
(a) molecular volume (b) intermolecular attraction (c) temperature (d) number of moles

Q8. The packing fraction of a body-centred cubic (BCC) unit cell is approximately:
(a) 52% (b) 68% (c) 74% (d) 100%

Q9. The coordination number of Na+^+ in the NaCl (rock salt) structure is:
(a) 4 (b) 6 (c) 8 (d) 12

Q10. A Frenkel defect involves:
(a) missing cation–anion pairs (b) an ion displaced to an interstitial site (c) extra electrons (d) impurity atoms

Q11. Doping silicon with phosphorus (group 15) produces:
(a) p-type semiconductor (b) n-type semiconductor (c) insulator (d) conductor with no carriers


Section B — Matching (5 marks)

Q12. Match each item in Column I with the correct entry in Column II. (1 mark each)

Column I Column II
(i) Charles's law (P) P/TP/T constant at fixed VV
(ii) Gay-Lussac's law (Q) constant bb in vdW eqn
(iii) Molecular volume correction (R) V/TV/T constant at fixed PP
(iv) Number of tetrahedral voids in FCC (n atoms) (S) 2n2n
(v) Critical temperature (T) above it, gas cannot be liquefied

Section C — True / False with Justification (2 marks each: 1 T/F + 1 justification)

Q13. The total pressure of a mixture of non-reacting gases equals the sum of their partial pressures.

Q14. Amorphous solids have sharp melting points and long-range order.

Q15. In the CsCl structure, the coordination number of each ion is 8.

Q16. Surface tension of a liquid increases as temperature increases.

Q17. The most probable speed vmpv_{mp} increases with increasing temperature for a given gas.


Answer keyMark scheme & solutions

Section A (1 mark each)

Q1. (b) halved. Boyle's law PV=PV=const; P2PVV/2P\to2P\Rightarrow V\to V/2.

Q2. (a) J mol1K1\text{J mol}^{-1}\text{K}^{-1} — from R=PV/nTR=PV/nT, energy per mole per kelvin.

Q3. (d) 1/M1/\sqrt{M} — Graham's law; lighter gases effuse faster.

Q4. (b) density. ρ\rho is mass per unit volume in P=13ρvrms2P=\tfrac13\rho v_{rms}^2.

Q5. (a) vmp<vavg<vrmsv_{mp} < v_{avg} < v_{rms}. Ratio 2:8/π:31.414:1.596:1.732\sqrt2 : \sqrt{8/\pi} : \sqrt3 \approx 1.414:1.596:1.732.

Q6. (b) 1. By definition Z=PV/nRT=1Z=PV/nRT=1 for ideal gas.

Q7. (b) intermolecular attraction. aa corrects pressure for attractive forces.

Q8. (b) 68%. BCC packing fraction =3π80.680=\dfrac{\sqrt3\,\pi}{8}\approx0.680.

Q9. (b) 6. NaCl is 6:6 coordinated (octahedral).

Q10. (b) an ion displaced to an interstitial site (cation usually), density unchanged.

Q11. (b) n-type. Phosphorus donates an extra electron.

Section B

Q12. (i)→R, (ii)→P, (iii)→Q, (iv)→S, (v)→T. (1 mark each = 5)

Section C (1 T/F + 1 justification)

Q13. TRUE. Dalton's law: for non-reacting gases Ptotal=piP_{total}=\sum p_i; molecules act independently. (1+1)

Q14. FALSE. Amorphous solids melt over a range and have only short-range order; long-range order is a property of crystalline solids. (1+1)

Q15. TRUE. CsCl is 8:8 coordinated — Cs+^+ at body centre surrounded by 8 Cl^- at corners and vice versa. (1+1)

Q16. FALSE. Surface tension decreases with rising temperature because intermolecular forces weaken. (1+1)

Q17. TRUE. vmp=2RT/MTv_{mp}=\sqrt{2RT/M}\propto\sqrt{T}, so it increases with TT. (1+1)

[
  {"claim":"BCC packing fraction ≈ 0.68","code":"pf = sqrt(3)*pi/8; result = abs(float(pf)-0.6802) < 0.001"},
  {"claim":"Speed ratio vmp:vavg:vrms = sqrt2:sqrt(8/pi):sqrt3 ordered ascending","code":"vmp=sqrt(2); vavg=sqrt(Rational(8,1)/pi); vrms=sqrt(3); result = (float(vmp)<float(vavg)) and (float(vavg)<float(vrms))"},
  {"claim":"Boyle: doubling P halves V","code":"P,V=symbols('P V',positive=True); k=P*V; Vnew=solve(Eq(2*P*var('x'),k),var('x'))[0] if False else k/(2*P); result = simplify(Vnew - V/2)==0"},
  {"claim":"Z=PV/nRT equals 1 for ideal gas","code":"P,V,n,R,T=symbols('P V n R T',positive=True); Z=(P*V)/(n*R*T); result = simplify(Z.subs(P*V, n*R*T)) == 1"}
]