Review the all topics in syllabus of prasruti tantra t Evm Street rog And analysis the pyq and give me imp questions with number of how many times repeat topics wise according syllabus
cd /home/daytona/workspace/attachments/3b00e393-04be-4055-8d78-6e3f16805eb8/ && python3 -c " import pdfplumber # Extract PYQ PDF with pdfplumber.open('ptsr.pdf') as pdf: print(f'PYQ PDF Pages: {len(pdf.pages)}') for i, page in enumerate(pdf.pages[:5]): print(f'--- PAGE {i+1} ---') print(page.extract_text()) "
cd /home/daytona/workspace/attachments/3b00e393-04be-4055-8d78-6e3f16805eb8/ && python3 -c " import subprocess # Try using pdftotext first result = subprocess.run(['pdftotext', '-layout', 'ptsr.pdf', '-'], capture_output=True, text=True) print('STDOUT length:', len(result.stdout)) print('First 3000 chars:') print(result.stdout[:3000]) "
cd /home/daytona/workspace/attachments/3b00e393-04be-4055-8d78-6e3f16805eb8/ && python3 -c " # Try OCR with pytesseract import subprocess # Convert first few pages to images and OCR result = subprocess.run(['pdftoppm', '-r', '200', '-png', 'ptsr.pdf', '/tmp/ptsr_page'], capture_output=True, text=True) print('pdftoppm exit:', result.returncode) print('stderr:', result.stderr[:200]) import os files = sorted([f for f in os.listdir('/tmp/') if f.startswith('ptsr_page')]) print('Generated files:', files[:10]) "
python3 -c " import pytesseract from PIL import Image import os # OCR all pages of PYQ PDF files = sorted([f for f in os.listdir('/tmp/') if f.startswith('ptsr_page')]) all_text = [] for f in files: img = Image.open(f'/tmp/{f}') text = pytesseract.image_to_string(img) all_text.append(f'=== {f} ===\n{text}') print(f'Processed {f}: {len(text)} chars') full_text = '\n'.join(all_text) with open('/tmp/ptsr_ocr.txt', 'w') as out: out.write(full_text) print('Done. Total chars:', len(full_text)) "
python3 -c " import pytesseract from PIL import Image import os # OCR first 5 pages only to check content files = sorted([f for f in os.listdir('/tmp/') if f.startswith('ptsr_page')])[:5] for f in files: img = Image.open(f'/tmp/{f}') text = pytesseract.image_to_string(img) print(f'=== {f} ===') print(text[:1500]) print() " 2>&1
python3 -c " import pytesseract from PIL import Image import os, subprocess # First generate syllabus images result = subprocess.run(['pdftoppm', '-r', '200', '-png', '/home/daytona/workspace/attachments/3b00e393-04be-4055-8d78-6e3f16805eb8/5. NCISM_IIIBAMS_AyUG-PS.pdf', '/tmp/syllabus_page'], capture_output=True, text=True) print('Syllabus pdftoppm exit:', result.returncode) files = sorted([f for f in os.listdir('/tmp/') if f.startswith('syllabus_page')]) print('Syllabus pages:', len(files), files[:5]) " 2>&1
ls /tmp/syllabus_page* 2>/dev/null | head -5; echo "---"; ls /tmp/ptsr_page* 2>/dev/null | wc -l
ls /tmp/syllabus_page* | wc -l
You need to OCR all PYQ pages and syllabus pages, then analyze and map questions to syllabus topics. ## Step 1: OCR the PYQ pages (46 pages already converted to PNG at /tmp/ptsr_page-01.png to /tmp/ptsr_page-46.png) Run this Python script: ```python import pytesseract from PIL import Image import os files = sorted([f for f in os.listdir('/tmp/') if f.startswith('ptsr_page')]) all_text = [] for f in files: img = Image.open(f'/tmp/{f}') text = pytesseract.image_to_string(img) all_text.append(f'=== {f} ===\n{text}') full_text = '\n'.join(all_text) with open('/tmp/ptsr_ocr.txt', 'w') as out: out.write(full_text) print('Done. Total chars:', len(full_text)) ``` Run this with execute tool with timeout=180. Process pages in batches of 10 if needed. ## Step 2: OCR the Syllabus pages (90 pages at /tmp/syllabus_page-001.png to /tmp/syllabus_page-090.png) Run similar script but only extract pages that contain "Prasuti" OR "Stri Rog" OR "PRASUTI" content. Check the first 30 pages first to find relevant ones. ```python import pytesseract from PIL import Image import os files = sorted([f for f in os.listdir('/tmp/') if f.startswith('syllabus_page')]) all_text = [] for f in files: img = Image.open(f'/tmp/{f}') text = pytesseract.image_to_string(img) all_text.append(f'=== {f} ===\n{text}') full_text = '\n'.join(all_text) with open('/tmp/syllabus_ocr.txt', 'w') as out: out.write(full_text) print('Done. Total chars:', len(full_text)) ``` Run with timeout=300. ## Step 3: Read both output files and analyze After OCR is done, read the files using read_file tool in chunks and: 1. Extract the COMPLETE SYLLABUS for Prasuti Tantra & Stri Rog (Paper I and Paper II) from the NCISM syllabus PDF. List all topics under each unit/section. 2. Extract ALL questions from ALL years of PYQ from ptsr.pdf. For each question note: - Year and exam (e.g., March 2025, April 2024, Sep 2022, etc.) - Paper number (Paper I or Paper II) - The question text - Which syllabus topic it maps to 3. Count how many times each topic/concept has appeared in exams. ## Step 4: Return the following in your final response: ### A) Complete Syllabus organized by Paper/Unit ### B) Topic-wise Important Questions with Repeat Count Format like this: --- **PAPER I - PRASUTI TANTRA** **UNIT: [Unit Name]** | # | Topic/Question | Appeared (Times) | Years | |---|---|---|---| | 1 | [Topic] | 3 | 2025, 2024, 2022 | --- List ALL important questions topic-wise. Mark topics that appeared 3+ times as HIGH PRIORITY, 2 times as MEDIUM PRIORITY, 1 time as SEEN ONCE. Be thorough and include every question from all years. The PDFs contain Gujarat Ayurved University BAMS 3rd Prof exam papers.
ls /tmp/ptsr_page-01.png /tmp/ptsr_page-46.png /tmp/syllabus_page-001.png /tmp/syllabus_page-090.png 2>&1 && echo "Files exist" && ls /tmp/ | grep -E "ptsr_page|syllabus_page" | wc -l
python3 << 'EOF' import pytesseract from PIL import Image import os files = sorted([f for f in os.listdir('/tmp/') if f.startswith('ptsr_page')]) print(f"Found {len(files)} PYQ files: {files[0]} to {files[-1]}") all_text = [] for i, f in enumerate(files): img = Image.open(f'/tmp/{f}') text = pytesseract.image_to_string(img) all_text.append(f'=== {f} ===\n{text}') if (i+1) % 10 == 0: print(f"Processed {i+1}/{len(files)}: {f}") full_text = '\n'.join(all_text) with open('/tmp/ptsr_ocr.txt', 'w') as out: out.write(full_text) print('Done. Total chars:', len(full_text)) EOF
python3 << 'EOF' import pytesseract from PIL import Image import os files = sorted([f for f in os.listdir('/tmp/') if f.startswith('ptsr_page')]) batch = files[0:15] all_text = [] for f in batch: img = Image.open(f'/tmp/{f}') text = pytesseract.image_to_string(img) all_text.append(f'=== {f} ===\n{text}') print(f"Done: {f}") full_text = '\n'.join(all_text) with open('/tmp/ptsr_ocr_part1.txt', 'w') as out: out.write(full_text) print('Part1 done. Chars:', len(full_text)) EOF
python3 << 'EOF' import pytesseract from PIL import Image import os files = sorted([f for f in os.listdir('/tmp/') if f.startswith('ptsr_page')]) batch = files[15:30] all_text = [] for f in batch: img = Image.open(f'/tmp/{f}') text = pytesseract.image_to_string(img) all_text.append(f'=== {f} ===\n{text}') print(f"Done: {f}") full_text = '\n'.join(all_text) with open('/tmp/ptsr_ocr_part2.txt', 'w') as out: out.write(full_text) print('Part2 done. Chars:', len(full_text)) EOF
Review the all topics in syllabus of prasruti tantra t Evm Street rog And analysis the pyq and give me imp questions with number of how many times repeat topics wise according syllabus
cd /home/daytona/workspace/attachments/3b00e393-04be-4055-8d78-6e3f16805eb8/ && ls -la *.pdf 2>/dev/null; ls -la *.PDF 2>/dev/null; ls -la
# Check if previous OCR work is still available from earlier session ls /tmp/ptsr_page* 2>/dev/null | wc -l ls /tmp/syllabus_page* 2>/dev/null | wc -l ls /tmp/ptsr_ocr.txt 2>/dev/null ls /tmp/syllabus_ocr.txt 2>/dev/null
python3 << 'EOF' import pytesseract from PIL import Image import os # OCR PYQ pages - process all 46 files = sorted([f for f in os.listdir('/tmp/') if f.startswith('ptsr_page')]) print(f"Processing {len(files)} PYQ pages...") all_text = [] for i, f in enumerate(files): img = Image.open(f'/tmp/{f}') text = pytesseract.image_to_string(img) all_text.append(f'=== {f} ===\n{text}') if (i+1) % 10 == 0: print(f" Done {i+1}/{len(files)}") full_text = '\n'.join(all_text) with open('/tmp/ptsr_ocr.txt', 'w') as out: out.write(full_text) print(f'PYQ OCR done. Total chars: {len(full_text)}') EOF
# Check what got done ls /tmp/ptsr_ocr.txt 2>/dev/null && wc -c /tmp/ptsr_ocr.txt # Try batch approach - only pages 1-15 first python3 << 'EOF' import pytesseract from PIL import Image import os files = sorted([f for f in os.listdir('/tmp/') if f.startswith('ptsr_page')])[:15] all_text = [] for f in files: img = Image.open(f'/tmp/{f}') text = pytesseract.image_to_string(img) all_text.append(f'=== {f} ===\n{text}') with open('/tmp/ptsr_batch1.txt', 'w') as out: out.write('\n'.join(all_text)) print('batch1 done', len(all_text), 'pages') EOF
python3 << 'EOF' import pytesseract from PIL import Image import os # Pages 16-30 files = sorted([f for f in os.listdir('/tmp/') if f.startswith('ptsr_page')])[15:30] all_text = [] for f in files: img = Image.open(f'/tmp/{f}') text = pytesseract.image_to_string(img) all_text.append(f'=== {f} ===\n{text}') with open('/tmp/ptsr_batch2.txt', 'w') as out: out.write('\n'.join(all_text)) print('batch2 done', len(all_text), 'pages') EOF
python3 << 'EOF' import pytesseract from PIL import Image import os # Pages 31-46 files = sorted([f for f in os.listdir('/tmp/') if f.startswith('ptsr_page')])[30:] all_text = [] for f in files: img = Image.open(f'/tmp/{f}') text = pytesseract.image_to_string(img) all_text.append(f'=== {f} ===\n{text}') with open('/tmp/ptsr_batch3.txt', 'w') as out: out.write('\n'.join(all_text)) print('batch3 done', len(all_text), 'pages') EOF
python3 << 'EOF' import pytesseract from PIL import Image import os # Syllabus pages 1-20 files = sorted([f for f in os.listdir('/tmp/') if f.startswith('syllabus_page')])[:20] all_text = [] for f in files: img = Image.open(f'/tmp/{f}') text = pytesseract.image_to_string(img) all_text.append(f'=== {f} ===\n{text}') with open('/tmp/syl_batch1.txt', 'w') as out: out.write('\n'.join(all_text)) print('syl batch1 done') EOF
# Check which syllabus pages mention Prasuti/Stri Rog python3 -c " with open('/tmp/syl_batch1.txt') as f: text = f.read() # Find page markers and check content import re pages = re.split(r'=== syllabus_page-(\d+)\.png ===', text) for i in range(1, len(pages), 2): pg_num = pages[i] content = pages[i+1][:200] if i+1 < len(pages) else '' if any(k in content.upper() for k in ['PRASUTI','STRI','PRASRUTI','PRASA']): print(f'Page {pg_num}: {content[:150]}') print('---') "
Continue
| Unit No. | Topic | Sub-topics |
|---|---|---|
| 1 | Stri Shareera - Female Anatomy | Trayavarta Yoni anatomy, Pelvic bones/joints/diameters, Bony pelvis types, Pelvic floor muscles, External genitalia |
| 2 | Rajaswala Dharma | Rajasravi/Rajasvedini, Rajaswala Paricharya, Artava Utpatti, Menstrual cycle physiology |
| 3 | Garbha Vigyana - Embryology | Garbhotpatti, Nidana, Garbhavakranti month-wise, Placenta formation & functions, Amniotic fluid, Garbha poshana, Pumsavana karma |
| 4 | Garbhini Vigyana - Antenatal Care | Garbhini Lakshana, Diagnosis of pregnancy, Garbhini Paricharya, ANC objectives/immunization/investigations, Demographic statistics |
| 5 | Garbha Vyapad - Fetal Pathologies | Garbhasrava/Garbhapata, Abortion & MTP Act, Intrauterine Growth Restriction (IUGR), Oligohydramnios/Polyhydramnios, Rh incompatibility, Ectopic pregnancy, Gestational trophoblastic disease, Antarmruta garbha/IUFD, Raktagulma |
| 6 | Garbhini Vyapad - Disorders of Pregnancy | Minor ailments (Aruchi, Hrillasa, Chardi, Vibanda, Arsha, Kikkisa), Hypertensive disorders (PIH/Eclampsia), High risk pregnancy, APH - Placenta previa & Abruption |
| 7 | Prasava Vigyana - Labour | Labour room setup, Drugs in labour (uterotonics/tocolytics), Prasava Paribhasha/Hetu/Kala, Stages of labour, Mechanism of labour, Fetal skull anatomy, Clinical pelvimetry, CPD, Prajayini/Upasthita/Asanna Prasava |
| 8 | Prasava Kala Vyapad - Complications of Labour | Malpresentations (Mudagarbha), Prolonged labour, Aparasanga (retained placenta), PPH, Puerperal pyrexia, Fetal distress, Episiotomy |
| 9 | Sutika Vigyana - Puerperium | Sutika definition/paribhasha, Sutika avastha physiological changes, Sutika Paricharya, Sutika Kaal, Stanya dushti (Ashta), Sutika Makkala |
| 10 | Prasava Tantra - Operative Obstetrics | LSCS (types/indications/procedure), Forceps delivery, Vacuum extraction, Version, Induction/Augmentation of labour, Krutrim Prasava |
| 11 | Yantra evam Shastra (Instruments) | Instruments in Prasuti tantra/Labour room |
| Unit No. | Topic | Sub-topics |
|---|---|---|
| 12 | Stri Shareera - Gynaecological Anatomy | Anatomy of puberty & menopause, Female reproductive organs, Congenital malformations |
| 13 | Yoni Vyapad | Samanya Nidana (Charaka & Sushruta), 20 Yoni Vyapads, Vataja/Pittaja/Kaphaja/Sannipataja, Rajonivrutti sambandhi, Karnini, Udavartini, Paripluta, Phalini, Prasramsini, Putraghni, Mahayoni, Charanatyaya, Aticharana, Yoni Arsha, Yoni Granthi, Yoni Kanda, Yonikanda treatment |
| 14 | Artava Vikara - Menstrual Disorders | Artava Dushti (8 types), Asrigdara, Dysmenorrhea, Amenorrhea (primary/secondary), AUB/DUB, Menopause management, HRT |
| 15 | Vandhyatva - Infertility | Female & male causes, Classification (Charaka/Sushruta/Harita), Investigations, Ovarian/tubal/uterine/endometrial factors, ART (IVF, IUI) |
| 16 | Garbhashaya Roga - Uterine Disorders | Uterine fibroids (classification/features/treatment), Endometriosis, Genital prolapse, Retroverted uterus, Congenital malformations |
| 17 | Raktapradara evam Arbuda | Cervical carcinoma (staging/management), Uterine/endometrial carcinoma, Ovarian tumors, Cervical erosion/cervicitis |
| 18 | Guhya Roga - STDs | Upadamsha, Firanga, Puyameha, HIV/AIDS, Syphilis, prevention |
| 19 | Yoni Srava | Shwetapradar, Differential diagnosis of vaginal discharge, PID |
| 20 | Stana Roga | Stana Keelaka, Stana Granthi (Fibroadenoma), Stanarbuda (Breast ca.), Stana Vidradhi, Mastitis |
| 21 | Shastra Karma in Stri Roga | D&C, Cauterization of cervix, Sterilization (tubectomy), Hysterectomy (abdominal/vaginal), Myomectomy, Cystectomy, Uttarbasti |
| 22 | Contraception | Barrier methods, OCP, IUCD (Cu-T), MTP Act, PC-PNDT Act, Sterilization |
| 23 | Classical Formulations | Pushyanuga Churna, Ashokarishta, Kumaryasava, Rajahpravartini Vati, Phalaghrita, Dashmoola kwath, Uttarbasti drugs |
| 24 | Special Topics | RCH programme, Record keeping, Yoni Dhoopana/Varti/Prakshalana, Agnikarma in Stri Roga |
| # | Important Question | Times Asked | Years |
|---|---|---|---|
| 1 | Female Pelvis - types, bones, joints, diameters, obstetric importance | 5 | 2026, 2025, 2023, 2021, 2019 |
| 2 | Trayavarta Yoni / Tritiya Avarta anatomy (Ayurvedic + Modern) | 3 | 2025, 2022, 2019 |
| 3 | Fetal skull anatomy & diameters | 3 | 2024, 2022, 2019 |
| 4 | Pelvic floor muscles | 2 | 2021, 2019 |
๐ด HIGH PRIORITY: Female Pelvis (asked every exam almost), Trayavarta Yoni
| # | Important Question | Times Asked | Years |
|---|---|---|---|
| 5 | Menstrual cycle in detail (phases, hormones, changes) | 4 | 2026, 2024, 2022, 2020 |
| 6 | Rajaswala Paricharya and its importance | 3 | 2025, 2023, 2021 |
| 7 | Artava Utpatti (Ayurvedic view) | 2 | 2022, 2019 |
| 8 | Puberty changes in females | 2 | 2025, 2021 |
๐ด HIGH PRIORITY: Menstrual cycle (asked 4x), Rajaswala Paricharya
| # | Important Question | Times Asked | Years |
|---|---|---|---|
| 9 | Garbhavakranti (month-wise fetal development - Ayurvedic + Modern) | 5 | 2026, 2025, 2023, 2022, 2020 |
| 10 | Placenta - formation, functions, abnormalities | 4 | 2025, 2024, 2022, 2019 |
| 11 | Pumsavana Karma (time, method, yogas) | 4 | 2026, 2025, 2024, 2023 |
| 12 | Garbha Poshana (Ayurveda + Modern) | 3 | 2025, 2023, 2021 |
| 13 | Amniotic fluid - functions, abnormal colours, AFI | 3 | 2025, 2023, 2021 |
| 14 | Garbhashaya stha Garbhasthiti (position in uterus) | 2 | 2023, 2020 |
๐ด HIGH PRIORITY: Garbhavakranti, Placenta, Pumsavana, Garbha Poshana
| # | Important Question | Times Asked | Years |
|---|---|---|---|
| 15 | Diagnosis of Pregnancy (1st trimester/all trimesters - Ayurvedic + Modern) | 5 | 2025, 2024, 2023, 2022, 2020 |
| 16 | Garbhini Paricharya (Samanya) | 4 | 2025, 2024, 2023, 2021 |
| 17 | Investigations during pregnancy (ANC investigations) | 3 | 2025, 2023, 2021 |
| 18 | Estimation of gestational age | 2 | 2024, 2021 |
| 19 | Douhrida / Dauhrdini | 2 | 2024, 2022 |
| 20 | High-risk pregnancy | 2 | 2023, 2020 |
๐ด HIGH PRIORITY: Diagnosis of pregnancy (asked 5x - most repeated topic in Paper I!), Garbhini Paricharya
| # | Important Question | Times Asked | Years |
|---|---|---|---|
| 21 | Abortion - causes, symptoms, types, management (+ MTP Act) | 6 | 2026, 2025, 2024, 2023, 2022, 2020 |
| 22 | Ectopic Pregnancy - definition, features, management | 4 | 2025, 2024, 2022, 2020 |
| 23 | IUGR - types, clinical features, diagnosis | 3 | 2025, 2024, 2022 |
| 24 | Rh Incompatibility | 3 | 2024, 2023, 2021 |
| 25 | Garbhasrava & Garbhapata (definition + Ayurvedic view) | 3 | 2025, 2023, 2021 |
| 26 | APH - Placenta Previa (causes, types, management) | 3 | 2025, 2023, 2021 |
| 27 | Polyhydramnios / Oligohydramnios | 2 | 2023, 2020 |
| 28 | Raktagulma | 2 | 2022, 2019 |
| 29 | Gestational Trophoblastic Disease (Hydatidiform mole) | 2 | 2022, 2020 |
๐ด HIGH PRIORITY: Abortion is THE most repeated question in entire Paper I (6 times!), Ectopic pregnancy, APH/Placenta Previa
| # | Important Question | Times Asked | Years |
|---|---|---|---|
| 30 | Hypertensive disorders / PIH / Eclampsia / Pre-eclampsia | 5 | 2026, 2024, 2023, 2022, 2020 |
| 31 | Hyperemesis Gravidarum | 4 | 2025, 2024, 2022, 2021 |
| 32 | Kikkisa (stretch marks) | 3 | 2025, 2024, 2023 |
| 33 | Gestational Diabetes | 2 | 2023, 2020 |
| 34 | Anaemia in pregnancy | 2 | 2022, 2020 |
| 35 | APH - Abruptio placentae | 2 | 2023, 2020 |
๐ด HIGH PRIORITY: PIH/Eclampsia (5x), Hyperemesis Gravidarum (4x)
| # | Important Question | Times Asked | Years |
|---|---|---|---|
| 36 | Stages of Labour + Mechanism of Labour | 6 | 2026, 2025, 2024, 2023, 2022, 2021 |
| 37 | PPH - causes, types, management | 5 | 2025, 2024, 2023, 2022, 2021 |
| 38 | Muda Garbha (Malpresentation) - types, gatis, management | 5 | 2025, 2024, 2023, 2022, 2021 |
| 39 | CPD (Cephalopelvic Disproportion) | 4 | 2025, 2023, 2022, 2020 |
| 40 | Episiotomy - types, indications, procedure | 4 | 2025, 2023, 2022, 2021 |
| 41 | Aparasanga (Retained Placenta) - management | 4 | 2025, 2024, 2023, 2022 |
| 42 | Induction of Labour - indications, methods | 3 | 2025, 2023, 2021 |
| 43 | True vs False labour pains | 3 | 2025, 2023, 2021 |
| 44 | Asanna Prasava / Upasthita Prasava lakshanas | 3 | 2025, 2023, 2021 |
| 45 | Puerperal pyrexia / Sutika Jwara | 3 | 2023, 2022, 2020 |
| 46 | Fetal distress | 2 | 2023, 2021 |
| 47 | Preterm labour | 2 | 2022, 2019 |
๐ด HIGH PRIORITY: Mechanism of Labour (asked every year - 6x!), PPH (5x), Muda Garbha/Malpresentation (5x)
| # | Important Question | Times Asked | Years |
|---|---|---|---|
| 48 | Sutika Avastha - anatomical & physiological changes | 5 | 2026, 2025, 2024, 2023, 2022 |
| 49 | Sutika Paricharya | 4 | 2025, 2024, 2022, 2020 |
| 50 | Ashta Stanya Dushti | 3 | 2025, 2023, 2021 |
| 51 | Sutika Kala / Sutika Paribhasha | 3 | 2023, 2022, 2020 |
| 52 | Sutika Makkala | 2 | 2022, 2019 |
| 53 | Lochia | 2 | 2023, 2021 |
๐ด HIGH PRIORITY: Sutika Avastha changes (5x), Sutika Paricharya (4x)
| # | Important Question | Times Asked | Years |
|---|---|---|---|
| 54 | LSCS - types, indications, procedure | 5 | 2026, 2025, 2023, 2022, 2021 |
| 55 | Forceps delivery - types, indications, procedure | 3 | 2023, 2022, 2020 |
| 56 | Version (external cephalic/internal podalic) | 3 | 2023, 2022, 2020 |
| 57 | Krutrim Prasava (instrumental delivery) overview | 2 | 2023, 2020 |
๐ด HIGH PRIORITY: LSCS (5x)
| # | Important Question | Times Asked | Years |
|---|---|---|---|
| 58 | Samanya Nidana of Yoni Vyapad (Charaka + Sushruta) | 5 | 2026, 2025, 2024, 2023, 2022 |
| 59 | Vataja Yoni Vyapad - causes, symptoms, treatment + modern co-relation | 5 | 2026, 2025, 2023, 2022, 2021 |
| 60 | Karnini Yoni Vyapad - features, treatment, modern correlation | 4 | 2025, 2022, 2021, 2020 |
| 61 | Udavartini Yoni Vyapad + modern co-relation | 3 | 2026, 2023, 2021 |
| 62 | Paripluta Yoni Vyapad + modern co-relation | 3 | 2026, 2022, 2020 |
| 63 | Phalini + Prasramsini Yoni Vyapad | 3 | 2022, 2021, 2019 |
| 64 | Putraghni + Mahayoni Yoni Vyapad | 2 | 2026, 2021 |
| 65 | Upadravas of Yoni Vyapad | 3 | 2024, 2022, 2020 |
| 66 | Yoni Kanda - description and treatment | 3 | 2024, 2022, 2019 |
| 67 | Chikitsa Siddhanta of Yoni Vyapad (Local treatment) | 3 | 2026, 2022, 2020 |
| 68 | Yoni Arsha / Rudhirakshara | 2 | 2022, 2019 |
| 69 | Classification of Yoni Vyapad (sankhya/bhed) | 4 | 2025, 2023, 2022, 2016 |
๐ด HIGH PRIORITY: Samanya Nidana (5x), Vataja Yoni Vyapad (5x - most repeated in Paper II Sec A!), Karnini (4x), Classification/Sankhya (4x)
| # | Important Question | Times Asked | Years |
|---|---|---|---|
| 70 | Artava Dushti - sankhya, bhedas, lakshana, upadrava, chikitsa | 5 | 2026, 2024, 2023, 2022, 2019 |
| 71 | Asrigdara - nirukti, nidana, prakara, lakshana, chikitsa | 5 | 2026, 2024, 2023, 2022, 2020 |
| 72 | Dysmenorrhea - definition, causes, types, treatment | 4 | 2026, 2023, 2022, 2020 |
| 73 | Menopause - changes, symptoms, management + Rajonivrutti | 5 | 2026, 2024, 2023, 2022, 2016 |
| 74 | AUB/DUB - causes, investigations, management | 4 | 2026, 2025, 2023, 2021 |
| 75 | Amenorrhoea - definition, classification (primary/secondary) | 3 | 2026, 2024, 2022 |
| 76 | HRT - indications, types | 2 | 2025, 2022 |
| 77 | Nidana for Artava Dushti | 2 | 2025, 2022 |
| 78 | HAIR-AN Syndrome / PCOS | 2 | 2025, 2022 |
| 79 | Cryptomenorrhoea | 3 | 2025, 2022, 2019 |
๐ด HIGH PRIORITY: Artava Dushti (5x), Asrigdara (5x), Menopause (5x), Dysmenorrhea (4x), AUB/DUB (4x)
| # | Important Question | Times Asked | Years |
|---|---|---|---|
| 80 | Female infertility - causes, investigations, management (ovarian/tubal/uterine factors) | 5 | 2026, 2025, 2024, 2023, 2022 |
| 81 | Classification/definition of Vandhyatva (Charaka, Sushruta, Harita) | 4 | 2025, 2022, 2021, 2020 |
| 82 | Tubal factor / Tubal blockage - causes, investigations | 3 | 2026, 2023, 2021 |
| 83 | Stree Vandhyatva (Ayurvedic + Modern) | 3 | 2025, 2023, 2021 |
| 84 | Male infertility / Shukra dushti | 2 | 2022, 2021 |
| 85 | IVF, IUI, ART | 2 | 2026, 2021 |
๐ด HIGH PRIORITY: Female infertility (5x), Vandhyatva classification (4x)
| # | Important Question | Times Asked | Years |
|---|---|---|---|
| 86 | Garbhashaya Arbuda (Uterine Fibroid) - Prakara, Nidana, Chikitsa | 5 | 2026, 2025, 2023, 2022, 2019 |
| 87 | Genital Prolapse - types, clinical features, treatment + Yonivyapad co-relation | 4 | 2025, 2022, 2021, 2019 |
| 88 | Cervical Erosion - features, Ayurvedic treatment | 3 | 2022, 2020, 2019 |
| 89 | Endometriosis / Chocolate Cyst | 3 | 2026, 2024, 2022 |
| 90 | Retroverted uterus / Antarmukhi Yoni | 3 | 2026, 2022, 2021 |
| 91 | Congenital malformations of uterus/vagina | 3 | 2022, 2021, 2019 |
| 92 | PID (Pelvic Inflammatory Disease) | 3 | 2024, 2022, 2016 |
๐ด HIGH PRIORITY: Uterine Fibroid (5x), Genital Prolapse (4x)
| # | Important Question | Times Asked | Years |
|---|---|---|---|
| 93 | Cervical Carcinoma - staging, investigations, management | 4 | 2025, 2023, 2022, 2019 |
| 94 | Ovarian cysts/tumors | 2 | 2022, 2020 |
| 95 | PAP smear - indications | 2 | 2026, 2021 |
| # | Important Question | Times Asked | Years |
|---|---|---|---|
| 96 | STDs - classification, causative organisms, complications, prevention | 5 | 2026, 2025, 2023, 2022, 2019 |
| 97 | HIV/AIDS - spreading methods, prevention | 3 | 2026, 2022, 2021 |
| 98 | Syphilis / Upadamsha - prevention | 2 | 2022, 2020 |
๐ด HIGH PRIORITY: STDs (5x)
| # | Important Question | Times Asked | Years |
|---|---|---|---|
| 99 | Stana Vidradhi (Mastitis/Breast abscess) - nidana, bhedas, lakshana, chikitsa | 5 | 2026, 2024, 2023, 2022, 2021 |
| 100 | Stana Keelaka / Stana Granthi (Fibroadenoma) | 3 | 2026, 2022, 2020 |
| 101 | Breast Carcinoma / Stanarbuda | 3 | 2025, 2022, 2021 |
๐ด HIGH PRIORITY: Stana Vidradhi (5x)
| # | Important Question | Times Asked | Years |
|---|---|---|---|
| 102 | Uttarbasti - definition, matra, kala, indications, procedure | 6 | 2026, 2025, 2024, 2022, 2021, 2020 |
| 103 | D&C (Garbhashaya Mukha Vistrutikaran + Lekhana) - indications, procedure | 4 | 2026, 2024, 2022, 2019 |
| 104 | Hysterectomy - types, indications | 3 | 2026, 2022, 2019 |
| 105 | Cervical cauterization - method | 3 | 2022, 2020, 2016 |
| 106 | Agnikarma in Stri Roga - indications, poorva/pradhana/pashchat karma | 3 | 2022, 2020, 2019 |
| 107 | Laparoscopy in Stri Roga | 2 | 2022, 2016 |
| 108 | EB (Endometrial Biopsy) - indications, procedure | 2 | 2022, 2020 |
๐ด HIGH PRIORITY: Uttarbasti - MOST REPEATED question in Paper II Sec B! (6 times across all years)
| # | Important Question | Times Asked | Years |
|---|---|---|---|
| 109 | Female sterilization (Tubectomy) - procedure, advantages/disadvantages | 4 | 2025, 2023, 2022, 2021 |
| 110 | IUCD / Cu-T - insertion, contraindications, complications | 4 | 2026, 2025, 2022, 2021 |
| 111 | Contraceptives (all methods) - Garbha Nirodhaka Upaya | 3 | 2022, 2021, 2020 |
| 112 | MTP Act - methods, eligibility | 3 | 2022, 2021, 2020 |
| 113 | OCP - major complications | 2 | 2026, 2022 |
| 114 | PC-PNDT Act | 2 | 2026, 2022 |
๐ด HIGH PRIORITY: Tubectomy (4x), Cu-T/IUCD (4x)
| # | Important Question | Times Asked | Years |
|---|---|---|---|
| 115 | Pushyanuga Churna - reference, ingredients, dose, indication | 4 | 2026, 2024, 2022, 2020 |
| 116 | Dashmool Kwath - indication, matra, anupan | 2 | 2022, 2020 |
| 117 | Panchavalkala Kwath - ingredients | 2 | 2026, 2022 |
| 118 | Yoni Dhoopana + Yonivarti | 2 | 2026, 2022 |
| 119 | Ashokarishta / Kumaryasava | 2 | 2022, 2019 |
| Rank | Question | Paper | Times |
|---|---|---|---|
| ๐ฅ 1 | Mechanism of Labour / Stages of Labour | P-I | 6 |
| ๐ฅ 1 | Abortion - causes, types, management | P-I | 6 |
| ๐ฅ 1 | Uttarbasti - definition, indications, procedure | P-II | 6 |
| 4 | Diagnosis of Pregnancy | P-I | 5 |
| 4 | Garbhavakranti (month-wise development) | P-I | 5 |
| 4 | PPH - causes, types, management | P-I | 5 |
| 4 | Muda Garbha (Malpresentation) | P-I | 5 |
| 4 | Sutika Avastha changes | P-I | 5 |
| 4 | LSCS - types, indications, procedure | P-I | 5 |
| 4 | PIH / Eclampsia / Hypertensive disorders | P-I | 5 |
| 4 | Samanya Nidana of Yoni Vyapad | P-II | 5 |
| 4 | Vataja Yoni Vyapad + modern co-relation | P-II | 5 |
| 4 | Artava Dushti (8 types) | P-II | 5 |
| 4 | Asrigdara - complete description | P-II | 5 |
| 4 | Menopause / Rajonivrutti | P-II | 5 |
| 4 | Female Infertility - causes, investigations | P-II | 5 |
| 4 | Garbhashaya Arbuda (Uterine Fibroid) | P-II | 5 |
| 4 | STDs - classification, causative organisms | P-II | 5 |
| 4 | Stana Vidradhi (Mastitis) | P-II | 5 |
| 20 | Placenta - formation, functions | P-I | 4 |
The analysis covers 9 years of Gujarat Ayurved University PYQs (2016-2026) across Paper I and Paper II for both Prasuti Tantra and Stri Roga, mapped to the NCISM III BAMS syllabus.