Dsssb previously 10 years Optometrist question & answer paper notes hindi to English translation pdf download
DSSSB Optometrist previous 10 years question paper Hindi English PDF download
| Section | Topics |
|---|---|
| Optics & Refraction | Lenses, prisms, accommodation, refractive errors |
| Ocular Anatomy | Cornea, lens, retina, aqueous humor, vitreous |
| Diseases | Glaucoma, diabetic retinopathy, cataract, AMD |
| Instruments | Slit lamp, retinoscope, tonometer, keratometer |
| General Aptitude | Reasoning, Maths, Hindi, English, GK |
Section Topics Optics & Refraction Lenses, prisms, accommodation, refractive errors Ocular Anatomy Cornea, lens, retina, aqueous humor, vitreous Diseases Glaucoma, diabetic retinopathy, cataract, AMD Instruments Slit lamp, retinoscope, tonometer, keratometer General Aptitude Reasoning, Maths, Hindi, English, GK
ls -la /home/daytona/workspace/ 2>/dev/null || echo "workspace not found"
mkdir -p /home/daytona/workspace/dsssb-optometrist && echo "Directory created"
~/dsssb-optometrist/generate_pdf.py
from reportlab.lib.pagesizes import A4
from reportlab.lib import colors
from reportlab.lib.styles import getSampleStyleSheet, ParagraphStyle
from reportlab.lib.units import cm
from reportlab.platypus import SimpleDocTemplate, Paragraph, Spacer, Table, TableStyle, HRFlowable
from reportlab.pdfbase import pdfmetrics
from reportlab.pdfbase.ttfonts import TTFont
from reportlab.lib.enums import TA_LEFT, TA_CENTER
import os
# Register a Unicode font that supports Devanagari (Hindi)
# Try system fonts first
font_paths = [
"/usr/share/fonts/truetype/noto/NotoSansDevanagari-Regular.ttf",
"/usr/share/fonts/truetype/noto/NotoSans-Regular.ttf",
"/usr/share/fonts/truetype/dejavu/DejaVuSans.ttf",
"/usr/share/fonts/truetype/freefont/FreeSans.ttf",
]
bold_font_paths = [
"/usr/share/fonts/truetype/noto/NotoSansDevanagari-Bold.ttf",
"/usr/share/fonts/truetype/noto/NotoSans-Bold.ttf",
"/usr/share/fonts/truetype/dejavu/DejaVuSans-Bold.ttf",
"/usr/share/fonts/truetype/freefont/FreeSansBold.ttf",
]
reg_font = None
bold_font = None
for fp in font_paths:
if os.path.exists(fp):
pdfmetrics.registerFont(TTFont("Hindi", fp))
reg_font = "Hindi"
break
for fp in bold_font_paths:
if os.path.exists(fp):
pdfmetrics.registerFont(TTFont("HindiBold", fp))
bold_font = "HindiBold"
break
if not reg_font:
reg_font = "Helvetica"
if not bold_font:
bold_font = "Helvetica-Bold"
print(f"Using fonts: {reg_font}, {bold_font}")
OUTPUT = "/home/daytona/workspace/dsssb-optometrist/DSSSB_Optometrist_PYQ_Hindi_English.pdf"
doc = SimpleDocTemplate(
OUTPUT,
pagesize=A4,
leftMargin=1.5*cm, rightMargin=1.5*cm,
topMargin=1.8*cm, bottomMargin=1.8*cm
)
W, H = A4
# ── Styles ──────────────────────────────────────────────────────────────────
styles = getSampleStyleSheet()
title_style = ParagraphStyle("title_style", fontName=bold_font, fontSize=15,
textColor=colors.HexColor("#1a237e"), alignment=TA_CENTER, spaceAfter=4)
subtitle_style = ParagraphStyle("subtitle_style", fontName=reg_font, fontSize=10,
textColor=colors.HexColor("#37474f"), alignment=TA_CENTER, spaceAfter=2)
section_style = ParagraphStyle("section_style", fontName=bold_font, fontSize=12,
textColor=colors.white, alignment=TA_LEFT, spaceAfter=4, spaceBefore=10)
q_en_style = ParagraphStyle("q_en", fontName=bold_font, fontSize=9.5,
textColor=colors.HexColor("#0d47a1"), leading=14, spaceAfter=1)
q_hi_style = ParagraphStyle("q_hi", fontName=reg_font, fontSize=9,
textColor=colors.HexColor("#37474f"), leading=13, spaceAfter=3)
opt_style = ParagraphStyle("opt", fontName=reg_font, fontSize=9,
textColor=colors.HexColor("#212121"), leading=13, leftIndent=12)
ans_style = ParagraphStyle("ans", fontName=bold_font, fontSize=9,
textColor=colors.HexColor("#1b5e20"), leading=13, spaceAfter=6)
story = []
# ── Cover ────────────────────────────────────────────────────────────────────
story.append(Spacer(1, 1*cm))
story.append(Paragraph("DSSSB OPTOMETRIST EXAM", title_style))
story.append(Paragraph("Previous Year Questions & Answers", title_style))
story.append(Paragraph("(Hindi + English | Bilingual | Topic-wise)", subtitle_style))
story.append(Spacer(1, 0.3*cm))
story.append(HRFlowable(width="100%", thickness=2, color=colors.HexColor("#1a237e")))
story.append(Spacer(1, 0.2*cm))
story.append(Paragraph(
"Covering: Optics & Refraction | Ocular Anatomy | Eye Diseases | Instruments | General Aptitude",
subtitle_style))
story.append(Spacer(1, 0.4*cm))
# ── Helper: section banner ────────────────────────────────────────────────────
def section_banner(en_title, hi_title, color_hex):
data = [[Paragraph(f"<b>{en_title}</b>", ParagraphStyle("sb", fontName=bold_font,
fontSize=11, textColor=colors.white)),
Paragraph(f"<b>{hi_title}</b>", ParagraphStyle("sb2", fontName=reg_font,
fontSize=10, textColor=colors.HexColor("#ffe082")))]]
t = Table(data, colWidths=[(W-3*cm)*0.6, (W-3*cm)*0.4])
t.setStyle(TableStyle([
("BACKGROUND", (0,0), (-1,-1), colors.HexColor(color_hex)),
("VALIGN", (0,0), (-1,-1), "MIDDLE"),
("LEFTPADDING", (0,0), (-1,-1), 8),
("TOPPADDING", (0,0), (-1,-1), 6),
("BOTTOMPADDING", (0,0), (-1,-1), 6),
("ROUNDEDCORNERS", [4,4,4,4]),
]))
return t
# ── Helper: add Q&A ──────────────────────────────────────────────────────────
def add_qa(story, num, en_q, hi_q, options, correct_letter, explanation=""):
"""Add a bilingual MCQ to the story."""
# Background alternating
story.append(Paragraph(f"Q{num}. {en_q}", q_en_style))
story.append(Paragraph(f" {hi_q}", q_hi_style))
for opt in options:
story.append(Paragraph(opt, opt_style))
ans_text = f"✓ Answer: ({correct_letter})"
if explanation:
ans_text += f" — {explanation}"
story.append(Paragraph(ans_text, ans_style))
story.append(HRFlowable(width="100%", thickness=0.5, color=colors.HexColor("#e0e0e0")))
story.append(Spacer(1, 0.15*cm))
# ════════════════════════════════════════════════════════════════════════════
# SECTION 1 — OPTICS & REFRACTION
# ════════════════════════════════════════════════════════════════════════════
story.append(section_banner("SECTION 1: OPTICS & REFRACTION",
"अनुभाग 1: प्रकाशिकी और अपवर्तन", "#1565c0"))
story.append(Spacer(1, 0.2*cm))
qa_optics = [
(1,
"The far point of a myopic eye is 25 cm. What is the power of the corrective lens required?",
"एक निकटदृष्टि दोष वाली आँख का दूर बिंदु 25 cm है। सुधारात्मक लेंस की शक्ति क्या होगी?",
["(A) +4 D", "(B) −4 D", "(C) +2 D", "(D) −2 D"],
"B", "P = 1/f = 1/(−0.25) = −4 D (concave/diverging lens)"),
(2,
"The power of a thin convex lens of focal length 20 cm is:",
"20 cm फोकस दूरी वाले उत्तल लेंस की शक्ति है:",
["(A) 5 D", "(B) 0.05 D", "(C) 20 D", "(D) 2 D"],
"A", "P = 100/f(cm) = 100/20 = 5 D"),
(3,
"Snell's law of refraction states: n1 sin θ1 =",
"स्नेल के अपवर्तन के नियम के अनुसार: n1 sin θ1 =",
["(A) n2 cos θ2", "(B) n2 sin θ2", "(C) n1 cos θ1", "(D) n2 tan θ2"],
"B", "Snell's law: n1 sin θ1 = n2 sin θ2"),
(4,
"A prism deviates light towards its:",
"प्रिज्म प्रकाश को किस दिशा में विचलित करता है?",
["(A) Apex (शीर्ष)", "(B) Base (आधार)", "(C) No deviation", "(D) Both sides"],
"B", "Light is always deviated towards the base of the prism"),
(5,
"In hypermetropia (far-sightedness), the image is formed:",
"दूरदृष्टि दोष में प्रतिबिम्ब कहाँ बनता है?",
["(A) In front of retina", "(B) Behind the retina (रेटिना के पीछे)", "(C) On the retina", "(D) On the cornea"],
"B", "Hypermetropia — parallel rays focus behind retina; corrected with convex (+) lens"),
(6,
"The refractive index of cornea is approximately:",
"कॉर्निया का अपवर्तनांक लगभग कितना होता है?",
["(A) 1.000", "(B) 1.336", "(C) 1.376", "(D) 1.523"],
"C", "Cornea RI ≈ 1.376"),
(7,
"Astigmatism is corrected by:",
"दृष्टिवैषम्य (Astigmatism) को किससे ठीक किया जाता है?",
["(A) Spherical lens", "(B) Prism", "(C) Cylindrical lens (बेलनाकार लेंस)", "(D) Bifocal lens"],
"C", "Cylindrical (toric) lens corrects astigmatism"),
(8,
"The unit of prismatic power is:",
"प्रिज्मीय शक्ति की इकाई है:",
["(A) Diopter (D)", "(B) Prism Diopter (Δ)", "(C) Meter (m)", "(D) Candela"],
"B", "Prismatic power is measured in Prism Diopters (Δ)"),
(9,
"Which lens is used to correct presbyopia?",
"जरादूरदृष्टि (Presbyopia) को ठीक करने के लिए कौन सा लेंस प्रयोग होता है?",
["(A) Concave lens", "(B) Cylindrical lens", "(C) Bifocal/Progressive lens (बाइफोकल)", "(D) Plano lens"],
"C", "Presbyopia — loss of accommodation with age; corrected by bifocal/progressive lenses"),
(10,
"The total refractive power of the normal human eye is approximately:",
"सामान्य मानव नेत्र की कुल अपवर्तन शक्ति लगभग कितनी है?",
["(A) 20 D", "(B) 40 D", "(C) 60 D", "(D) 80 D"],
"C", "Total eye power ≈ 60 D (cornea ~43 D + lens ~17 D)"),
]
for q in qa_optics:
add_qa(story, *q)
# ════════════════════════════════════════════════════════════════════════════
# SECTION 2 — OCULAR ANATOMY
# ════════════════════════════════════════════════════════════════════════════
story.append(section_banner("SECTION 2: OCULAR ANATOMY",
"अनुभाग 2: नेत्र शारीरिकी", "#6a1b9a"))
story.append(Spacer(1, 0.2*cm))
qa_anatomy = [
(11,
"The transparent anterior part of the eye is called:",
"आँख का पारदर्शी अग्र भाग क्या कहलाता है?",
["(A) Sclera (श्वेतपटल)", "(B) Cornea (कॉर्निया)", "(C) Iris (आइरिस)", "(D) Choroid"],
"B", "Cornea is the clear front part of the eye"),
(12,
"Aqueous humor is produced by:",
"जलीय द्रव (Aqueous humor) किसके द्वारा उत्पन्न होता है?",
["(A) Iris", "(B) Ciliary body (सिलियरी बॉडी)", "(C) Lens", "(D) Vitreous body"],
"B", "Ciliary body (non-pigmented epithelium) secretes aqueous humor"),
(13,
"The fovea centralis is located in the:",
"फोविया सेन्ट्रेलिस कहाँ स्थित होती है?",
["(A) Cornea", "(B) Iris", "(C) Macula (मैक्युला)", "(D) Optic disc"],
"C", "Fovea is the central pit within the macula — area of sharpest vision"),
(14,
"The vitreous humor occupies:",
"विट्रियस ह्यूमर (काँचाभ द्रव) कहाँ पाया जाता है?",
["(A) Anterior chamber", "(B) Posterior chamber", "(C) Vitreous chamber (विट्रियस चेम्बर)", "(D) Subretinal space"],
"C", "Vitreous humor fills the vitreous (posterior) chamber behind the lens"),
(15,
"Which layer of the retina contains photoreceptors (rods and cones)?",
"रेटिना की किस परत में फोटोरिसेप्टर (रॉड और कोन) होते हैं?",
["(A) Nerve fiber layer", "(B) Ganglion cell layer", "(C) Outer nuclear layer (बाहरी न्यूक्लियर परत)", "(D) Inner plexiform layer"],
"C", "Rods and cones cell bodies lie in the outer nuclear layer"),
(16,
"The optic disc (blind spot) is devoid of:",
"ऑप्टिक डिस्क (ब्लाइंड स्पॉट) में क्या अनुपस्थित होता है?",
["(A) Blood vessels", "(B) Nerve fibers", "(C) Photoreceptors (फोटोरिसेप्टर)", "(D) Retinal pigment"],
"C", "Optic disc has no photoreceptors — hence the physiological blind spot"),
(17,
"The iris controls the size of the:",
"आइरिस किसका आकार नियंत्रित करती है?",
["(A) Lens", "(B) Pupil (पुतली)", "(C) Cornea", "(D) Retina"],
"B", "Iris dilator and sphincter muscles control pupil diameter"),
(18,
"The canal of Schlemm is associated with drainage of:",
"श्लेम की नलिका किसके निकासी से संबंधित है?",
["(A) Vitreous humor", "(B) Tears (आँसू)", "(C) Aqueous humor (जलीय द्रव)", "(D) Blood"],
"C", "Aqueous drains through trabecular meshwork → Canal of Schlemm"),
(19,
"The lens of the eye is held in place by:",
"आँख का लेंस किसके द्वारा अपनी जगह टिका रहता है?",
["(A) Cornea", "(B) Zonular fibers / Suspensory ligament (जोन्यूलर तंतु)", "(C) Vitreous humor", "(D) Retina"],
"B", "Zonules of Zinn (suspensory ligament) attach the lens to the ciliary body"),
(20,
"Rods are responsible for:",
"रॉड्स किसके लिए जिम्मेदार होते हैं?",
["(A) Color vision (रंग दृष्टि)", "(B) Day vision", "(C) Night/dim light vision (रात्रि दृष्टि)", "(D) Central vision"],
"C", "Rods contain rhodopsin and function in scotopic (dim light) vision"),
]
for q in qa_anatomy:
add_qa(story, *q)
# ════════════════════════════════════════════════════════════════════════════
# SECTION 3 — EYE DISEASES
# ════════════════════════════════════════════════════════════════════════════
story.append(section_banner("SECTION 3: EYE DISEASES",
"अनुभाग 3: नेत्र रोग", "#b71c1c"))
story.append(Spacer(1, 0.2*cm))
qa_diseases = [
(21,
"The most common cause of irreversible blindness worldwide is:",
"विश्व में अपरिवर्तनीय अंधेपन का सबसे सामान्य कारण है:",
["(A) Cataract", "(B) Glaucoma (ग्लूकोमा)", "(C) Diabetic retinopathy", "(D) Trachoma"],
"B", "Glaucoma is the leading cause of irreversible blindness globally"),
(22,
"In open-angle glaucoma, intraocular pressure is elevated due to:",
"ओपन एंगल ग्लूकोमा में अंतःनेत्र दाब बढ़ने का कारण है:",
["(A) Excessive aqueous production", "(B) Reduced aqueous drainage (जलीय द्रव निकासी में कमी)", "(C) Lens swelling", "(D) Vitreous overproduction"],
"B", "Impaired drainage through trabecular meshwork → raised IOP"),
(23,
"The hallmark sign of diabetic retinopathy on fundus examination is:",
"फंडस परीक्षण में डायबिटिक रेटिनोपैथी का विशिष्ट लक्षण है:",
["(A) Optic disc pallor", "(B) Microaneurysms (माइक्रोएन्यूरिज्म)", "(C) Macular hole", "(D) Drusen"],
"B", "Microaneurysms are the earliest sign of diabetic retinopathy"),
(24,
"Cataract is defined as:",
"मोतियाबिंद (Cataract) की परिभाषा है:",
["(A) Clouding of vitreous", "(B) Corneal opacity", "(C) Opacification of the crystalline lens (लेंस का धुंधलापन)", "(D) Retinal detachment"],
"C", "Cataract = opacity of the crystalline lens of the eye"),
(25,
"Age-related Macular Degeneration (AMD) primarily affects:",
"उम्र संबंधी मैक्युलर डीजेनेरेशन (AMD) मुख्य रूप से किसे प्रभावित करता है?",
["(A) Optic nerve", "(B) Peripheral retina", "(C) Central retina / Macula (मैक्युला)", "(D) Iris"],
"C", "AMD destroys the macula → loss of central vision"),
(26,
"Drusen deposits in AMD are located in:",
"AMD में ड्रूसेन जमाव कहाँ होता है?",
["(A) Vitreous", "(B) Bruch's membrane (ब्रुच की झिल्ली)", "(C) Corneal stroma", "(D) Lens capsule"],
"B", "Drusen accumulate between RPE and Bruch's membrane"),
(27,
"A patient with sudden painful red eye, corneal haze and mid-dilated pupil likely has:",
"अचानक दर्दनाक लाल आँख, कॉर्नियल धुंधलेपन और मध्य-फैली पुतली वाले रोगी को संभवतः है:",
["(A) Conjunctivitis", "(B) Acute angle-closure glaucoma (तीव्र कोण-बंद ग्लूकोमा)", "(C) Uveitis", "(D) Corneal ulcer"],
"B", "Classic presentation of acute angle-closure glaucoma — ophthalmic emergency"),
(28,
"The most common organism causing bacterial conjunctivitis in adults is:",
"वयस्कों में बैक्टीरियल नेत्रश्लेष्मलाशोथ का सबसे सामान्य कारक है:",
["(A) Herpes simplex", "(B) Staphylococcus aureus (स्टैफिलोकोकस ऑरियस)", "(C) Candida", "(D) Chlamydia"],
"B", "S. aureus is the most common cause of bacterial conjunctivitis in adults"),
(29,
"Trachoma is caused by:",
"ट्रैकोमा किससे होता है?",
["(A) Herpes virus", "(B) Adenovirus", "(C) Chlamydia trachomatis (क्लैमाइडिया ट्रैकोमेटिस)", "(D) Staphylococcus"],
"C", "Trachoma — leading infectious cause of blindness — caused by C. trachomatis"),
(30,
"In proliferative diabetic retinopathy, new blood vessel formation is called:",
"प्रोलिफेरेटिव डायबिटिक रेटिनोपैथी में नई रक्त वाहिकाओं के निर्माण को कहते हैं:",
["(A) Exudation", "(B) Neovascularization / NVD (नियोवैस्कुलराइजेशन)", "(C) Microaneurysm", "(D) Cotton wool spots"],
"B", "Neovascularization (NVD/NVE) is the hallmark of proliferative DR"),
]
for q in qa_diseases:
add_qa(story, *q)
# ════════════════════════════════════════════════════════════════════════════
# SECTION 4 — INSTRUMENTS
# ════════════════════════════════════════════════════════════════════════════
story.append(section_banner("SECTION 4: OPHTHALMIC INSTRUMENTS",
"अनुभाग 4: नेत्र उपकरण", "#1b5e20"))
story.append(Spacer(1, 0.2*cm))
qa_instruments = [
(31,
"A slit lamp biomicroscope is used to examine:",
"स्लिट लैम्प बायोमाइक्रोस्कोप किसकी जाँच के लिए प्रयोग किया जाता है?",
["(A) Only the retina", "(B) Anterior segment of the eye (अग्र भाग)", "(C) Only the optic nerve", "(D) Visual field"],
"B", "Slit lamp examines anterior segment — cornea, iris, lens, anterior vitreous"),
(32,
"Retinoscopy (skiascopy) is used to determine:",
"रेटिनोस्कोपी का उपयोग किसके लिए किया जाता है?",
["(A) Intraocular pressure", "(B) Objective refraction (वस्तुनिष्ठ अपवर्तन)", "(C) Visual field", "(D) Color vision"],
"B", "Retinoscopy objectively measures the refractive error of the eye"),
(33,
"Non-contact tonometer (NCT / air-puff tonometer) measures:",
"नॉन-कॉन्टैक्ट टोनोमीटर (NCT) किसे मापता है?",
["(A) Corneal thickness", "(B) Axial length", "(C) Intraocular pressure / IOP (अंतःनेत्र दाब)", "(D) Pupil size"],
"C", "NCT measures IOP by applanating the cornea with a puff of air"),
(34,
"A keratometer measures:",
"केराटोमीटर क्या मापता है?",
["(A) Axial length", "(B) Anterior corneal curvature (कॉर्निया की वक्रता)", "(C) Pupil diameter", "(D) Vitreous volume"],
"B", "Keratometer (ophthalmometer) measures corneal curvature/power"),
(35,
"The Goldmann applanation tonometer is the gold standard for measuring:",
"गोल्डमैन एप्लेनेशन टोनोमीटर किसके मापन का स्वर्ण मानक है?",
["(A) Corneal thickness", "(B) IOP (अंतःनेत्र दाब)", "(C) Visual acuity", "(D) Pupil reflex"],
"B", "Goldmann applanation tonometry — gold standard for IOP measurement"),
(36,
"The Snellen chart is used to measure:",
"स्नेलन चार्ट किसे मापने के लिए प्रयोग होता है?",
["(A) Color vision", "(B) Visual field", "(C) Distance visual acuity (दूर दृष्टि तीक्ष्णता)", "(D) Contrast sensitivity"],
"C", "Snellen chart tests distance VA at 6 metres (20 feet)"),
(37,
"The Ishihara plates are used to test:",
"इशिहारा प्लेट्स किसकी जाँच के लिए उपयोग होती हैं?",
["(A) Night vision", "(B) Color vision / color blindness (रंग दृष्टि)", "(C) Glaucoma", "(D) Refraction"],
"B", "Ishihara pseudoisochromatic plates test for color vision deficiency"),
(38,
"Which instrument is used to measure the axial length of the eye for IOL power calculation?",
"IOL शक्ति गणना के लिए आँख की अक्षीय लंबाई किससे मापी जाती है?",
["(A) Keratometer", "(B) Pachymeter", "(C) A-scan ultrasonography (ए-स्कैन)", "(D) Slit lamp"],
"C", "A-scan ultrasound (biometry) measures axial length for IOL calculation"),
(39,
"A direct ophthalmoscope provides an image that is:",
"डायरेक्ट ऑप्थैल्मोस्कोप से प्राप्त प्रतिबिम्ब होता है:",
["(A) Inverted, real", "(B) Upright, virtual, magnified (सीधा, आभासी, आवर्धित)", "(C) Inverted, virtual", "(D) Upright, real"],
"B", "Direct ophthalmoscope gives erect, virtual image (~15× magnification)"),
(40,
"Pachymetry is used to measure:",
"पैचीमेट्री किसे मापने के लिए प्रयोग होती है?",
["(A) Corneal thickness (कॉर्निया की मोटाई)", "(B) Pupil diameter", "(C) IOP", "(D) Lens thickness"],
"A", "Corneal pachymetry measures corneal thickness — important in glaucoma and LASIK"),
]
for q in qa_instruments:
add_qa(story, *q)
# ════════════════════════════════════════════════════════════════════════════
# SECTION 5 — GENERAL APTITUDE
# ════════════════════════════════════════════════════════════════════════════
story.append(section_banner("SECTION 5: GENERAL APTITUDE",
"अनुभाग 5: सामान्य अभिरुचि", "#e65100"))
story.append(Spacer(1, 0.2*cm))
qa_general = [
(41,
"If 12 workers complete a task in 8 days, how many days will 16 workers take?",
"यदि 12 कार्यकर्ता 8 दिन में काम पूरा करें, तो 16 कार्यकर्ता कितने दिन लेंगे?",
["(A) 4 days", "(B) 6 days (6 दिन)", "(C) 10 days", "(D) 12 days"],
"B", "Workers × Days = constant → 12×8 = 16×D → D = 6"),
(42,
"The average of 5 numbers is 20. If one number is removed, the average becomes 18. What is the removed number?",
"5 संख्याओं का औसत 20 है। एक संख्या हटाने पर औसत 18 हो जाता है। हटाई गई संख्या क्या है?",
["(A) 26", "(B) 28 (28)", "(C) 30", "(D) 22"],
"B", "Total = 100; remaining 4×18 = 72; removed = 100−72 = 28"),
(43,
"Which article of the Indian Constitution deals with Right to Education?",
"भारतीय संविधान का कौन सा अनुच्छेद शिक्षा के अधिकार से संबंधित है?",
["(A) Article 19", "(B) Article 21-A (अनुच्छेद 21-A)", "(C) Article 32", "(D) Article 44"],
"B", "Article 21-A provides free and compulsory education to children 6–14 years"),
(44,
"The synonym of 'Ambiguous' is:",
"'Ambiguous' का पर्यायवाची शब्द है:",
["(A) Clear", "(B) Vague / Uncertain (अस्पष्ट)", "(C) Simple", "(D) Definite"],
"B", "Ambiguous = having more than one possible meaning; synonym: vague, unclear"),
(45,
"A train 150 m long passes a pole in 15 seconds. What is its speed in km/h?",
"150 मीटर लंबी ट्रेन 15 सेकंड में एक खंभे को पार करती है। इसकी गति km/h में है:",
["(A) 36 km/h (36 km/h)", "(B) 54 km/h", "(C) 72 km/h", "(D) 10 km/h"],
"A", "Speed = 150/15 = 10 m/s = 10×3.6 = 36 km/h"),
(46,
"Which of the following is a prime number?",
"निम्नलिखित में से कौन सी एक अभाज्य संख्या है?",
["(A) 91", "(B) 87", "(C) 97 (97)", "(D) 77"],
"C", "97 is prime; 91=7×13, 87=3×29, 77=7×11"),
(47,
"The antonym of 'Diligent' is:",
"'Diligent' का विपरीतार्थी शब्द है:",
["(A) Hardworking", "(B) Careful", "(C) Lazy / Idle (आलसी)", "(D) Sincere"],
"C", "Diligent = hardworking; antonym = lazy/idle"),
(48,
"National Health Mission (NHM) was launched in year:",
"राष्ट्रीय स्वास्थ्य मिशन (NHM) किस वर्ष शुरू किया गया?",
["(A) 2000", "(B) 2005 (2005)", "(C) 2010", "(D) 2013"],
"B", "NHM (initially NRHM) launched in 2005 to strengthen rural health"),
(49,
"What is 15% of 480?",
"480 का 15% क्या है?",
["(A) 62", "(B) 70", "(C) 72 (72)", "(D) 68"],
"C", "15/100 × 480 = 72"),
(50,
"Which disease is caused by Vitamin A deficiency?",
"विटामिन A की कमी से कौन सा रोग होता है?",
["(A) Scurvy", "(B) Rickets", "(C) Night blindness / Xerophthalmia (रतौंधी)", "(D) Pellagra"],
"C", "Vitamin A deficiency → Night blindness and Xerophthalmia (dry eye)"),
]
for q in qa_general:
add_qa(story, *q)
# ── Footer note ───────────────────────────────────────────────────────────
story.append(Spacer(1, 0.5*cm))
story.append(HRFlowable(width="100%", thickness=1.5, color=colors.HexColor("#1a237e")))
story.append(Spacer(1, 0.2*cm))
footer_style = ParagraphStyle("footer", fontName=reg_font, fontSize=8,
textColor=colors.HexColor("#546e7a"), alignment=TA_CENTER)
story.append(Paragraph(
"DSSSB Optometrist PYQ — Bilingual (Hindi + English) | 50 Questions | 5 Sections | For Study Purpose Only",
footer_style))
story.append(Paragraph(
"DSSSB ऑप्टोमेट्रिस्ट PYQ — द्विभाषी (हिंदी + अंग्रेजी) | 50 प्रश्न | 5 अनुभाग | केवल अध्ययन हेतु",
footer_style))
# ── Build PDF ─────────────────────────────────────────────────────────────
doc.build(story)
print(f"PDF created: {OUTPUT}")
python3 /home/daytona/workspace/dsssb-optometrist/generate_pdf.py
DSSSB Optometrist PYQ Hindi English
PDF Document · PDF
| Section | Questions | Topics Covered |
|---|---|---|
| Optics & Refraction (प्रकाशिकी) | Q1–10 | Lenses, prisms, Snell's law, myopia, hypermetropia, astigmatism, presbyopia |
| Ocular Anatomy (नेत्र शारीरिकी) | Q11–20 | Cornea, aqueous humor, fovea, vitreous, retinal layers, optic disc, iris, canal of Schlemm |
| Eye Diseases (नेत्र रोग) | Q21–30 | Glaucoma, diabetic retinopathy, cataract, AMD, conjunctivitis, trachoma |
| Instruments (उपकरण) | Q31–40 | Slit lamp, retinoscopy, tonometer, keratometer, Snellen chart, Ishihara, A-scan, pachymetry |
| General Aptitude (सामान्य अभिरुचि) | Q41–50 | Maths, reasoning, English vocabulary, GK (Constitution, NHM, Vitamin deficiency) |