Audit your own working area against the hazards this exam names
Task
Assess the place you actually work against each hazard class, and produce the controls list with what is missing. The value is that it is your bench rather than a diagram, and the gaps found are ones you can close this week.
Steps
- Write
lab/safety/electrical.csvwith headeritem,hazard,control_present,control_neededcovering mains leads, extension leads, any uninterruptible supply, and every device you would never open. - Write
lab/safety/esd.csvwith headercontrol,present,where_used,exceptioncovering wrist strap, mat, bags, edge handling and chassis contact -- and record in theexceptioncolumn the one situation where a grounded strap is wrong. - Write
lab/safety/fire.csvwith headerclass,what_burns,agent,nearest_extinguishercovering the classes this exam names, and record where the nearest suitable extinguisher actually is. - Write
lab/safety/lifting.csvwith headeritem,estimated_weight,handholds,two_person,route_clearfor the three heaviest things you might move. - Write
lab/safety/stop.mdlisting the circumstances in which you would stop work, and who you would tell.
Verify
awk -F, 'NR>1 && NF>=4 {n++} END {print n" electrical item(s)"}' lab/safety/electrical.csv
awk -F, 'NR>1 && NF>=4 {n++} END {print n" ESD control(s)"}' lab/safety/esd.csv
grep -Eic 'power supply|mains|near mains|high voltage' lab/safety/esd.csv
awk -F, 'NR>1 && NF>=4 {n++} END {print n" fire class(es)"}' lab/safety/fire.csv
grep -Eic 'never water|not water|co2|carbon dioxide|dry powder' lab/safety/fire.csv
awk -F, 'NR>1 && NF>=5 {n++} END {print n" lifting assessment(s)"}' lab/safety/lifting.csv
grep -Ec '^[-*0-9]' lab/safety/stop.md
Four electrical items, five ESD controls with the strap exception recorded, three fire classes including the electrical one with its agent, and three lifting assessments. The strap exception is the examinable detail and the one this lab exists to make you write down.
Notes
The nearest-extinguisher column is the one that turns this from an exercise into something useful. Most people discover they do not know, which is the finding.
This is an independent study companion for CompTIA A+ Core 2 220-1202 and is not produced by or endorsed by CompTIA.