Please provide me all the answers in 10 marker format for my university exam
Referring park textbook of psm
| Neonatal Mortality (0-4 weeks) | Post-neonatal Mortality (1-12 months) |
|---|---|
| 1. Low birth weight and prematurity | 1. Diarrhoeal diseases |
| 2. Birth injury and difficult labour | 2. Acute respiratory infections |
| 3. Sepsis | 3. Other communicable diseases |
| 4. Congenital anomalies | 4. Malnutrition |
| 5. Haemolytic disease of newborn | 5. Congenital anomalies |
| 6. Conditions of placenta and cord | 6. Accidents |
| 7. Diarrhoeal diseases | |
| 8. Acute respiratory infections | |
| 9. Tetanus |
| BMI (kg/m²) | Category |
|---|---|
| <18.5 | Underweight |
| 18.5 - 24.9 | Normal weight |
| 25.0 - 29.9 | Overweight |
| ≥ 30.0 | Obese |
Reference: Park's Textbook of Preventive and Social Medicine (Park's PSM), 26th Edition by K. Park, Bhanot Publishers, Jabalpur.
Note for exam: Long essay (10 marks) answers should be written in ~2-3 pages with clear headings and subheadings. Short essays (5 marks) need ~1-1.5 pages. Short answers (3 marks) need 8-10 key points. Draw labelled diagrams wherever indicated (e.g., Planning Cycle flowchart, BMI classification table, Causes of infant mortality table). Good luck!
Create a printable Word document with all answers formatted for revision
ls /home/daytona/workspace/ 2>/dev/null && ls /home/daytona/skills/docx/
mkdir -p /home/daytona/workspace/community-medicine-answers && node -e "require(…
~/community-medicine-answers/build.js
const {
Document, Packer, Paragraph, TextRun, Table, TableRow, TableCell,
Header, Footer, AlignmentType, HeadingLevel, BorderStyle, WidthType,
VerticalAlign, PageNumber, NumberFormat, ShadingType, UnderlineType,
LevelFormat, convertInchesToTwip, PageBreak
} = require('docx');
const fs = require('fs');
// ─── Helpers ────────────────────────────────────────────────────────────────
function heading1(text) {
return new Paragraph({
heading: HeadingLevel.HEADING_1,
spacing: { before: 360, after: 120 },
children: [new TextRun({ text, bold: true, size: 28, color: '1F4E79' })]
});
}
function heading2(text) {
return new Paragraph({
heading: HeadingLevel.HEADING_2,
spacing: { before: 240, after: 80 },
children: [new TextRun({ text, bold: true, size: 24, color: '2E75B6' })]
});
}
function heading3(text) {
return new Paragraph({
heading: HeadingLevel.HEADING_3,
spacing: { before: 180, after: 60 },
children: [new TextRun({ text, bold: true, size: 22, color: '2E75B6' })]
});
}
function sectionBox(text) {
return new Paragraph({
spacing: { before: 200, after: 120 },
shading: { type: ShadingType.SOLID, color: 'E2EFD9' },
border: { left: { style: BorderStyle.THICK, size: 12, color: '70AD47' } },
indent: { left: 180 },
children: [new TextRun({ text, bold: true, size: 22, color: '375623' })]
});
}
function para(text, options = {}) {
return new Paragraph({
spacing: { before: 80, after: 80 },
indent: { left: options.indent || 0 },
children: [new TextRun({
text,
size: 20,
bold: options.bold || false,
italics: options.italic || false
})]
});
}
function bullet(text, level = 0) {
return new Paragraph({
bullet: { level },
spacing: { before: 60, after: 60 },
indent: { left: 360 + level * 360, hanging: 180 },
children: [new TextRun({ text, size: 20 })]
});
}
function numbered(text, num) {
return new Paragraph({
spacing: { before: 80, after: 80 },
indent: { left: 400, hanging: 400 },
children: [
new TextRun({ text: `${num}. `, bold: true, size: 20 }),
new TextRun({ text, size: 20 })
]
});
}
function boldLine(label, value) {
return new Paragraph({
spacing: { before: 80, after: 60 },
indent: { left: 180 },
children: [
new TextRun({ text: label + ': ', bold: true, size: 20 }),
new TextRun({ text: value, size: 20 })
]
});
}
function divider() {
return new Paragraph({
spacing: { before: 120, after: 120 },
border: { bottom: { style: BorderStyle.SINGLE, size: 6, color: 'AAAAAA' } },
children: [new TextRun({ text: '' })]
});
}
function pageBreak() {
return new Paragraph({ children: [new PageBreak()] });
}
function simpleTable(headers, rows) {
const headerCells = headers.map(h =>
new TableCell({
shading: { type: ShadingType.SOLID, color: '2E75B6' },
verticalAlign: VerticalAlign.CENTER,
children: [new Paragraph({
alignment: AlignmentType.CENTER,
children: [new TextRun({ text: h, bold: true, size: 18, color: 'FFFFFF' })]
})]
})
);
const tableRows = [new TableRow({ children: headerCells, tableHeader: true })];
rows.forEach((row, ri) => {
const cells = row.map(cell =>
new TableCell({
shading: ri % 2 === 0
? { type: ShadingType.SOLID, color: 'DEEAF1' }
: { type: ShadingType.SOLID, color: 'FFFFFF' },
children: [new Paragraph({
children: [new TextRun({ text: cell, size: 18 })]
})]
})
);
tableRows.push(new TableRow({ children: cells }));
});
return new Table({
width: { size: 100, type: WidthType.PERCENTAGE },
rows: tableRows
});
}
function noteBox(text) {
return new Paragraph({
spacing: { before: 120, after: 120 },
shading: { type: ShadingType.SOLID, color: 'FFF2CC' },
border: { left: { style: BorderStyle.THICK, size: 12, color: 'F4B942' } },
indent: { left: 180 },
children: [new TextRun({ text: '📝 ' + text, size: 18, italic: true, color: '7F6000' })]
});
}
// ─── Cover Page ──────────────────────────────────────────────────────────────
const coverPage = [
new Paragraph({ spacing: { before: 1440 }, children: [] }),
new Paragraph({
alignment: AlignmentType.CENTER,
spacing: { before: 0, after: 200 },
children: [new TextRun({ text: 'III MBBS – COMMUNITY MEDICINE', bold: true, size: 52, color: '1F4E79' })]
}),
new Paragraph({
alignment: AlignmentType.CENTER,
spacing: { before: 0, after: 200 },
children: [new TextRun({ text: 'CBME EXAMINATION – JANUARY 2025', bold: true, size: 36, color: '2E75B6' })]
}),
new Paragraph({
alignment: AlignmentType.CENTER,
spacing: { before: 0, after: 200 },
children: [new TextRun({ text: 'COMPLETE ANSWER KEY', bold: true, size: 40, color: '70AD47' })]
}),
divider(),
new Paragraph({
alignment: AlignmentType.CENTER,
spacing: { before: 200, after: 100 },
children: [new TextRun({ text: 'Reference: Park\'s Textbook of Preventive and Social Medicine', italic: true, size: 22, color: '404040' })]
}),
new Paragraph({
alignment: AlignmentType.CENTER,
spacing: { before: 0, after: 100 },
children: [new TextRun({ text: '26th Edition | K. Park | Bhanot Publishers', italic: true, size: 20, color: '404040' })]
}),
divider(),
new Paragraph({
alignment: AlignmentType.CENTER,
spacing: { before: 300 },
children: [new TextRun({ text: 'SECTION BREAKDOWN', bold: true, size: 24, color: '1F4E79' })]
}),
new Paragraph({
alignment: AlignmentType.CENTER,
spacing: { before: 80 },
children: [new TextRun({ text: 'Long Essays (2 × 10 = 20 Marks) | Short Essays (6 × 5 = 30 Marks) | Short Answers (10 × 3 = 30 Marks)', size: 20 })]
}),
pageBreak()
];
// ─── Q1: Road Traffic Accidents ─────────────────────────────────────────────
const q1 = [
sectionBox('SECTION A – LONG ESSAYS (2 × 10 = 20 Marks)'),
heading1('Q1. Causes of Road Traffic Accidents + Educational Content for School Children'),
noteBox('10 Marks | Write ~2-3 pages with headings, draw the "Multiple Causation" diagram if asked'),
para('Road Traffic Accidents (RTAs) are a major public health problem worldwide. Globally ~1.25 million people die from road accidents every year. In India, 2,18,876 deaths occurred due to road injuries in 2017. Road injury is the leading cause of death in males aged 15–39 years.'),
heading2('PART A: Causes / Risk Factors of RTAs'),
heading3('A. Human Factors (up to 90% of accidents)'),
numbered('Speed – An increase in average speed directly increases both likelihood and severity of crash. Pedestrians have <50% chance of survival at impact speed >45 km/h.', 1),
numbered('Alcohol and drugs – Alcohol is the direct cause of 30–50% of severe road accidents. Barbiturates, amphetamines, cannabis also impair driving.', 2),
numbered('Distracted driving – Mobile phone use while driving; requires legislative and awareness measures.', 3),
numbered('Driver fatigue – Long hours without rest lead to impaired reaction times.', 4),
numbered('Low driving standards – Lack of formal training, poor traffic rule awareness.', 5),
numbered('Disregard of traffic rules – Signal jumping, lane violations, overloading.', 6),
numbered('Vulnerable road users – 48% of road deaths are pedestrians, cyclists and motorcyclists.', 7),
numbered('Age and sex – Males <25 years are 3× more likely to be killed than young females.', 8),
heading3('B. Environmental / Road Factors'),
bullet('Defective roads, poor street lighting, poor layout of crossroads and speed breakers'),
bullet('Large numbers of pedestrians and animals sharing roadway with fast vehicles'),
bullet('Large numbers of old, poorly maintained vehicles'),
bullet('Widespread disregard of traffic rules'),
bullet('Large numbers of motorcycles, scooters and mopeds'),
bullet('Unusual behaviour of men and animals on roads'),
heading3('C. Vehicle Factors'),
bullet('Defective brakes, tyres and lighting'),
bullet('Poor vehicle design (no crumple zones, no air bags)'),
bullet('Absence of seat belts / helmets'),
heading2('PART B: Educational Content for School Children to Avoid RTAs'),
para('"If accident is a disease, education is its vaccine." — Park\'s PSM', { italic: true }),
para('Safety education must begin with school children. The following points should be addressed:'),
numbered('Traffic Rules Awareness: Walk on footpath/left side; cross at zebra crossing; obey traffic signals; never run onto the road without looking both ways.', 1),
numbered('Road Safety Behaviour: Do not play near traffic; wear helmet on bicycle/two-wheeler; wear seat belt in cars; children <12 years must sit in rear seat.', 2),
numbered('Speed Zones: 30 km/h zones near schools are recommended. At 30 km/h pedestrians have 90% survival chance; at 45+ km/h it drops below 50%.', 3),
numbered('Dangers of Alcohol: Never combine alcohol with cycling or riding. Alcohol causes 30–50% of severe accidents.', 4),
numbered('Distracted Driving/Walking: Never use mobile phones while cycling, riding or crossing roads.', 5),
numbered('Seat Belts and Helmets: Seat belts reduce fatalities by ~50%. Helmets reduce head injury risk by 30% and fatalities by 40%.', 6),
numbered('First Aid Training: Learn CPR, wound dressing and emergency numbers (112 / 108 ambulance).', 7),
numbered('Attitude Change: Accidents are preventable – not fate. Fatalistic attitude must be curbed.', 8),
numbered('Pedestrian Safety: Use subways/foot overbridges; never walk on highways at night without reflective gear.', 9),
numbered('Avoid Peer Pressure: Avoid rash driving, racing or stunts under peer influence.', 10),
divider()
];
// ─── Q2: Infant Mortality ────────────────────────────────────────────────────
const q2 = [
heading1('Q2. Causes of Infant Mortality + Preventive and Social Measures'),
noteBox('10 Marks | Include the causes table (neonatal vs post-neonatal) and list preventive measures with headings'),
boldLine('Definition', 'IMR = (Deaths of children <1 year in a year ÷ Live births in same year) × 1000'),
para('IMR is the single most important indicator of a community\'s health status. India\'s IMR was 32 per 1000 live births in 2018.'),
heading2('PART A: Causes of Infant Mortality'),
heading3('1. Medical Causes (Neonatal vs Post-Neonatal)'),
new Paragraph({ spacing: { before: 160 }, children: [] }),
simpleTable(
['Neonatal Mortality (0–4 weeks)', 'Post-Neonatal Mortality (1–12 months)'],
[
['1. Low birth weight & prematurity', '1. Diarrhoeal diseases'],
['2. Birth injury & difficult labour', '2. Acute respiratory infections'],
['3. Sepsis', '3. Other communicable diseases'],
['4. Congenital anomalies', '4. Malnutrition'],
['5. Haemolytic disease of newborn', '5. Congenital anomalies'],
['6. Conditions of placenta and cord', '6. Accidents'],
['7. Diarrhoeal diseases', '—'],
['8. Acute respiratory infections', '—'],
['9. Neonatal tetanus', '—'],
]
),
new Paragraph({ spacing: { before: 120 }, children: [] }),
para('Principal causes in India: Low birth weight (57%), respiratory infections (17%), congenital malformations (5%), diarrhoeal diseases (4%).'),
heading3('2. Biological Factors'),
bullet('Birth weight – LBW (<2.5 kg) is the most important single determinant'),
bullet('Sex – Post-neonatal female deaths are higher in India due to social discrimination'),
bullet('Birth order – Highest mortality in first-born; escalates after 3rd birth'),
bullet('Birth spacing – IMR highest when births are <1 year apart'),
bullet('Multiple births – Greater frequency of LBW'),
bullet('Family size – IMR increases with family size'),
bullet('High fertility'),
heading3('3. Social & Environmental Factors'),
bullet('Illiteracy of mother – single most powerful determinant'),
bullet('Poverty and low socioeconomic status'),
bullet('Only 47% deliveries in India are attended by trained birth attendants'),
bullet('Broken families, illegitimacy'),
bullet('Brutal customs – withholding colostrum, applying cowdung to cord, early weaning'),
bullet('Untrained indigenous dai (midwife)'),
bullet('Bad environmental sanitation – contaminated water, overcrowding'),
bullet('Mother\'s age – teens and >35 years carry higher risk'),
heading2('PART B: Preventive and Social Measures to Reduce IMR'),
para('A multipronged approach is needed as the aetiology is multifactorial.'),
numbered('Prenatal Nutrition: Supplement maternal diet (extra 500 kcal + 10g protein in last trimester). ICDS is active in this field. Iron-folic acid supplementation to prevent LBW.', 1),
numbered('Prevention of Infection: UIP (Universal Immunization Programme) protects against 9 vaccine-preventable diseases. TT vaccination of pregnant mothers prevents neonatal tetanus. ORT for diarrhoea.', 2),
numbered('Promotion of Breast-feeding: Most effective measure for lowering IMR. Safeguards against GI and respiratory infections and PEM. Exclusive breastfeeding for 6 months.', 3),
numbered('Growth Monitoring: Weigh infants monthly; maintain Road-to-Health growth charts; identify at-risk children early.', 4),
numbered('Family Planning: Limit family size; space births ≥2 years apart. Risk of death greatly enhanced if last child born <2 years ago.', 5),
numbered('Environmental Sanitation: Safe water supply; improved housing and drainage; reduction of overcrowding and insect breeding.', 6),
numbered('Primary Health Care: Improve ANC; detect high-risk mothers; hospitalize high-risk pregnancies (toxaemia, APH, DM). Special care baby units for babies <2000 g.', 7),
numbered('Education of Mothers: Female literacy is the most powerful determinant. Educate about proper feeding, hygiene and danger signs.', 8),
numbered('Social Measures: Eliminate poverty; gender equality; eliminate son preference; discourage early marriage.', 9),
numbered('Government Programmes: ICDS, Janani Suraksha Yojana (JSY), PMSMA, Poshan Abhiyaan, National Nutrition Mission.', 10),
divider(), pageBreak()
];
// ─── SHORT ESSAYS ────────────────────────────────────────────────────────────
const shortEssayHeader = [
sectionBox('SECTION B – SHORT ESSAYS (6 × 5 = 30 Marks)'),
];
const q3 = [
heading1('Q3. Describe the Planning Cycle'),
noteBox('5 Marks | Draw the Planning Cycle flowchart; label all 8 steps'),
para('Planning is defined as "a process of analysing a system, defining a problem, assessing needs, formulating goals, examining intervention strategies, implementing and evaluating results."'),
para('Planning involves a succession of cyclical steps:'),
numbered('Analysis of the Health Situation: Collect and interpret data – population structure, morbidity/mortality statistics, epidemiology of diseases, health facilities, manpower, training facilities and community attitudes.', 1),
numbered('Establishment of Objectives and Goals: Short-term and long-term objectives set at all levels. Objectives guide action and measure performance. Tools: cost-benefit analysis, input-output study.', 2),
numbered('Assessment of Resources: Manpower, money, materials, skills and knowledge needed. Balance struck between requirement and availability.', 3),
numbered('Fixing Priorities: Based on mortality/morbidity data, diseases preventable at low cost, financial constraints, political interests. Alternate plans formulated; most effective selected.', 4),
numbered('Write-up of Formulated Plan: Detailed plan prepared. Resources (inputs) related to results (outputs). Each stage costed and time specified. Built-in evaluation system included.', 5),
numbered('Programming and Implementation: Effective organizational structure needed. Defined roles, delegation of authority, selection and training of manpower.', 6),
numbered('Monitoring: Day-to-day follow-up during implementation. Continuous process of observing, recording, reporting activities.', 7),
numbered('Evaluation: Assessing whether objectives were achieved. Feeds back into re-analysis → hence it is a CYCLE.', 8),
divider()
];
const q4 = [
heading1('Q4. Types of Cancer Registries'),
noteBox('5 Marks | Differentiate PBCR vs HBCR clearly'),
para('A cancer registry is "an information system designed for collection, storage and management of data on persons with cancer."'),
heading3('1. Population-Based Cancer Registry (PBCR)'),
bullet('Records all new cancer cases in a defined geographic population'),
bullet('Provides cancer incidence rates for the population'),
bullet('Examples: Bangalore, Mumbai, Chennai registries under ICMR\'s NCRP'),
bullet('Used for epidemiological research and health planning'),
heading3('2. Hospital-Based Cancer Registry (HBCR)'),
bullet('Records all cancer cases seen in a specific hospital'),
bullet('Provides data on treatment, recurrence and survival'),
bullet('Does NOT give population incidence rates'),
bullet('Useful for clinical audit and resource planning'),
bullet('Example: Tata Memorial Hospital Registry, Mumbai'),
heading3('3. Pathology-Based Registry'),
bullet('Based on histopathological reports from labs'),
bullet('Provides information on cancer morphology and type'),
heading3('4. Specialist / Disease-Specific Registry'),
bullet('Records a specific cancer type (e.g., leukaemia, cervical cancer)'),
heading3('5. National Cancer Registry (NCR)'),
bullet('Aggregates data from all PBCRs and HBCRs nationally'),
bullet('Provides national cancer burden estimates'),
bullet('Operated by ICMR under the National Cancer Registry Programme (NCRP)'),
heading2('Importance'),
bullet('Identify high-risk groups and geographic clusters'),
bullet('Monitor cancer trends over time'),
bullet('Plan cancer control programmes'),
bullet('Evaluate impact of screening and treatment'),
divider()
];
const q5 = [
heading1('Q5. National Blindness Control Programme (NBCP)'),
noteBox('5 Marks | Know causes of blindness in India and key targets'),
para('Blindness is a major public health problem. India accounts for ~20% of the world\'s blind. The NBCP was launched in 1976 as a 100% centrally sponsored scheme.'),
heading3('Objectives'),
bullet('Reduce prevalence of blindness from 1.4% (1986) to 0.3% by 2020'),
bullet('Develop comprehensive eye care infrastructure at primary, secondary and tertiary levels'),
heading3('Major Causes of Blindness in India (decreasing order)'),
numbered('Cataract (62.6%) – most common cause', 1),
numbered('Refractive errors', 2),
numbered('Glaucoma', 3),
numbered('Corneal blindness', 4),
numbered('Diabetic retinopathy', 5),
numbered('Childhood blindness', 6),
heading3('Key Strategies / Components'),
numbered('Cataract Surgery: Free surgery with IOL implantation; target 6 million surgeries/year; camp + fixed facility approach.', 1),
numbered('School Eye Screening: Screening for refractive errors; provision of free spectacles to school children.', 2),
numbered('Training: Ophthalmic assistants and health workers trained; capacity building at PHC level.', 3),
numbered('Infrastructure: District Eye Care Units; mobile eye units for underserved areas.', 4),
numbered('Vitamin A Supplementation: For children under 5 years to prevent xerophthalmia.', 5),
numbered('Trachoma Control: SAFE strategy – Surgery, Antibiotics, Face washing, Environmental improvement.', 6),
numbered('Role of Health Worker: Identify and refer all cases of blindness including suspected cataract to MO-PHC.', 7),
para('The programme was revised and expanded as NPCB&VI (National Programme for Control of Blindness and Visual Impairment).'),
divider()
];
const q6 = [
heading1('Q6. Adverse Effects of Poor Lifestyle on Health – Salient Points for School Children'),
noteBox('5 Marks | Use school-friendly language; organise by lifestyle factor'),
para('Poor lifestyle habits established in childhood lead to Non-Communicable Diseases (NCDs) in adult life. Key points to address:'),
numbered('Physical Inactivity: Sedentary behaviour promotes obesity. Children should have ≥60 minutes of moderate-to-vigorous physical activity daily. Encourage sports, outdoor play, cycling.', 1),
numbered('Unhealthy Diet: Junk food (chips, burgers, aerated drinks) is high in salt, sugar and trans fats. Leads to obesity, type 2 DM, hypertension. Promote fruits, vegetables, whole grains, home-cooked meals.', 2),
numbered('Tobacco: Passive smoking is also harmful. Peer pressure is the main gateway – resist firmly. Causes cancer, lung disease, heart disease.', 3),
numbered('Alcohol: Damages the developing brain. Leads to addiction, liver disease, accidents. Early initiation increases lifetime addiction risk.', 4),
numbered('Sleep Deprivation: Children need 8–10 hours of sleep. Insufficient sleep affects immunity, growth and concentration. Consistent sleep schedule is essential.', 5),
numbered('Mental Health / Stress: Exam stress, social media addiction and cyberbullying are growing concerns. Yoga, meditation and talking to trusted adults help manage stress.', 6),
numbered('Obesity: BMI-for-age monitoring is important. Childhood obesity leads to adult obesity, type 2 DM, hypertension and dyslipidaemia.', 7),
numbered('Substance Abuse: Avoid drugs, inhalants and other substances increasingly prevalent in school settings.', 8),
numbered('Screen Time and Posture: Prolonged device use causes "text neck," myopia and eye strain. Take breaks every 30 minutes.', 9),
numbered('Personal Hygiene: Regular handwashing and dental hygiene prevent communicable diseases and early tooth loss.', 10),
divider()
];
const q7 = [
heading1('Q7. Job Responsibilities of ASHA Worker'),
noteBox('5 Marks | ASHA = Accredited Social Health Activist; introduced under NRHM 2005'),
para('One ASHA per 1000 population in villages. She is a trained community health activist who serves as a link between the community and health services.'),
numbered('Maternal and Child Health: Register all pregnancies; motivate for ANC checkups and institutional delivery; accompany women to hospital under Janani Suraksha Yojana (JSY); identify LBW babies; promote exclusive breastfeeding for 6 months.', 1),
numbered('Immunization: Create awareness about UIP; ensure complete immunization of children <2 years; mobilize community for immunization sessions.', 2),
numbered('Family Planning: Counsel couples; distribute condoms and OCP; refer for sterilization services.', 3),
numbered('Nutrition: Identify malnourished children; refer to AWC/ICDS; promote balanced diet.', 4),
numbered('Disease Surveillance: Report fever cases for malaria slide collection; identify TB suspects; ensure DOTS compliance; refer leprosy suspects.', 5),
numbered('Health Education: Create awareness on sanitation, safe water, hygiene; educate about danger signs in pregnancy; promote use of latrines (Swachh Bharat Mission).', 6),
numbered('First Aid and Home Management: Provide ORS for diarrhoea; administer chloroquine for suspected malaria; provide IFA tablets to pregnant women.', 7),
numbered('Record Keeping: Maintain village health register; maintain family health records.', 8),
numbered('Drug Kit: ASHA is provided a drug kit with ORS, IFA, chloroquine, contraceptives, antiseptics, paracetamol.', 9),
numbered('Incentive-Based Work: Paid performance-based incentives for institutional deliveries (JSY), sterilization referrals, RNTCP activities, etc.', 10),
divider()
];
const q8 = [
heading1('Q8. Components of Baby Friendly Hospital Initiative (BFHI)'),
noteBox('5 Marks | Know all Ten Steps; launched by WHO + UNICEF in 1992'),
para('The BFHI was launched jointly by WHO and UNICEF in 1992 to promote, protect and support breastfeeding. Hospitals following the "Ten Steps to Successful Breastfeeding" are designated Baby Friendly Hospitals.'),
heading2('The Ten Steps to Successful Breastfeeding'),
numbered('Written Policy: Have a written breastfeeding policy routinely communicated to all health care staff.', 1),
numbered('Train All Staff: Train all health care staff in skills to implement the breastfeeding policy.', 2),
numbered('Inform Pregnant Women: Inform all pregnant women about benefits and management of breastfeeding.', 3),
numbered('Early Initiation: Help mothers initiate breastfeeding within 1 hour of birth (skin-to-skin contact).', 4),
numbered('Teach Breastfeeding Technique: Show mothers how to breastfeed and maintain lactation even if separated from infant.', 5),
numbered('No Artificial Feeds: Give newborns no food or drink other than breast milk, unless medically indicated.', 6),
numbered('Rooming-In: Allow mothers and infants to remain together 24 hours a day.', 7),
numbered('Demand Feeding: Encourage breastfeeding on demand – as often as the baby wants, day and night.', 8),
numbered('No Artificial Teats / Pacifiers: Give no artificial teats, bottles or pacifiers to breastfeeding infants.', 9),
numbered('Support Groups: Foster establishment of breastfeeding support groups; refer mothers to them on discharge.', 10),
heading2('Benefits of BFHI'),
bullet('Reduces neonatal mortality'),
bullet('Prevents diarrhoea and respiratory infections in infants'),
bullet('Promotes mother-infant bonding'),
bullet('Reduces risk of breast and ovarian cancer in mothers'),
divider(), pageBreak()
];
// ─── SHORT ANSWERS ───────────────────────────────────────────────────────────
const shortAnswerHeader = [
sectionBox('SECTION C – SHORT ANSWERS (10 × 3 = 30 Marks)'),
];
const q9 = [
heading1('Q9. Cost-Effective Analysis'),
noteBox('3 Marks | Know the formula and examples'),
bullet('CEA is a method of economic evaluation comparing relative costs and outcomes of two or more interventions.'),
bullet('Results expressed as cost per unit of health gained (e.g., cost per DALY averted, cost per life saved, cost per case detected).'),
bullet('Unlike cost-benefit analysis, outcomes need NOT be in monetary terms.'),
bullet('Helps policymakers choose interventions that maximise health gain per unit of money spent.'),
bullet('Example: ORT for diarrhoea is highly cost-effective; BCG vaccination is one of the most cost-effective interventions.'),
bullet('Widely used in Health Technology Assessment (HTA) for prioritising health programmes.'),
divider()
];
const q10 = [
heading1('Q10. Zinc Supplementation in Acute Diarrhoea'),
noteBox('3 Marks | Know dose, duration, mechanism and benefits'),
boldLine('Recommendation', 'WHO + UNICEF recommend 10–20 mg elemental zinc/day for 10–14 days during acute diarrhoea in children <5 years.'),
boldLine('Dose', '10 mg/day for infants <6 months; 20 mg/day for children >6 months for 14 days'),
heading3('Mechanism of Action'),
bullet('Reduces intestinal permeability'),
bullet('Enhances mucosal immunity'),
bullet('Promotes enterocyte repair and regeneration'),
bullet('Reduces stool output and intestinal secretion'),
heading3('Benefits'),
bullet('Reduces duration of diarrhoeal episode by ~25%'),
bullet('Reduces severity and stool volume'),
bullet('Reduces risk of subsequent diarrhoea episodes for 2–3 months'),
bullet('Given along with ORS – together they form cornerstone of diarrhoea management'),
divider()
];
const q11 = [
heading1('Q11. PCPNDT Act'),
noteBox('3 Marks | PCPNDT = Pre-Conception and Pre-Natal Diagnostic Techniques Act'),
boldLine('Enacted', '1994 (as PNDT Act); amended 2003 to include pre-conception testing'),
boldLine('Objective', 'Prevent sex-selective abortion; curb declining child sex ratio in India'),
heading3('Key Provisions'),
bullet('Prohibition of sex determination of foetus by any technique'),
bullet('All ultrasound machines and genetic laboratories must be registered'),
bullet('Maintenance of records of all prenatal diagnostic tests'),
bullet('Sex of foetus must NOT be communicated to mother or any relative'),
bullet('Prohibition of advertisement of sex determination services'),
heading3('Punishments'),
bullet('First offence: Imprisonment up to 3 years + fine up to Rs. 10,000'),
bullet('Subsequent offence: Imprisonment up to 5 years + fine up to Rs. 50,000'),
bullet('Medical practitioner\'s name removed from Medical Council register'),
bullet('Appropriate Authority (AA) constituted at district, state and central levels'),
divider()
];
const q12 = [
heading1('Q12. Disaster Mitigation'),
noteBox('3 Marks | Mitigation vs Preparedness vs Response – know the difference'),
para('Disaster mitigation involves measures designed to prevent hazards from causing emergencies or to lessen their likely effects.'),
heading3('General Mitigation Measures'),
bullet('Flood mitigation works (embankments, drainage systems)'),
bullet('Appropriate land-use planning (no construction in flood plains)'),
bullet('Improved building codes and earthquake-resistant construction'),
bullet('Protection of vulnerable populations and structures'),
heading3('In the Health Sector'),
bullet('Ensuring structural safety of hospitals, PHCs, schools'),
bullet('Protecting water supply and sewerage systems'),
bullet('Improving building quality drastically reduces medical casualties'),
bullet('When water supplies are contaminated, cost of rehabilitation severely strains the economy'),
para('Mitigation complements disaster preparedness and response. It is a long-term investment that reduces dependence on emergency response.'),
divider()
];
const q13 = [
heading1('Q13. DASH (Dietary Approaches to Stop Hypertension)'),
noteBox('3 Marks | DASH = first-line non-pharmacological treatment for hypertension'),
para('DASH is a dietary pattern designed to prevent and manage hypertension, developed by the US NHLBI.'),
heading3('Key Dietary Features'),
bullet('High in fruits, vegetables, whole grains, low-fat dairy'),
bullet('Rich in potassium, calcium, magnesium and fibre'),
bullet('Low in saturated fats, total fat and cholesterol'),
bullet('Reduced sodium: <2300 mg/day; ideal <1500 mg/day'),
bullet('Limits red meat, sweets and sugar-sweetened beverages'),
heading3('Benefits'),
bullet('Reduces systolic BP by 8–14 mmHg'),
bullet('Reduces diastolic BP by 4–8 mmHg'),
bullet('Reduces LDL cholesterol, CVD risk, diabetes risk'),
bullet('Recommended as first-line non-pharmacological intervention for hypertension'),
divider()
];
const q14 = [
heading1('Q14. Indian Red Cross Society (IRCS)'),
noteBox('3 Marks | Established by Act of Parliament in 1920'),
boldLine('Established', '1920 by Act of Parliament'),
boldLine('Headquarters', 'New Delhi'),
boldLine('Affiliation', 'International Red Cross and Red Crescent Movement'),
heading3('Functions'),
bullet('Disaster relief – food, clothing, shelter during floods, earthquakes, cyclones'),
bullet('Blood banking – runs blood banks; promotes voluntary blood donation'),
bullet('First aid training – trains community members, police and students'),
bullet('Ambulance services'),
bullet('Health and nursing education – runs nursing schools'),
bullet('Tracing missing persons during disasters and conflicts'),
bullet('Junior Red Cross in schools – health, hygiene and community service'),
bullet('Rehabilitation of disabled persons'),
bullet('Mother and Child welfare activities'),
divider()
];
const q15 = [
heading1('Q15. Incineration'),
noteBox('3 Marks | Primary method for biomedical waste disposal; BMW Rules 2016'),
para('Incineration is the controlled burning of waste at high temperatures (850–1100°C) for waste treatment and disposal. It is the most reliable method for disposal of biomedical/hospital waste.'),
heading3('Types of Incinerators'),
bullet('Double-chamber (pyrolytic) incinerators – most efficient; primary chamber burns waste, secondary burns gases'),
bullet('Rotary kiln incinerators'),
bullet('Multiple hearth incinerators'),
heading3('Advantages'),
bullet('Destroys pathogens completely'),
bullet('Reduces waste volume by 90–95%'),
bullet('Suitable for anatomical waste, cytotoxic waste, sharps'),
heading3('Disadvantages'),
bullet('Expensive to install and operate'),
bullet('Produces dioxins, furans and toxic emissions if improperly maintained'),
bullet('Ash may contain heavy metals and requires safe disposal'),
para('As per Biomedical Waste Management Rules 2016, incineration is mandatory for specific categories of waste.'),
divider()
];
const q16 = [
heading1('Q16. Counterfeit Medicines'),
noteBox('3 Marks | Also called spurious drugs; Drugs & Cosmetics Act 1940'),
para('Counterfeit medicines (spurious drugs) are medicines that are deliberately and fraudulently mislabelled with respect to identity and/or source.'),
heading3('May Contain'),
bullet('No active ingredient (inert filler only)'),
bullet('Wrong active ingredient or wrong dosage'),
bullet('Harmful/toxic substances'),
bullet('Poor-quality packaging'),
heading3('Risks'),
bullet('Treatment failure → disease progression and death'),
bullet('Drug resistance (e.g., AMR from sub-therapeutic doses)'),
bullet('Direct toxicity from harmful ingredients'),
bullet('Erosion of public trust in healthcare'),
heading3('Control Measures'),
bullet('Track and trace systems (QR codes, holograms)'),
bullet('WHO IMPACT (International Medical Products Anti-Counterfeiting Taskforce)'),
bullet('CDSCO (Central Drugs Standard Control Organisation) regulation in India'),
bullet('Strict licensing, post-market surveillance and public awareness'),
divider()
];
const q17 = [
heading1('Q17. ICTC (Integrated Counselling and Testing Centre)'),
noteBox('3 Marks | Established under NACP by NACO; remember the 3 Cs'),
para('ICTC is a facility where a person can voluntarily receive HIV counselling and testing services, established under the National AIDS Control Programme (NACP) by NACO.'),
heading3('Services Provided'),
bullet('Pre-test counselling – information about HIV, the test, meaning of results'),
bullet('HIV testing – Rapid tests (ELISA / Western Blot confirmation)'),
bullet('Post-test counselling – confidential results; risk reduction counselling'),
bullet('Referral to ART centres for HIV-positive cases'),
bullet('PPTCT (Prevention of Parent-to-Child Transmission) for pregnant women'),
heading3('Types of ICTCs'),
bullet('Standalone ICTC – at PHC, CHC, District Hospitals'),
bullet('Facility-Integrated ICTC – in ANC clinics, TB wards, STI clinics'),
bullet('Mobile ICTC – for hard-to-reach populations'),
heading3('Guiding Principles (3 Cs)'),
bullet('Confidentiality'),
bullet('Informed Consent'),
bullet('Counselling'),
divider()
];
const q18 = [
heading1('Q18. Body Mass Index (BMI)'),
noteBox('3 Marks | Know formula, WHO classification and Asian cut-offs'),
boldLine('Formula', 'BMI = Weight (kg) ÷ Height² (m²)'),
new Paragraph({ spacing: { before: 120 }, children: [] }),
simpleTable(
['BMI (kg/m²)', 'WHO Classification'],
[
['< 18.5', 'Underweight'],
['18.5 – 24.9', 'Normal weight'],
['25.0 – 29.9', 'Overweight'],
['≥ 30.0', 'Obese'],
]
),
new Paragraph({ spacing: { before: 120 }, children: [] }),
heading3('Asian / Indian Cut-offs (modified)'),
bullet('Overweight: ≥23 kg/m²'),
bullet('Obese: ≥25 kg/m² (Asians have higher body fat % at lower BMI)'),
bullet('Ideal BMI for Indians: 18.5 – 22.9 kg/m²'),
heading3('Uses'),
bullet('Population-level screening for obesity and undernutrition'),
bullet('Monitor nutritional status'),
bullet('Predict risk of chronic diseases (type 2 DM, hypertension, CVD)'),
heading3('Limitations'),
bullet('Does not distinguish fat from muscle mass'),
bullet('Does not reflect fat distribution (central vs peripheral)'),
bullet('Not applicable during pregnancy'),
bullet('For children: BMI-for-age percentiles used instead'),
divider()
];
// ─── Footer ──────────────────────────────────────────────────────────────────
const lastPage = [
new Paragraph({ spacing: { before: 600 }, children: [] }),
divider(),
new Paragraph({
alignment: AlignmentType.CENTER,
spacing: { before: 200, after: 100 },
children: [new TextRun({ text: 'Reference: Park\'s Textbook of Preventive and Social Medicine, 26th Edition', italic: true, size: 18, color: '404040' })]
}),
new Paragraph({
alignment: AlignmentType.CENTER,
spacing: { before: 0, after: 100 },
children: [new TextRun({ text: 'K. Park | Bhanot Publishers, Jabalpur', italic: true, size: 18, color: '404040' })]
}),
new Paragraph({
alignment: AlignmentType.CENTER,
spacing: { before: 0, after: 0 },
children: [new TextRun({ text: 'Best of luck for your exam!', bold: true, size: 24, color: '70AD47' })]
})
];
// ─── Assemble Document ───────────────────────────────────────────────────────
const doc = new Document({
creator: 'Orris AI',
title: 'Community Medicine – CBME January 2025 Answer Key',
description: 'III MBBS Community Medicine complete answer key based on Park\'s PSM',
styles: {
default: {
document: {
run: { font: 'Calibri', size: 20 }
}
}
},
sections: [
{
properties: {
page: {
margin: { top: 1080, bottom: 1080, left: 1080, right: 1080 }
}
},
headers: {
default: new Header({
children: [
new Paragraph({
border: { bottom: { style: BorderStyle.SINGLE, size: 6, color: '2E75B6' } },
children: [
new TextRun({ text: 'III MBBS – Community Medicine | CBME January 2025 | Answer Key (Park\'s PSM)', size: 16, color: '2E75B6', italics: true })
]
})
]
})
},
footers: {
default: new Footer({
children: [
new Paragraph({
border: { top: { style: BorderStyle.SINGLE, size: 6, color: 'AAAAAA' } },
alignment: AlignmentType.CENTER,
children: [
new TextRun({ text: 'Page ', size: 16, color: '888888' }),
new TextRun({ children: [PageNumber.CURRENT], size: 16, color: '888888' }),
new TextRun({ text: ' of ', size: 16, color: '888888' }),
new TextRun({ children: [PageNumber.TOTAL_PAGES], size: 16, color: '888888' }),
]
})
]
})
},
children: [
...coverPage,
...q1,
...q2,
...shortEssayHeader,
...q3,
...q4,
...q5,
...q6,
...q7,
...q8,
...shortAnswerHeader,
...q9,
...q10,
...q11,
...q12,
...q13,
...q14,
...q15,
...q16,
...q17,
...q18,
...lastPage
]
}
]
});
Packer.toBuffer(doc).then(buffer => {
fs.writeFileSync('/home/daytona/workspace/community-medicine-answers/CommunityMedicine_CBME_Jan2025_Answers.docx', buffer);
console.log('Document created successfully!');
});
cd /home/daytona/workspace/community-medicine-answers && node build.js 2>&1
python3 /home/daytona/skills/docx/scripts/office/validate.py /home/daytona/works…
ls -lh /home/daytona/workspace/community-medicine-answers/CommunityMedicine_CBME…
CommunityMedicine CBME Jan2025 Answers
Word Document · DOCX
Referring park textbook of psm (all the answers to be provided in 10 markers format )
~/community-medicine-answers/build_march2025.js
const {
Document, Packer, Paragraph, TextRun, Table, TableRow, TableCell,
Header, Footer, AlignmentType, HeadingLevel, BorderStyle, WidthType,
VerticalAlign, PageNumber, ShadingType, PageBreak
} = require('docx');
const fs = require('fs');
// ─── Helpers ─────────────────────────────────────────────────────────────────
function heading1(text) {
return new Paragraph({
heading: HeadingLevel.HEADING_1,
spacing: { before: 360, after: 120 },
children: [new TextRun({ text, bold: true, size: 28, color: '1F4E79' })]
});
}
function heading2(text) {
return new Paragraph({
heading: HeadingLevel.HEADING_2,
spacing: { before: 240, after: 80 },
children: [new TextRun({ text, bold: true, size: 24, color: '2E75B6' })]
});
}
function heading3(text) {
return new Paragraph({
heading: HeadingLevel.HEADING_3,
spacing: { before: 160, after: 60 },
children: [new TextRun({ text, bold: true, size: 22, color: '2E75B6' })]
});
}
function sectionBox(text) {
return new Paragraph({
spacing: { before: 200, after: 120 },
shading: { type: ShadingType.SOLID, color: 'E2EFD9' },
border: { left: { style: BorderStyle.THICK, size: 12, color: '70AD47' } },
indent: { left: 180 },
children: [new TextRun({ text, bold: true, size: 22, color: '375623' })]
});
}
function noteBox(text) {
return new Paragraph({
spacing: { before: 120, after: 120 },
shading: { type: ShadingType.SOLID, color: 'FFF2CC' },
border: { left: { style: BorderStyle.THICK, size: 12, color: 'F4B942' } },
indent: { left: 180 },
children: [new TextRun({ text: '📝 ' + text, size: 18, italic: true, color: '7F6000' })]
});
}
function para(text, options = {}) {
return new Paragraph({
spacing: { before: 80, after: 80 },
indent: { left: options.indent || 0 },
children: [new TextRun({ text, size: 20, bold: options.bold || false, italics: options.italic || false })]
});
}
function bullet(text, level = 0) {
return new Paragraph({
bullet: { level },
spacing: { before: 60, after: 60 },
indent: { left: 360 + level * 360, hanging: 180 },
children: [new TextRun({ text, size: 20 })]
});
}
function numbered(text, num) {
return new Paragraph({
spacing: { before: 80, after: 80 },
indent: { left: 420, hanging: 420 },
children: [
new TextRun({ text: `${num}. `, bold: true, size: 20 }),
new TextRun({ text, size: 20 })
]
});
}
function boldLine(label, value) {
return new Paragraph({
spacing: { before: 80, after: 60 },
indent: { left: 180 },
children: [
new TextRun({ text: label + ': ', bold: true, size: 20 }),
new TextRun({ text: value, size: 20 })
]
});
}
function divider() {
return new Paragraph({
spacing: { before: 120, after: 120 },
border: { bottom: { style: BorderStyle.SINGLE, size: 6, color: 'BBBBBB' } },
children: [new TextRun({ text: '' })]
});
}
function pageBreak() { return new Paragraph({ children: [new PageBreak()] }); }
function spacer() { return new Paragraph({ spacing: { before: 80 }, children: [] }); }
function simpleTable(headers, rows) {
const hCells = headers.map(h => new TableCell({
shading: { type: ShadingType.SOLID, color: '2E75B6' },
verticalAlign: VerticalAlign.CENTER,
children: [new Paragraph({ alignment: AlignmentType.CENTER, children: [new TextRun({ text: h, bold: true, size: 18, color: 'FFFFFF' })] })]
}));
const tableRows = [new TableRow({ children: hCells, tableHeader: true })];
rows.forEach((row, ri) => {
const cells = row.map(cell => new TableCell({
shading: ri % 2 === 0 ? { type: ShadingType.SOLID, color: 'DEEAF1' } : { type: ShadingType.SOLID, color: 'FFFFFF' },
children: [new Paragraph({ children: [new TextRun({ text: cell, size: 18 })] })]
}));
tableRows.push(new TableRow({ children: cells }));
});
return new Table({ width: { size: 100, type: WidthType.PERCENTAGE }, rows: tableRows });
}
// ─── COVER PAGE ──────────────────────────────────────────────────────────────
const coverPage = [
new Paragraph({ spacing: { before: 1440 }, children: [] }),
new Paragraph({ alignment: AlignmentType.CENTER, spacing: { before: 0, after: 200 }, children: [new TextRun({ text: 'III MBBS – COMMUNITY MEDICINE', bold: true, size: 52, color: '1F4E79' })] }),
new Paragraph({ alignment: AlignmentType.CENTER, spacing: { before: 0, after: 200 }, children: [new TextRun({ text: 'CBME EXAMINATION – MARCH 2025', bold: true, size: 36, color: '2E75B6' })] }),
new Paragraph({ alignment: AlignmentType.CENTER, spacing: { before: 0, after: 200 }, children: [new TextRun({ text: 'COMPLETE ANSWER KEY', bold: true, size: 40, color: '70AD47' })] }),
divider(),
new Paragraph({ alignment: AlignmentType.CENTER, spacing: { before: 200, after: 100 }, children: [new TextRun({ text: "Reference: Park's Textbook of Preventive and Social Medicine", italic: true, size: 22, color: '404040' })] }),
new Paragraph({ alignment: AlignmentType.CENTER, spacing: { before: 0, after: 100 }, children: [new TextRun({ text: '26th Edition | K. Park | Bhanot Publishers', italic: true, size: 20, color: '404040' })] }),
divider(),
new Paragraph({ alignment: AlignmentType.CENTER, spacing: { before: 300 }, children: [new TextRun({ text: 'Long Essays (2×10=20) | Short Essays (6×5=30) | Short Answers (10×3=30)', size: 20 })] }),
pageBreak()
];
// ═══════════════════════════════════════════════════════════════════════════
// Q1 – Agricultural Hazards + PPE
// ═══════════════════════════════════════════════════════════════════════════
const q1 = [
sectionBox('SECTION A – LONG ESSAYS (2 × 10 = 20 Marks)'),
heading1('Q1. Occupational Hazards among Agricultural Workers + Personal Protective Devices'),
noteBox('10 Marks | Draw a diagram classifying hazards; list each PPE with purpose'),
para('Agriculture is the largest industry in India by number of persons employed. Agricultural workers face a wide range of occupational health hazards. Occupational health in agriculture is a relatively new concept – commonly overlooked because occupational medicine was traditionally associated only with industrial workers.'),
heading2('PART A: Occupational Hazards of Agricultural Workers'),
heading3('1. Zoonotic Diseases'),
bullet('Close contact with animals and their products increases risk of contracting zoonoses'),
bullet('Brucellosis – from infected cattle, goats; causes undulant fever'),
bullet('Anthrax – from infected animals or their hides/wool'),
bullet('Leptospirosis – from rodent/animal urine contaminated water; common in paddy workers'),
bullet('Tetanus – through soil contamination of wounds; very common in agricultural workers'),
bullet('Bovine tuberculosis – from infected cattle milk or handling'),
bullet('Q fever – from cattle, sheep and goat'),
bullet('Rabies – from animal bites'),
heading3('2. Accidents'),
bullet('Agricultural accidents increasingly common due to use of agricultural machinery (tractors, threshers, harvesters)'),
bullet('Insect bites (bees, wasps) and snake bites are additional hazards in India'),
bullet('Injuries from sharp instruments (sickles, ploughs)'),
bullet('Falls from trees or stored produce'),
heading3('3. Toxic Hazards – Pesticide / Chemical Poisoning'),
bullet('Fertilizers, insecticides and pesticides used extensively in modern agriculture'),
bullet('Agricultural workers exposed via inhalation, ingestion or skin absorption'),
bullet('Organophosphate poisoning – commonest; inhibits acetylcholinesterase → SLUDGE symptoms'),
bullet('Organochlorine (DDT, endosulfan) – persistent in body fat'),
bullet('Carbamate poisoning'),
bullet('Associated malnutrition and parasitic infestations increase susceptibility to poisoning'),
bullet('Epidemic dropsy – from argemone oil contamination of mustard oil'),
heading3('4. Physical Hazards'),
bullet('Extreme heat and humidity – heat exhaustion, heat stroke in outdoor farm workers'),
bullet('Excessive solar radiation – sunburn, heat cramps, skin cancer (long-term UV exposure)'),
bullet('Excessive noise and vibrations from farm machinery – noise-induced hearing loss'),
bullet('Inadequate ventilation in granaries and storage areas'),
bullet('Working in uncomfortable postures for long periods – musculoskeletal disorders'),
heading3('5. Respiratory Diseases (Organic Dust Diseases)'),
bullet('Farmer\'s Lung – hypersensitivity pneumonitis from mouldy hay dust (Thermophilic actinomycetes)'),
bullet('Byssinosis – from cotton dust; causes "Monday morning tightness"'),
bullet('Bagassosis – from sugarcane dust'),
bullet('Grain dust asthma – from grain storage dust'),
bullet('Exposure to dusts from rice husks, coconut fibres, tea, tobacco, wood'),
heading3('6. Other Health Problems'),
bullet('Musculoskeletal disorders – back pain, knee pain from heavy lifting and awkward postures'),
bullet('Skin diseases – contact dermatitis, fungal infections from soil and water exposure'),
bullet('Eye problems – pterygium, conjunctivitis from UV exposure and dust'),
bullet('Nutritional deficiencies – poor diet, irregular meals'),
bullet('Psychosocial stress – crop failure, debt, poor income'),
heading2('PART B: Personal Protective Devices (PPE) for Agricultural Workers'),
para('PPE is the last line of defence against occupational hazards. Its use should be combined with engineering and administrative controls.'),
numbered('Head Protection: Hard hat/helmet – protects from falling objects, machinery impact; Hat/cap – protection from solar radiation and heat stroke.', 1),
numbered('Eye and Face Protection: Goggles/safety glasses – protect from chemical splashes (pesticides, fertilizers), dust and debris; Face shield – for heavy spray operations.', 2),
numbered('Respiratory Protection: Dust masks/respirators (N95) – protect from grain dust, hay mould, pesticide sprays; Organic vapour respirators – for fumigation and spraying pesticides.', 3),
numbered('Skin/Body Protection: Chemical-resistant coveralls/apron – prevent pesticide absorption through skin; Long-sleeved shirts and trousers; Waterproof clothing for wet paddy fields.', 4),
numbered('Hand Protection: Chemical-resistant gloves (nitrile/rubber) – prevent pesticide absorption; Leather gloves – for handling sharp tools, thorny plants.', 5),
numbered('Foot Protection: Rubber boots/gumboots – protect from soil-borne infections (hookworm, leptospirosis), snake bites and chemical spills; Steel-toed boots – for machinery work.', 6),
numbered('Hearing Protection: Earplugs or earmuffs – for workers operating noisy farm machinery (tractors, combine harvesters); Noise >85 dB warrants hearing protection.', 7),
numbered('Sun Protection: UV-blocking clothing, wide-brimmed hat, sunscreen (SPF 30+) – reduce risk of skin cancer and heat stroke.', 8),
para('In addition:', { bold: true }),
bullet('Inhalation, swallowing or direct skin contact with chemicals must be avoided'),
bullet('Adequate ventilation of workplaces necessary to prevent inhalation of harmful gases'),
bullet('Periodic medical examination of workers is mandatory'),
bullet('Pregnant women should not be allowed to work in pesticide-spraying areas'),
divider()
];
// ═══════════════════════════════════════════════════════════════════════════
// Q2 – Cohort Study
// ═══════════════════════════════════════════════════════════════════════════
const q2 = [
heading1('Q2. Cohort Study – Steps Involved + Advantages and Disadvantages (6+2+2)'),
noteBox('10 Marks (6 marks steps + 2 advantages + 2 disadvantages) | Draw the cohort study framework diagram'),
para('A cohort study is an analytical (observational) study that proceeds from cause to effect. Also called a prospective study, longitudinal study, incidence study, or forward-looking study.'),
boldLine('Definition', '"A group of people who share a common characteristic or experience within a defined time period" – e.g., age, occupation, exposure.'),
para('Distinguishing features: (a) Cohorts identified prior to disease; (b) followed over time to determine frequency of disease; (c) proceeds forward from cause to effect.'),
heading2('PART A: Steps Involved in a Cohort Study (6 marks)'),
numbered('Selection of the Study Population (Cohorts): Two groups selected – exposed cohort (study cohort) and non-exposed cohort (control cohort). Both groups must be free from the disease under study at the start. Groups should be comparable in all possible variables that may influence frequency of disease.', 1),
numbered('Obtaining Data on Exposure: Exposure status determined at the beginning of the study through interviews, questionnaires, medical records, occupational records, biological measurements (blood levels, X-rays). Data on potential confounders also collected.', 2),
numbered('Follow-Up: Both cohorts are observed under identical conditions over a defined follow-up period. The follow-up period may be months to decades (for chronic diseases like cancer). Outcome event (disease onset, disability, death) recorded. Minimize losses to follow-up to reduce bias.', 3),
numbered('Assessment of Outcome: At the end of follow-up, incidence rate of disease calculated in both exposed and unexposed groups. Disease diagnosed using pre-defined diagnostic and eligibility criteria.', 4),
numbered('Analysis – Relative Risk Calculation: Compare incidence in exposed (a/a+b) vs unexposed (c/c+d). Relative Risk (RR) = Incidence in exposed ÷ Incidence in unexposed. If RR >1, exposure associated with increased risk. Attributable Risk also calculated.', 5),
numbered('Interpretation and Conclusion: Statistical significance assessed. Confounding factors controlled. Conclusions drawn on whether exposure is associated with the disease. Results used to establish causation.', 6),
spacer(),
simpleTable(
['Cohort', 'Disease: Yes', 'Disease: No', 'Total'],
[
['Exposed (study cohort)', 'a', 'b', 'a+b'],
['Not exposed (control cohort)', 'c', 'd', 'c+d'],
]
),
spacer(),
para('Relative Risk (RR) = [a/(a+b)] ÷ [c/(c+d)]'),
heading2('PART B: Advantages of Cohort Study (2 marks)'),
numbered('Provides direct measurement of incidence and relative risk (best study for establishing causation).', 1),
numbered('Exposure status is determined before disease onset, eliminating recall bias.', 2),
numbered('Multiple outcomes/diseases can be studied for a single exposure.', 3),
numbered('Temporal relationship between exposure and disease is clearly established.', 4),
heading2('PART C: Disadvantages of Cohort Study (2 marks)'),
numbered('Very expensive and time-consuming – especially for diseases with long latency periods (e.g., cancer, CHD).', 1),
numbered('Not suitable for studying rare diseases – a very large cohort is needed.', 2),
numbered('Subject to attrition bias – losses to follow-up can distort results.', 3),
numbered('Exposure status and other characteristics of subjects may change during the long follow-up period.', 4),
divider(), pageBreak()
];
// ═══════════════════════════════════════════════════════════════════════════
// SHORT ESSAYS
// ═══════════════════════════════════════════════════════════════════════════
const shortEssayHdr = [sectionBox('SECTION B – SHORT ESSAYS (6 × 5 = 30 Marks)')];
// Q3 – Bias in Epidemiological Research
const q3 = [
heading1('Q3. Bias in Epidemiological Research'),
noteBox('5 Marks | Define bias; classify types; know selection and information bias well'),
para('Bias is defined as "any systematic error in the design, conduct, or analysis of a study that results in a mistaken estimate of an exposure\'s effect on the risk of disease."'),
para('Bias leads to incorrect conclusions – it can either overestimate or underestimate the true association. Unlike random error, bias is not reduced by increasing sample size.'),
heading3('Classification of Bias'),
heading3('A. Selection Bias'),
para('Occurs when the study sample is not representative of the target population.'),
bullet('Admission rate bias (Berkson\'s bias) – In case-control studies, hospital patients are not representative of the general population; hospitalised cases and controls may have different exposure rates.'),
bullet('Prevalence-incidence bias (Neyman\'s bias) – Only prevalent cases (survivors) are studied, excluding fatal or mild undetected cases.'),
bullet('Non-respondent bias – Non-responders differ systematically from responders.'),
bullet('Volunteer bias – Volunteers tend to be healthier than non-volunteers (Healthy Worker Effect).'),
bullet('Loss to follow-up bias – Subjects lost to follow-up may differ from those who complete the study.'),
heading3('B. Information / Measurement Bias (Observational Bias)'),
para('Occurs when data is collected incorrectly or incompletely.'),
bullet('Recall bias – Cases (diseased persons) remember past exposures better than controls; particularly problematic in case-control studies.'),
bullet('Interviewer bias – Investigator probes cases more thoroughly than controls.'),
bullet('Hawthorne effect – Subjects change their behaviour when they know they are being observed.'),
bullet('Diagnostic suspicion bias – Knowing a subject\'s exposure status influences the intensity of disease diagnosis.'),
bullet('Exposure suspicion bias – Knowing disease status influences inquiry into exposure.'),
heading3('C. Confounding Bias'),
bullet('A confounding variable is associated with both the exposure and the disease.'),
bullet('Example: Alcohol and lung cancer – smoking is a confounder (smokers drink more AND develop lung cancer).'),
bullet('Controlled by: matching, restriction, stratification, or multivariate analysis.'),
heading3('Methods to Control Bias'),
bullet('Randomisation (in RCTs) – eliminates selection bias'),
bullet('Blinding – reduces information bias'),
bullet('Matching – controls confounding'),
bullet('Standardised data collection – reduces measurement bias'),
bullet('Large sample size – reduces random error but NOT bias'),
divider()
];
// Q4 – Adulteration of Food
const q4 = [
heading1('Q4. Adulteration of Food'),
noteBox('5 Marks | Include definition, common adulterants table, health effects, and PFA Act'),
para('Food adulteration is defined as "the process by which the quality or the nature of a food is reduced through the addition of a foreign or inferior substance, or through the removal of a valuable ingredient."'),
para('In India, the Prevention of Food Adulteration (PFA) Act 1954 governs food adulteration. It was replaced by the Food Safety and Standards Act (FSSA) 2006, implemented by FSSAI.'),
heading3('Types of Adulteration'),
bullet('Intentional adulteration – Deliberate addition of inferior or harmful substances for economic gain'),
bullet('Incidental adulteration – Due to ignorance, negligence (e.g., pesticide residues in crops)'),
bullet('Metallic contamination – Lead, arsenic, copper from processing equipment'),
bullet('Biological contamination – Aflatoxins from moulds in stored grains'),
heading3('Common Adulterants in India'),
spacer(),
simpleTable(
['Food Material', 'Common Adulterant', 'Health Effect'],
[
['Mustard seeds/oil', 'Argemone seeds/oil', 'Epidemic dropsy, glaucoma'],
['Edible oils', 'Mineral oils', 'Liver damage, cancer'],
['Milk', 'Water, starch, urea', 'Nutritional deficiency'],
['Chilli powder', 'Brick powder, saw dust', 'GI damage'],
['Turmeric (Haldi)', 'Lead chromate powder', 'Lead poisoning'],
['Dal (pulses)', 'Khesari dal (Lathyrus sativus)', 'Lathyrism (paralysis)'],
['Ghee', 'Vanaspati (hydrogenated fat)', 'Cardiovascular disease'],
['Tea/Coffee', 'Used tea dust, tamarind seeds', 'GI irritation'],
]
),
spacer(),
heading3('Health Effects of Food Adulteration'),
bullet('Epidemic dropsy – Argemone oil in mustard oil; causes oedema, diarrhoea, skin rash, glaucoma'),
bullet('Lathyrism – Khesari dal in pulses; causes irreversible spastic paralysis of lower limbs'),
bullet('Lead poisoning – Lead chromate in turmeric; causes anaemia, neurological damage'),
bullet('Nutritional deficiencies – Adulteration reduces nutritive value of food'),
bullet('Carcinogenicity – Certain dyes, mineral oils are carcinogenic'),
heading3('Legal Provisions – PFA Act 1954 (now FSSAI 2006)'),
bullet('Any food not conforming to minimum standards is deemed adulterated'),
bullet('Minimum imprisonment 6 months + fine Rs.1,000 for proven adulteration'),
bullet('Punishment up to life imprisonment if adulteration causes death'),
bullet('FSSAI – Food Safety and Standards Authority of India – monitors food quality'),
bullet('Food standards: Codex Alimentarius (international), PFA standards, AGMARK, ISI'),
divider()
];
// Q5 – Educational Session on Alcohol
const q5 = [
heading1('Q5. Logistics and Steps in Conducting an Educational Session on Alcohol Use'),
noteBox('5 Marks | This is health education planning – use the steps of health education programme'),
para('An educational session for a village community on alcohol consumption requires careful planning, community involvement, and appropriate communication methods.'),
heading3('A. Pre-Planning and Logistics'),
numbered('Community Needs Assessment: Identify the extent of alcohol use in the village through household surveys, key informant interviews, observation. Assess the social and health consequences – domestic violence, absenteeism, liver disease, accidents.', 1),
numbered('Setting Objectives: Specific objectives to be defined – e.g., "By the end of session, participants will be able to list 3 health effects of alcohol and identify at least one de-addiction centre."', 2),
numbered('Target Audience Identification: Men aged 18–50 years who are regular consumers; also include family members, youth, women. Group size: 20–30 persons optimal for interactive session.', 3),
numbered('Venue and Time Selection: Village panchayat hall, school, or community centre. Time: after working hours (evening) to ensure attendance. Inform the village sarpanch/ASHA in advance.', 4),
numbered('Resource Mobilisation: Engage ASHA, ANM, village health worker. Arrange audiovisual aids – posters, flipcharts, model showing liver damage, short film/video on effects of alcohol. Prepare IEC materials (leaflets in local language).', 5),
numbered('Coordination: Inform community leaders, self-help groups (SHGs). Coordinate with de-addiction centre for referral pathway. Get permission from local authorities if needed.', 6),
heading3('B. Steps in Conducting the Session'),
numbered('Introduction and Ice-breaking: Welcome participants; introduce yourself and the purpose of the session. Build rapport; use a short story or case study about a real local incident related to alcohol.', 1),
numbered('Assessment of Knowledge and Perceptions: Ask open-ended questions: "What do you think about drinking?" "Why do people drink?" This establishes baseline and shows respect for participants.', 2),
numbered('Health Education Talk (Core Content): Causes of alcohol dependence; health effects (liver cirrhosis, carcinoma, neurological damage, malnutrition, fetal alcohol syndrome); social effects (domestic violence, family breakdown, road accidents, economic loss); explain addiction and withdrawal.', 3),
numbered('Use of Audio-Visual Aids: Show posters of liver damage, damaged brain. Show a short film or role play demonstrating consequences of alcohol in family life.', 4),
numbered('Group Discussion: Encourage participants to share personal experiences. Discuss local reasons for drinking (stress, peer pressure, caste practices, festivals). Identify barriers to quitting.', 5),
numbered('Motivational Counselling: Discuss de-addiction services available – de-addiction centres, NRHM services. Encourage commitment to reduce or quit drinking. Discuss coping strategies for stress.', 6),
numbered('Feedback and Evaluation: Ask a few questions to assess understanding. Distribute feedback forms. Note attendance and issues raised.', 7),
numbered('Follow-Up Plan: Set up a follow-up meeting in 4 weeks. Refer cases to de-addiction centre. Provide ASHA contact number for ongoing support.', 8),
divider()
];
// Q6 – Sickness Absenteeism
const q6 = [
heading1('Q6. Sickness Absenteeism'),
noteBox('5 Marks | Important occupational health topic – causes + prevention + measurement'),
para('Sickness absence is an important health problem in industry. It is a useful index to assess the state of health of workers, and their physical, mental and social well-being. It may seriously impede production with serious cost repercussions.'),
heading3('Incidence'),
bullet('India has a working force of about 30 million in registered factories'),
bullet('Research by National Productivity Council (NPC) showed increase from 8–13% (early 1950s) to 15–20% or more in recent years'),
bullet('Rate of absenteeism: 8–10 days per head per year'),
heading3('Measurement'),
bullet('Frequency Rate = (Number of spells of sickness absence / Number of workers at risk) × 100'),
bullet('Duration Rate = (Number of days lost due to sickness / Number of workers at risk) × 100'),
bullet('Severity Rate = Total days lost / Total spells of absence'),
heading3('Causes of Sickness Absenteeism'),
numbered('Economic Causes: If the worker is entitled to sick leave with pay, he may avail of this privilege by reporting sick. Workers declare themselves fit or unfit at their choice.', 1),
numbered('Social Causes: Social and family obligations – weddings, festivals, maintenance of ancestral house; Workers from rural areas go back to villages during sowing/harvest seasons.', 2),
numbered('Medical Causes: About 10% of days lost are due to occupational accidents. Respiratory and alimentary illnesses are important causes.', 3),
numbered('Non-Occupational Causes: Nutritional disorders, alcoholism and drug addiction contribute to sickness absenteeism.', 4),
heading3('Prevention and Reduction of Sickness Absenteeism'),
numbered('Good factory management and practices – safe, clean and well-ventilated workplace.', 1),
numbered('Adequate pre-placement examination – ensure worker is fit for the job from the start.', 2),
numbered('Good human relations – between management and workers; grievance redressal; recreational facilities.', 3),
numbered('Application of ergonomics – adapt the job to the worker to reduce fatigue and strain.', 4),
numbered('Counselling and employee assistance programmes for alcoholism and mental health.', 5),
numbered('Periodic medical surveillance – identify early occupational diseases.', 6),
divider()
];
// Q7 – Principles of Health Education
const q7 = [
heading1('Q7. Principles of Health Education'),
noteBox('5 Marks | There are 10 key principles – list all with brief explanation'),
para('Health education cannot be "given" to one person by another. It involves teaching, learning and inculcation of habits for healthful living. Certain principles guide effective health education:'),
numbered('Credibility: The message must be perceived as trustworthy by the receiver. Health education must be based on facts – consistent with scientific knowledge and local culture. Unless people trust the communicator, no desired action will follow.', 1),
numbered('Interest: People are unlikely to listen to things that are not in their interest. Health education must relate to the felt-needs of the people – what they themselves feel they need. A programme based on felt-needs will see active participation.', 2),
numbered('Participation: Active learning principle. People should work with health workers to identify their own health problems and develop solutions. High degree of participation creates a sense of involvement, personal acceptance and decision-making.', 3),
numbered('Motivation: Awakening the desire to learn. Primary motives (hunger, survival) and secondary motives (praise, love, rewards) play a role. Positive incentives ("carrot") are more effective than negative ("stick") in health education.', 4),
numbered('Comprehension: The message must be understood clearly. Use simple, familiar language. Avoid technical jargon. Demonstrate; do not just tell.', 5),
numbered('Reinforcement: Repetition of the message is needed to establish new attitudes and behaviour. A single contact is rarely sufficient. Follow-up sessions, reminders and review help reinforce the message.', 6),
numbered('Learning by Doing: People learn best by actually doing things rather than passively receiving information. Practical demonstrations, skill training and group activities enhance learning.', 7),
numbered('Known to Unknown: Start from what the learner already knows. Build new knowledge on the foundation of existing knowledge and experience. This principle guides curriculum development.', 8),
numbered('Setting an Example: Health workers must practise what they preach. A doctor who smokes cannot effectively teach against smoking.', 9),
numbered('Multiple Channels: Use a combination of methods – individual counselling, group education, mass media – as different approaches reach different audience segments.', 10),
divider()
];
// Q8 – Newborn Screening Tests
const q8 = [
heading1('Q8. Newborn Screening Tests at a Community Health Centre'),
noteBox('5 Marks | List ALL newborn screening tests; include criteria for a good screening test (Wilson–Jungner criteria)'),
para('A newborn delivered at a Community Health Centre should be evaluated for a range of conditions through clinical examination and specific screening tests.'),
heading3('A. Clinical/Physical Screening at Birth'),
bullet('Apgar score at 1 and 5 minutes (Appearance, Pulse, Grimace, Activity, Respiration) – assesses immediate postnatal adaptation'),
bullet('Birth weight measurement – identify LBW (<2.5 kg)'),
bullet('Head circumference, length measurement'),
bullet('General physical examination – dysmorphic features, congenital anomalies'),
heading3('B. Metabolic Screening (Expanded Newborn Screening)'),
numbered('Congenital Hypothyroidism (CH): Most important metabolic screening test. TSH (Thyroid Stimulating Hormone) measured from heel-prick blood spot on Day 3–5. Hypothyroidism → cretinism if untreated. Easily treated with thyroxine. Target: TSH >20 mIU/L requires repeat; >40 mIU/L confirms hypothyroidism.', 1),
numbered('Phenylketonuria (PKU): Guthrie bacterial inhibition assay from heel-prick blood spot; alternatively, fluorometric assay. Elevated phenylalanine → intellectual disability if untreated. Treated with phenylalanine-restricted diet.', 2),
numbered('G6PD Deficiency: Glucose-6-phosphate dehydrogenase deficiency screening. Beutler fluorescent spot test. Common in India; causes neonatal jaundice and haemolytic anaemia on exposure to certain drugs/foods.', 3),
numbered('Congenital Adrenal Hyperplasia (CAH): 17-hydroxyprogesterone measured from heel-prick blood. Can present as salt-wasting crisis in neonates if undetected.', 4),
numbered('Galactosaemia: Galactose-1-phosphate uridyl transferase assay. Causes liver damage and intellectual disability.', 5),
heading3('C. Haematological Screening'),
numbered('Neonatal jaundice screening: Serum bilirubin; identify haemolytic disease of newborn (Rh/ABO incompatibility).', 1),
numbered('Sickle cell disease / Haemoglobinopathies: HPLC (High Performance Liquid Chromatography) or electrophoresis; important in tribal areas of India.', 2),
heading3('D. Sensory Screening'),
numbered('Newborn Hearing Screening: Otoacoustic Emissions (OAE) or Automated Auditory Brainstem Response (AABR). Mandatory before discharge in hospitals. Detects congenital hearing loss.', 1),
numbered('Red reflex test (Brückner test): Detect congenital cataract, retinoblastoma, glaucoma using ophthalmoscope.', 2),
heading3('E. Congenital Heart Disease Screening'),
bullet('Pulse oximetry screening – detect critical congenital heart disease; SpO2 <95% in both pre- and post-ductal positions is abnormal'),
heading3('F. Other Important Assessments'),
bullet('Blood glucose – rule out hypoglycaemia (especially in LBW, SGA, infants of diabetic mothers)'),
bullet('Sepsis screening – CRP, blood culture if clinical signs present'),
bullet('Vitamin K prophylaxis – 1 mg IM at birth to prevent haemorrhagic disease of newborn'),
bullet('BCG and Hepatitis B vaccination – given at birth'),
divider(), pageBreak()
];
// ═══════════════════════════════════════════════════════════════════════════
// SHORT ANSWERS
// ═══════════════════════════════════════════════════════════════════════════
const shortAnsHdr = [sectionBox('SECTION C – SHORT ANSWERS (10 × 3 = 30 Marks)')];
const q9 = [
heading1('Q9. Measures of Dispersion'),
noteBox('3 Marks | Three main measures: Range, Mean Deviation, Standard Deviation'),
para('Measures of dispersion describe the spread or variability of a set of data around its central value. The three main measures are:'),
heading3('1. Range'),
bullet('Simplest measure of dispersion'),
bullet('Defined as the difference between the highest and lowest values in a sample'),
bullet('Easy to calculate but reflects only extreme values; nothing about values in between'),
bullet('Example: BP values 71–95 mmHg → Range = 95–71 = 24 mmHg'),
heading3('2. Mean Deviation (Average Deviation)'),
bullet('Average of the deviations from the arithmetic mean'),
bullet('MD = Σ|x - x̄| / n'),
bullet('Uses absolute values; takes all data points into account'),
bullet('More informative than range but rarely used in medical statistics'),
heading3('3. Standard Deviation (SD)'),
bullet('Most widely used measure of dispersion in medical statistics'),
bullet('SD = √[Σ(x - x̄)² / (n-1)]'),
bullet('Uses squared deviations; gives weight to extreme values'),
bullet('Used to calculate confidence intervals, normal ranges and z-scores'),
bullet('In a normal distribution: Mean ±1 SD = 68.3%; ±2 SD = 95.5%; ±3 SD = 99.7% of values'),
divider()
];
const q10 = [
heading1('Q10. Sources of Health Information'),
noteBox('3 Marks | Know at least 6–8 sources from Park\'s PSM'),
para('Health information is essential for planning, monitoring and evaluating health programmes. The following are the major sources:'),
numbered('Census: Taken every 10 years; provides demographic data (age, sex, population size). First regular census in India in 1881; last in 2011. Provides denominator for computing health rates.', 1),
numbered('Registration of Vital Events: Registration of births, deaths, marriages, divorces under the Registration of Births and Deaths Act 1969. Provides mortality and fertility data.', 2),
numbered('Sample Registration System (SRS): Since mid-1960s; dual-record system with continuous enumeration + independent survey every 6 months; provides reliable birth and death rate estimates.', 3),
numbered('Notification of Diseases: Infectious diseases notified compulsorily to health authorities (e.g., cholera, plague, smallpox). Provides morbidity data.', 4),
numbered('Hospital Records / Health Facility Data: OPD/IPD registers, discharge summaries provide morbidity and treatment data.', 5),
numbered('Epidemiological Surveillance: Disease-specific surveillance systems (IDSP – Integrated Disease Surveillance Programme) monitor trends in communicable diseases.', 6),
numbered('National Health Surveys: NFHS (National Family Health Survey), DLHS (District Level Household Survey) – provide data on health indicators, fertility, nutrition.', 7),
numbered('Research Studies: Community surveys, cohort studies, case-control studies provide specific health information.', 8),
divider()
];
const q11 = [
heading1('Q11. Health Effects of Tobacco Use'),
noteBox('3 Marks | Classify effects by system; include both smoking and smokeless tobacco'),
para('Tobacco use in all forms – cigarettes, bidis, cigars, smokeless tobacco (gutkha, pan masala, khaini) – is the leading preventable cause of death globally. WHO estimates 8 million deaths/year.'),
heading3('A. Cancer'),
bullet('Lung cancer – 85% attributable to smoking; tobacco is the single most important cause'),
bullet('Oral cancer – Smokeless tobacco and pan masala; most common cancer in Indian males'),
bullet('Pharyngeal, laryngeal, oesophageal, gastric, pancreatic, bladder, cervical, renal cancers'),
bullet('Leukaemia'),
heading3('B. Cardiovascular Disease'),
bullet('Coronary heart disease (CHD) – 2–3× increased risk in smokers'),
bullet('Peripheral vascular disease – Buerger\'s disease (thromboangiitis obliterans)'),
bullet('Hypertension, stroke'),
heading3('C. Respiratory Disease'),
bullet('Chronic Obstructive Pulmonary Disease (COPD) – chronic bronchitis, emphysema'),
bullet('Recurrent chest infections, reduced lung function'),
bullet('Increased risk of pneumonia and influenza'),
heading3('D. Pregnancy and Reproductive Effects'),
bullet('Low birth weight, prematurity, spontaneous abortion'),
bullet('Sudden Infant Death Syndrome (SIDS)'),
bullet('Impotence and reduced fertility'),
heading3('E. Other Effects'),
bullet('Peptic ulcer disease – delayed healing'),
bullet('Oral submucous fibrosis, leukoplakia (from smokeless tobacco)'),
bullet('Delayed wound healing, osteoporosis'),
bullet('Passive (second-hand) smoking equally harmful'),
divider()
];
const q12 = [
heading1('Q12. Health Team Concept'),
noteBox('3 Marks | Definition, members, functions, importance'),
para('"A health team is a group of persons who share a common health goal and common objectives, determined by community members, and who work together to achieve them, each contributing in accordance with their competence and skills."'),
heading3('Background'),
bullet('Modern medicine has become a joint effort of many groups of workers – both medical and non-medical'),
bullet('Many functions of the physician can be performed by appropriately trained auxiliaries'),
bullet('WHO discontinued the term "paramedical" in favour of "allied health professionals"'),
heading3('Composition of a Health Team'),
bullet('Medical members: Physicians (MBBS), Specialists, Surgeons'),
bullet('Nursing: Nurses, ANMs (Auxiliary Nurse Midwives), Health Visitors'),
bullet('Community health workers: ASHA, Health Worker Male/Female, Health Supervisor'),
bullet('Allied health: Pharmacists, lab technicians, radiographers, physiotherapists'),
bullet('Social support: Social workers, health educators, nutritionists'),
heading3('Key Principles'),
bullet('Each team member has a specific and recognized function'),
bullet('Freedom to exercise particular skills'),
bullet('Team leader coordinates and motivates'),
bullet('Hospital team differs from community health team in composition'),
heading3('Importance'),
bullet('Achieves right "mix" of health personnel for full health coverage'),
bullet('Divides labour efficiently – reduces physician overload'),
bullet('Ensures holistic care – curative, preventive and promotive'),
bullet('Essential for Primary Health Care and Health for All strategy'),
divider()
];
const q13 = [
heading1('Q13. Problem Family'),
noteBox('3 Marks | Definition, characteristics, identification, management'),
boldLine('Definition', 'A problem family is one that is unable to manage its own affairs and maintain adequate standards of health and social functioning, without the support of outside help.'),
para('Also called a "multiproblem family" or "vulnerable family."'),
heading3('Characteristics of a Problem Family'),
bullet('Chronic poverty and unemployment'),
bullet('Overcrowding and poor housing'),
bullet('Low educational level of parents'),
bullet('Mental illness, alcoholism or drug abuse in one or more members'),
bullet('Domestic violence and marital disharmony'),
bullet('Neglect and abuse of children'),
bullet('Repeated episodes of illness in family members'),
bullet('Social isolation and poor community relations'),
bullet('Multiple chronic health problems – TB, malnutrition, anaemia'),
heading3('Identification'),
bullet('Community surveys and family health registers maintained by ASHA/ANM'),
bullet('Referral from teachers, panchayat members, neighbours'),
bullet('Repeated contact with health services'),
heading3('Management'),
bullet('Family health assessment by health team (ASHA, ANM, MO)'),
bullet('Coordinate with social welfare department, NGOs'),
bullet('Address root causes: poverty, housing, education, employment'),
bullet('Refer mental health problems to appropriate services'),
bullet('Child welfare interventions'),
bullet('Long-term follow-up and support'),
divider()
];
const q14 = [
heading1('Q14. Types of Screening'),
noteBox('3 Marks | Know all types; Wilson-Jungner criteria as bonus'),
boldLine('Definition', '"Screening is the presumptive identification of unrecognised disease or defect by the application of tests, examinations or other procedures which can be applied rapidly."'),
para('Screening is a secondary prevention measure.'),
heading3('Types of Screening'),
numbered('Mass Screening: Entire population is screened regardless of risk (e.g., universal newborn screening for hypothyroidism).', 1),
numbered('Selective (High-Risk / Targeted) Screening: Only high-risk groups screened (e.g., chest X-ray for TB contacts; mammography for women >40 years with family history).', 2),
numbered('Multiple / Multiphasic Screening: Several screening tests applied simultaneously to a population (e.g., cancer detection camps – breast, cervical, oral).', 3),
numbered('Case-finding (Opportunistic Screening): Screening done when patients present for other reasons (e.g., BP check during any clinic visit).', 4),
numbered('Periodic Health Examination (Medical Check-up): Comprehensive screening at regular intervals for apparently healthy individuals.', 5),
numbered('Prescriptive Screening: Screening to detect diseases for which effective treatment is available, to facilitate early treatment.', 6),
heading3('Wilson-Jungner Criteria for a Good Screening Test (key points)'),
bullet('The condition should be an important health problem'),
bullet('Effective treatment must be available'),
bullet('The test must be simple, safe, precise and validated'),
bullet('The test must be acceptable to the population'),
bullet('Case-finding must be a continuous process, not a once-for-all project'),
divider()
];
const q15 = [
heading1('Q15. Health Effects of Noise Pollution'),
noteBox('3 Marks | Classify as auditory and extra-auditory effects; mention permissible levels'),
boldLine('Definition', 'Noise is defined as "unwanted sound." Noise pollution is excess noise that interferes with normal activities and has adverse health effects.'),
boldLine('Permissible levels', 'WHO: <65 dB daytime; <55 dB nighttime. Occupational limit: 85 dB for 8-hour day (Factories Act, India)'),
heading3('A. Auditory Effects'),
bullet('Noise-Induced Hearing Loss (NIHL) – most important effect; irreversible at >90 dB sustained exposure'),
bullet('Acoustic trauma – sudden intense noise (explosion) causes immediate hearing loss'),
bullet('Tinnitus – ringing in ears'),
bullet('Presbyacusis – accelerated age-related hearing loss due to cumulative noise exposure'),
heading3('B. Extra-Auditory Effects'),
bullet('Cardiovascular: Hypertension, tachycardia, peripheral vasoconstriction; increased risk of ischaemic heart disease'),
bullet('Psychological: Annoyance, irritability, stress, anxiety, depression; sleep disturbance'),
bullet('Neurological: Headache, fatigue, reduced concentration and cognitive performance'),
bullet('Endocrine: Increased cortisol, adrenaline; can cause metabolic disturbances'),
bullet('Reproductive: Studies suggest exposure to high noise levels in pregnancy associated with preterm birth and LBW'),
bullet('Performance: Reduced productivity, increased accident rates in noisy workplaces'),
heading3('Control'),
bullet('Engineering controls: Noise barriers, dampers, isolation of machinery'),
bullet('Administrative controls: Rotation of workers, limited exposure time'),
bullet('Personal protection: Earplugs (25–30 dB reduction), earmuffs'),
bullet('Legislation: Factories Act, Environmental Protection Act'),
divider()
];
const q16 = [
heading1('Q16. PQLI (Physical Quality of Life Index)'),
noteBox('3 Marks | Know all 3 components, who developed it, formula'),
boldLine('Developed by', 'Morris David Morris (1979), Overseas Development Council, USA'),
boldLine('Purpose', 'A composite measure of socioeconomic development and quality of life; an alternative to GNP per capita'),
heading3('Three Components of PQLI'),
numbered('Infant Mortality Rate (IMR): Scaled from 0–100; best performance (IMR = 7) scored 100; worst performance (IMR = 229) scored 1.', 1),
numbered('Life Expectancy at Age One (LE1): Scaled from 0–100; best performance (LE1 = 77 years) scored 100; worst (LE1 = 38 years) scored 1.', 2),
numbered('Basic Literacy Rate: Percentage of population aged 15+ years who can read and write. Scaled from 0–100.', 3),
heading3('Calculation'),
para('PQLI = (IMR index + LE1 index + Literacy index) ÷ 3'),
para('Range: 0 (worst) to 100 (best)'),
heading3('Advantages'),
bullet('Simple to calculate'),
bullet('Measures welfare of the most vulnerable (IMR, LE1 reflect infant/child conditions)'),
bullet('Covers multiple dimensions – health, longevity, education'),
bullet('Can be disaggregated by sex, region, class'),
heading3('Disadvantages/Limitations'),
bullet('Does not capture all dimensions of quality of life (e.g., environmental quality, freedom, nutrition)'),
bullet('Superseded by the Human Development Index (HDI) which uses GDP, education years and life expectancy at birth'),
divider()
];
const q17 = [
heading1('Q17. Uses of Growth Charts'),
noteBox('3 Marks | Know the Road-to-Health card and Indian Academy of Pediatrics (IAP) growth charts'),
para('A growth chart is a graphical representation of a child\'s weight (or height) plotted against age over time. It is a low-cost, practical tool for monitoring child health.'),
heading3('Uses of Growth Charts'),
numbered('Monitoring Growth: Enables regular assessment of whether a child is growing normally. Identifies growth faltering (slowing/flattening of weight gain) before frank malnutrition develops.', 1),
numbered('Early Detection of Malnutrition: Children who fall below the 3rd percentile (or WHO z-score ≤ -2 SD) are identified as underweight/stunted/wasted early, enabling timely intervention.', 2),
numbered('Identifying "At-Risk" Children: Children whose weight curve flattens or dips are "at risk" – targeted for nutritional supplementation and medical care before they become severely malnourished.', 3),
numbered('Immunization Reminder: Road-to-Health card (used in India) incorporates immunization schedule – the chart also serves as a vaccination record and reminder.', 4),
numbered('Health Education Tool: Displayed to mothers during visits, growth charts are used to explain the concept of growth, the importance of feeding practices, and to motivate positive behaviour change.', 5),
numbered('Epidemiological Tool: Community-level data from growth charts identify areas with high malnutrition prevalence for targeted programmes (ICDS, mid-day meal).', 6),
numbered('Evaluation of Interventions: Before-and-after comparison of weight curves in a community evaluates impact of nutritional programmes.', 7),
bullet('Used in ICDS Anganwadi centres, PHCs and hospitals in India'),
bullet('WHO Multicentre Growth Reference Study (2006) charts are now the global standard'),
divider()
];
const q18 = [
heading1('Q18. Types of Genetic Counselling'),
noteBox('3 Marks | Know definition, who is counselled, types and when each is done'),
boldLine('Definition', '"Genetic counselling is a communication process that deals with human problems associated with the occurrence, or risk of occurrence, of a genetic disorder in a family."'),
para('It helps individuals/families understand and adapt to medical, psychological and familial implications of genetic contributions to disease.'),
heading3('Types of Genetic Counselling'),
numbered('Prospective Genetic Counselling: Given BEFORE pregnancy to couples at risk of having children with genetic disorders. Includes carrier testing for autosomal recessive disorders (e.g., sickle cell disease, thalassaemia, PKU). Common in consanguineous marriages or families with history of genetic disease. Prevents birth of affected children.', 1),
numbered('Retrospective Genetic Counselling: Given AFTER birth of an affected child. Counsels parents on risk of recurrence in future pregnancies. Helps parents understand the diagnosis and prognosis. Guides decisions about future pregnancies.', 2),
numbered('Prenatal Genetic Counselling: Offered during pregnancy when risk of chromosomal/genetic abnormality exists. Involves offering prenatal diagnostic tests: amniocentesis (15–18 weeks), chorionic villus sampling (CVS, 10–12 weeks), fetal blood sampling. For: advanced maternal age >35 years, previous child with Down syndrome, balanced chromosomal translocations.', 3),
numbered('Neonatal Genetic Counselling: When a newborn is identified as having a genetic disorder (through screening or clinical diagnosis). Counsels parents about diagnosis, treatment and long-term implications.', 4),
heading3('Key Principles of Genetic Counselling'),
bullet('Non-directiveness – counsellor provides information; decision rests with the individual/couple'),
bullet('Confidentiality of genetic information'),
bullet('Informed consent for all tests'),
bullet('Psychological support throughout'),
divider()
];
const lastPage = [
new Paragraph({ spacing: { before: 600 }, children: [] }),
divider(),
new Paragraph({ alignment: AlignmentType.CENTER, spacing: { before: 200, after: 80 }, children: [new TextRun({ text: "Reference: Park's Textbook of Preventive and Social Medicine, 26th Edition", italic: true, size: 18, color: '404040' })] }),
new Paragraph({ alignment: AlignmentType.CENTER, spacing: { before: 0, after: 80 }, children: [new TextRun({ text: 'K. Park | Bhanot Publishers, Jabalpur', italic: true, size: 18, color: '404040' })] }),
new Paragraph({ alignment: AlignmentType.CENTER, spacing: { before: 0 }, children: [new TextRun({ text: 'Best of luck for your exam! 🍀', bold: true, size: 24, color: '70AD47' })] })
];
// ─── Assemble ─────────────────────────────────────────────────────────────
const doc = new Document({
creator: 'Orris AI',
title: 'Community Medicine – CBME March 2025 Answer Key',
styles: { default: { document: { run: { font: 'Calibri', size: 20 } } } },
sections: [{
properties: { page: { margin: { top: 1080, bottom: 1080, left: 1080, right: 1080 } } },
headers: {
default: new Header({
children: [new Paragraph({
border: { bottom: { style: BorderStyle.SINGLE, size: 6, color: '2E75B6' } },
children: [new TextRun({ text: "III MBBS – Community Medicine | CBME March 2025 | Answer Key (Park's PSM)", size: 16, color: '2E75B6', italics: true })]
})]
})
},
footers: {
default: new Footer({
children: [new Paragraph({
border: { top: { style: BorderStyle.SINGLE, size: 6, color: 'AAAAAA' } },
alignment: AlignmentType.CENTER,
children: [
new TextRun({ text: 'Page ', size: 16, color: '888888' }),
new TextRun({ children: [PageNumber.CURRENT], size: 16, color: '888888' }),
new TextRun({ text: ' of ', size: 16, color: '888888' }),
new TextRun({ children: [PageNumber.TOTAL_PAGES], size: 16, color: '888888' }),
]
})]
})
},
children: [
...coverPage,
...q1, ...q2,
...shortEssayHdr,
...q3, ...q4, ...q5, ...q6, ...q7, ...q8,
...shortAnsHdr,
...q9, ...q10, ...q11, ...q12, ...q13, ...q14, ...q15, ...q16, ...q17, ...q18,
...lastPage
]
}]
});
Packer.toBuffer(doc).then(buffer => {
fs.writeFileSync('/home/daytona/workspace/community-medicine-answers/CommunityMedicine_CBME_March2025_Answers.docx', buffer);
console.log('Done!');
});
cd /home/daytona/workspace/community-medicine-answers && node build_march2025.js…
python3 -c " import zipfile z = zipfile.ZipFile('/home/daytona/workspace/communi…
CommunityMedicine CBME March2025 Answers
Word Document · DOCX
| PPE | Purpose |
|---|---|
| Hard hat + wide-brimmed hat | Head/sun protection |
| Goggles / face shield | Pesticide splashes, dust |
| N95 / organic vapour respirator | Dust, hay mould, pesticide sprays |
| Chemical-resistant coveralls | Skin pesticide absorption |
| Nitrile/rubber gloves | Pesticide contact |
| Rubber gumboots | Leptospirosis, snake bites, spills |
| Earplugs/earmuffs | Noise-induced hearing loss (>85 dB) |
| UV-blocking clothing + sunscreen | Skin cancer prevention |
| Cohort | Disease: Yes | Disease: No | Total |
|---|---|---|---|
| Exposed | a | b | a+b |
| Not exposed | c | d | c+d |
| Food | Adulterant | Health Effect |
|---|---|---|
| Mustard seeds/oil | Argemone seeds/oil | Epidemic dropsy, glaucoma |
| Chilli powder | Brick powder, sawdust | GI damage |
| Turmeric (Haldi) | Lead chromate | Lead poisoning |
| Dals (pulses) | Khesari dal | Lathyrism (spastic paralysis) |
| Ghee | Vanaspati | Cardiovascular disease |
| Milk | Water, starch, urea | Nutritional deficiency |
| Edible oils | Mineral oils | Liver damage, cancer |
Reference: Park's Textbook of Preventive and Social Medicine, 26th Edition - K. Park, Bhanot Publishers
Components of RCH program
Referring k park textbook
"People have the ability to reproduce and regulate their fertility; women are able to go through pregnancy and childbirth safely; the outcome of pregnancies is successful in terms of maternal and infant survival and well-being; and couples are able to have sexual relations free of fear of pregnancy and of contracting disease."
| Component | Key Services |
|---|---|
| Essential Obstetric Care | ANC, safe delivery, PNC |
| Emergency Obstetric Care | FRUs, referral transport |
| MTP | Safe abortion under MTP Act 1971 |
| RTI/STD Control | Clinics at district level; linked to NACO |
| Immunization (UIP) | All vaccine-preventable diseases |
| Diarrhoeal Disease Control | Low osmolarity ORS + Zinc |
| ARI Control | Case management; cotrimoxazole |
| Vitamin A Supplementation | All children <5 years |
| Anaemia Control | IFA for children and mothers |
| Adolescent Health | Reproductive hygiene education |
| Family Planning | Contraceptives, IUD, sterilisation |
| IEC | Community participation, awareness |
Reference: Park's Textbook of Preventive and Social Medicine, 26th Edition — K. Park, Bhanot Publishers, p. 512 onwards (Chapter on Family Welfare Programme)
Phases??
| Year | Programme |
|---|---|
| 1985 | Universal Immunization Programme (UIP) |
| 1992 | Child Survival and Safe Motherhood (CSSM) Programme; UIP merged into it |
| 1997 | RCH Phase I launched (15th October 1997) |
| 2005 | RCH Phase II launched (1st April 2005) |
| 2005 | National Rural Health Mission (NRHM) – RCH embedded within it |
| Feature | RCH Phase I (1997–2004) | RCH Phase II (2005 onwards) |
|---|---|---|
| Launch date | 15 October 1997 | 1 April 2005 |
| Funding | World Bank + GoI | GoI under NRHM |
| Approach | Differential (3 district categories) | Universal + focused on weak states (EAG) |
| Target Free Approach | Introduced | Continued and strengthened |
| Key addition | RTI/STD component | FRU operationalisation; Skilled birth attendance; JSY |
| Delivery services | Round-the-clock at some PHCs | 50% PHCs + all CHCs as 24-hr delivery centres |
| Community workers | Health Workers | ASHA introduced |
| Newborn care | Basic | NSSK; IMNCI expanded |
| Referral | Panchayat-based | SHGs/NGOs/outsourced (state-specific) |
Reference: Park's Textbook of Preventive and Social Medicine, 26th Edition — K. Park, Bhanot Publishers, pp. 511–515 (Chapter: Family Welfare Programme)
Referring park textbook
| Category | Examples | Failure Rate |
|---|---|---|
| Barrier | Condom, diaphragm | 2–15% |
| IUD (Cu-T) | Cu-T 380A | <1% |
| COCP | Mala-N, Mala-D | <1% |
| Injectable | DMPA | <1% |
| Sterilisation | Tubectomy, vasectomy | <0.5% |
| Colour | Priority | Condition | Action |
|---|---|---|---|
| Red | Priority 1 (Immediate) | Life-threatening but salvageable (airway obstruction, severe haemorrhage) | Treat immediately |
| Yellow | Priority 2 (Delayed) | Serious but can wait hours (fractures, burns <30%) | Treat after red |
| Green | Priority 3 (Minor) | "Walking wounded" – minor injuries | Treat last |
| Black | Priority 4 (Expectant) | Dead or unsurvivable injuries | Palliate only |
Reference: Park's Textbook of Preventive and Social Medicine, 26th Edition — K. Park, Bhanot PublishersExam tips: Q1 (Dengue DHF) – write the 3 phases + WHO grading diagram; Q2 – draw a classification tree for contraceptives. All short answers need 8–10 points. Best of luck! 🍀
Referring k park textbook
| Category | Risk Factors |
|---|---|
| Host (Human) | Speed, drunk driving, distracted driving, fatigue, young/inexperienced drivers |
| Agent (Vehicle) | Faulty brakes, worn tyres, overloading, no safety features |
| Environment (Road) | Poor road design, no pavements, poor lighting, sharp curves |
"The number of deaths of infants (under 1 year of age) per 1000 live births in a given year in a given area."
| Category | Colour Code | Examples |
|---|---|---|
| Infectious/Pathological | Yellow | Anatomical waste, pathological samples, expired medicines |
| Contaminated recyclables | Red | IV tubes, gloves, catheters, soiled plastic |
| Sharps | White/Translucent | Needles, syringes, blades |
| Glassware | Blue | Glass vials, ampoules |
| Chemical/Cytotoxic | Black | Cytotoxic drugs, chemicals |
| Step | Proportion | Description |
|---|---|---|
| All hypertensives in community | 100% | Total burden of disease |
| Known (diagnosed) | ½ = 50% | Half are unaware of their hypertension |
| Of those known, on treatment | ½ of 50% = 25% | Half of diagnosed are not on treatment |
| Of those on treatment, controlled | ½ of 25% = 12.5% | Only half on treatment achieve adequate control |
| Type | Drugs | Duration |
|---|---|---|
| PB Leprosy (Adult) | Dapsone 100 mg daily + Rifampicin 600 mg monthly (supervised) | 6 months |
| MB Leprosy (Adult) | Dapsone 100 mg daily + Clofazimine 50 mg daily + Rifampicin 600 mg monthly + Clofazimine 300 mg monthly (supervised) | 12 months |
| Single Lesion PB (Adult) | Single dose: Rifampicin 600 mg + Ofloxacin 400 mg + Minocycline 100 mg (ROM therapy) | Single dose |
Reference: Park's Textbook of Preventive and Social Medicine, 26th Edition - K. Park, Bhanot Publishers
Referring k park textbook
EPIDEMIOLOGICAL STUDIES
├── OBSERVATIONAL STUDIES (no intervention)
│ ├── Descriptive Studies
│ │ ├── Case Reports / Case Series
│ │ ├── Cross-sectional (Prevalence) Study
│ │ └── Ecological (Correlational) Study
│ └── Analytical Studies
│ ├── Case-Control Study (retrospective)
│ └── Cohort Study (prospective/retrospective)
└── EXPERIMENTAL / INTERVENTIONAL STUDIES
├── Randomised Controlled Trial (RCT) – in patients
├── Field Trial – in healthy persons
└── Community Trial – in communities
| Type | Who is blinded | Purpose |
|---|---|---|
| Single-blind | Participant only | Prevents placebo effect / nocebo effect |
| Double-blind | Participant + Investigator/assessor | Prevents both performance bias and detection bias |
| Triple-blind | Participant + Investigator + Data analyst/statistician | Prevents analysis bias |
| Open-label (unblinded) | Nobody blinded | Acceptable when blinding is not feasible (e.g., surgery vs. medical treatment) |
METHODS IN HEALTH COMMUNICATION
├── 1. INDIVIDUAL APPROACH
│ ├── Personal interviews (Doctor-patient consultation)
│ ├── Home visits by ANM/health worker
│ └── Counselling sessions
│
├── 2. GROUP APPROACH
│ ├── Lectures / Talks
│ ├── Group discussions (6-12 members)
│ ├── Demonstrations (how-to procedures)
│ ├── Symposia, workshops, seminars
│ ├── Drama / role play
│ └── Village meetings / Gram Sabha
│
└── 3. MASS APPROACH
├── Print Media: Pamphlets, posters, leaflets, booklets, newspapers
├── Electronic/Broadcast Media: Radio, Television, Cinema
├── New/Social Media: Internet, SMS, social media apps
└── Traditional/Folk Media: Street theatre (Nukkad Natak), puppetry, folk songs
| Approach | Reach | Feedback | Cost | Effectiveness |
|---|---|---|---|---|
| Individual | Limited (1 person) | Immediate, two-way | High per person | Highest for behaviour change |
| Group | Moderate (6–50) | Two-way | Moderate | High (participatory) |
| Mass | Millions | One-way (mostly) | Low per person | Good for awareness |
| Type | Description | Examples |
|---|---|---|
| Vaccine product-related | Due to inherent properties of the vaccine | BCG lymphadenitis, OPV-related polio (VAPP) |
| Vaccine quality defect-related | Due to defect in manufacturing | Contaminated batch |
| Immunisation error-related (Programmatic) | Due to improper preparation/handling/administration | Abscess due to non-sterile injection; wrong dose/route |
| Immunisation anxiety-related | Due to anxiety about immunization, not vaccine itself | Vasovagal syncope after injection |
| Coincidental | Not related to vaccine; temporal association only | Febrile convulsion due to unrelated URTI |
| Vaccine | AEFI |
|---|---|
| BCG | Local ulcer, suppurative lymphadenitis, BCG-osis (in immunocompromised) |
| OPV | VAPP (Vaccine-Associated Paralytic Poliomyelitis) - 1 in 7.5 lakh doses |
| DPT/Pentavalent | Local pain, fever, febrile convulsions; rare: anaphylaxis |
| Measles/MMR | Fever, rash (5–12 days post-vaccination); rare: febrile seizures |
| Hepatitis B | Local pain; rare: anaphylaxis |
| Yellow Fever | Post-vaccination encephalitis (rare); Yellow fever vaccine-associated viscerotropic disease (YEL-AVD) |
| Feature | ISOLATION | QUARANTINE |
|---|---|---|
| Applied to | Known cases (confirmed infected persons) | Contacts/Exposed persons (not yet ill) |
| Health status | Person IS infected/diseased | Person may or may not develop disease |
| Duration | Until no longer infectious (communicable period) | Length of maximum incubation period of the disease |
| Legal basis | Under Epidemic Diseases Act / state public health laws | Under Epidemic Diseases Act / IHR (International Health Regulations) |
| Purpose | Prevent spread from infected person to others | Prevent spread from potentially incubating cases |
| Voluntary/Compulsory | Can be compulsory | Can be compulsory |
| Feature | SCREENING TEST | DIAGNOSTIC TEST |
|---|---|---|
| Purpose | Identify suspected cases (presumptive identification) | Confirm or rule out disease |
| Population | Applied to apparently healthy asymptomatic population | Applied to symptomatic patients or screen-positive persons |
| Sensitivity vs Specificity | High sensitivity (catch all true cases; minimize false negatives) | High specificity (confirm true cases; minimize false positives) |
| Cost | Inexpensive, low-cost | More expensive, complex |
| Speed | Rapid, quick | Takes more time |
| Invasiveness | Non-invasive or minimally invasive | May be invasive |
| Result action | Positive result → refer for diagnostic test | Positive result → start treatment |
| Example | Mantoux test (for TB), PAP smear (for cervical cancer), BP measurement (for hypertension) | Sputum culture + sensitivity (for TB), Colposcopy + biopsy (for cervical cancer) |
| False positives | Acceptable (high sensitivity priority) | Not acceptable (specificity priority) |
| Disease | Dust | Industry |
|---|---|---|
| Silicosis | Free crystalline silica (SiO₂) | Mining, quarrying, sandblasting, pottery |
| Coal Workers' Pneumoconiosis | Coal dust | Coal mining |
| Asbestosis | Asbestos fibres | Shipbuilding, construction, insulation |
| Siderosis | Iron oxide | Welding, iron foundries |
| Byssinosis | Cotton/flax/hemp dust | Textile industry |
| Stannosis | Tin oxide | Tin mining |
| Disease | Dust/Antigen | Occupation |
|---|---|---|
| Bagassosis | Bagasse (sugar cane residue) - mouldy | Sugar mills |
| Farmer's Lung | Mouldy hay (Micropolyspora faeni) | Farming |
| Bird Fancier's Lung | Bird droppings/feathers | Poultry workers |
| Mushroom Worker's Lung | Mushroom spores | Mushroom cultivation |
| Malt Worker's Lung | Aspergillus clavatus in malt | Brewing industry |
| Type | Source | Duration | Examples |
|---|---|---|---|
| Natural passive | Maternal antibodies via placenta (IgG) or breast milk (IgA) | 3–6 months | Mother's IgG protects newborn against measles, diphtheria, tetanus |
| Artificial passive | Exogenous antibodies (immunoglobulins/antisera) given therapeutically | 3–4 weeks (short) | ATS, HBIG, rabies immunoglobulin |
| Nutrient | Ragi (Finger millet) | Bajra (Pearl millet) | Note |
|---|---|---|---|
| Calcium | 344 mg/100g | 42 mg/100g | Ragi = highest plant Ca source |
| Iron | 3.9 mg | 8 mg | Higher than rice/wheat |
| Protein | 7.3 g | 11.6 g | Comparable to cereals |
| Fibre | 3.6 g | 1.3 g | High dietary fibre |
| Energy | 328 kcal | 361 kcal | Good energy density |
| Micronutrient | Consequence |
|---|---|
| Iron | Anaemia → fatigue, reduced work capacity, poor pregnancy outcomes |
| Iodine | Goitre, hypothyroidism, cretinism, intellectual disability |
| Vitamin A | Night blindness, xerophthalmia, increased infection susceptibility |
| Zinc | Stunting, impaired immunity, increased diarrhoea/pneumonia |
| Folate | Neural tube defects in newborns (spina bifida, anencephaly) |
| Vitamin D | Rickets, osteomalacia |
| Calcium | Poor bone density, rickets |
FAECES (Source of pathogens)
|
__________|__________
| | |
FLIES FIELDS FLUIDS
| (Fingers) |
| | |
|______FOOD___________|
|
FINGERS
|
[SANITATION BARRIER]
┌────────────────────────────────────┐
│ • Sanitary latrines (break F1) │
│ • Safe water supply (break F4) │
│ • Hand washing (break F3,F5) │
│ • Food hygiene (break F2,F4) │
│ • Fly control (break F2) │
└────────────────────────────────────┘
|
MOUTH
(HUMAN HOST)
| Range | Area (% of values included) |
|---|---|
| Mean ± 1 SD (x̄ ± 1σ) | 68.27% (~68%) |
| Mean ± 2 SD (x̄ ± 2σ) | 95.45% (~95%) |
| Mean ± 3 SD (x̄ ± 3σ) | 99.73% (~99.7%) |
Reference: Park's Textbook of Preventive and Social Medicine, 26th Edition - K. Park, Bhanot Publishers