U are best pharmacy professor in world more than 50 years of experience in working top institutions like Harvard , Monash , Oxford . Now u need to answer all the learning objectives with tabulate form for section b( SAQ and LAQ)list all important bold keywords in details on there . Give me easy memory trick to remember these for my exam . Make easy understandable those topics to the students to understand it like pro and can answer any questions related to that in exam .

Reading File
Running Command

cd /home/daytona/workspace/attachments/35dccf59-80e0-4b61-9493-6506fc46ecfa && python3 -c " from pypdf import PdfReader reader = PdfReader('Parenteral Drug Delivery System-PDF.pdf') print(f'Total pages: {len(reader.pages)}') # Extract first 5 pages to find learning objectives and section B for i in range(min(6, len(reader.pages))): print(f'\\n=== PAGE {i+1} ===') print(reader.pages[i].extract_text()) "

Running Command

cd /home/daytona/workspace/attachments/35dccf59-80e0-4b61-9493-6506fc46ecfa && python3 -c " from pypdf import PdfReader reader = PdfReader('Parenteral Drug Delivery System-PDF.pdf') # Extract all pages for i in range(6, 20): print(f'\\n=== PAGE {i+1} ===') print(reader.pages[i].extract_text()) "

Running Command

cd /home/daytona/workspace/attachments/35dccf59-80e0-4b61-9493-6506fc46ecfa && python3 -c " import pdfplumber with pdfplumber.open('Parenteral Drug Delivery System-PDF.pdf') as pdf: for i, page in enumerate(pdf.pages): text = page.extract_text() tables = page.extract_tables() if text and len(text.strip()) > 20: print(f'\\n=== PAGE {i+1} (text) ===') print(text) if tables: print(f'\\n=== PAGE {i+1} (tables) ===') for t in tables: for row in t: print(row) "

Now I have all the content. The PDF contains images with tables that weren't extractable as text (pages 3, 4, 5, 8-11, 15-17 are image-heavy). Let me read the PDF as images for those key visual pages to get the full content.
Running Command

cd /home/daytona/workspace/attachments/35dccf59-80e0-4b61-9493-6506fc46ecfa && python3 -c " import pdfplumber from PIL import Image import io # Convert key pages to images to read table content with pdfplumber.open('Parenteral Drug Delivery System-PDF.pdf') as pdf: # Pages 3,4,5,6,8,9,10,11,15,16 appear to have visual content for page_num in [2,3,4,5,7,8,9,10,14,15,16]: # 0-indexed page = pdf.pages[page_num] img = page.to_image(resolution=150) img.save(f'/home/daytona/workspace/attachments/35dccf59-80e0-4b61-9493-6506fc46ecfa/page_{page_num+1}.png') print(f'Saved page {page_num+1}') "

Running Command

cd /home/daytona/workspace/attachments/35dccf59-80e0-4b61-9493-6506fc46ecfa && python3 -c " import subprocess # Use pdftoppm for faster conversion of specific pages result = subprocess.run(['pdftoppm', '-r', '120', '-png', '-f', '3', '-l', '6', 'Parenteral Drug Delivery System-PDF.pdf', '/home/daytona/workspace/attachments/35dccf59-80e0-4b61-9493-6506fc46ecfa/pg'], capture_output=True, text=True, timeout=30) print('stdout:', result.stdout) print('stderr:', result.stderr) print('returncode:', result.returncode) import os files = [f for f in os.listdir('.') if f.startswith('pg')] print('Files:', files) "

Reading File
Loading Image
Running Command

cd /home/daytona/workspace/attachments/35dccf59-80e0-4b61-9493-6506fc46ecfa && python3 -c " # Use pytesseract OCR on the PNG pages to extract text import subprocess for pg in ['pg-03.png', 'pg-04.png', 'pg-05.png', 'pg-06.png']: result = subprocess.run(['tesseract', pg, 'stdout', '--psm', '6'], capture_output=True, text=True, timeout=30) print(f'\\n=== {pg} ===') print(result.stdout[:3000]) "

Running Command

cd /home/daytona/workspace/attachments/35dccf59-80e0-4b61-9493-6506fc46ecfa && python3 -c " import subprocess # Convert pages 7-11 and 15-17 result = subprocess.run(['pdftoppm', '-r', '120', '-png', '-f', '7', '-l', '11', 'Parenteral Drug Delivery System-PDF.pdf', '/home/daytona/workspace/attachments/35dccf59-80e0-4b61-9493-6506fc46ecfa/pg'], capture_output=True, text=True, timeout=30) print('returncode:', result.returncode) result2 = subprocess.run(['pdftoppm', '-r', '120', '-png', '-f', '15', '-l', '17', 'Parenteral Drug Delivery System-PDF.pdf', '/home/daytona/workspace/attachments/35dccf59-80e0-4b61-9493-6506fc46ecfa/pg'], capture_output=True, text=True, timeout=30) print('returncode2:', result2.returncode) import os files = sorted([f for f in os.listdir('.') if f.startswith('pg')]) print('Files:', files) "

Running Command

cd /home/daytona/workspace/attachments/35dccf59-80e0-4b61-9493-6506fc46ecfa && python3 -c " import subprocess for pg in ['pg-08.png', 'pg-09.png', 'pg-10.png', 'pg-11.png', 'pg-15.png', 'pg-16.png', 'pg-17.png']: result = subprocess.run(['tesseract', pg, 'stdout', '--psm', '6'], capture_output=True, text=True, timeout=30) print(f'\\n=== {pg} ===') print(result.stdout[:3000]) "

I now have all the content from the PDF. Let me compile the comprehensive study guide.I have extracted everything from the PDF. Here is your complete, exam-ready study guide for PHAR 1322 - Parenteral Drug Delivery System, covering all 5 learning objectives in detail.

📚 PHAR 1322 - Parenteral Drug Delivery System

Complete Section B (SAQ & LAQ) Exam Guide


🎯 LEARNING OBJECTIVE 1

Define 'Parenteral' and Differentiate it from the Enteral Route

AspectParenteralEnteral
Word OriginGreek: para (outside) + enteron (intestine)Greek: enteron (intestine)
DefinitionAdministering drugs by any route other than the GI tractAdministering drugs through the GI tract (oral, sublingual, rectal)
Primary MethodInjection (most common understanding)Swallowing, chewing, dissolving under tongue
AbsorptionBypasses gut - direct deliveryMust pass through gut wall
First-Pass MetabolismBypassed (liver does not process it first)Subject to hepatic first-pass effect
When UsedGI tract is compromised, unconscious patientFunctional GI tract, patient is conscious
BioavailabilityUp to 100%Variable (often <100%)
Key Scenario the exam loves: "When oral delivery fails - how do we get life-saving medicine into a patient when the GI tract is compromised? The answer is Parenteral."

🧠 Memory Trick: "PARA = Past Around the gut"

  • Parenteral = Past the intestine
  • Think: You are going PARAllel to the gut - never through it.

🎯 LEARNING OBJECTIVE 2

Advantages and Disadvantages of Parenteral Administration

ADVANTAGESBold KeywordDISADVANTAGESBold Keyword
100% Bioavailability - bypasses first-pass metabolism in the liverBioavailabilityInvasive - breaks the skin barrier, creating infection riskSterility / Infection risk
Rapid onset of action - ideal for emergenciesRapid onsetDifficult to reverse - once injected, drug CANNOT be retrievedIrreversibility
Precise dosing - exact amount deliveredPrecise dosingPain and inconvenience for the patientPatient compliance
Vital for special populations - unconscious, vomiting, nil-by-mouth (NBM) patientsNil-by-mouth / UnconsciousHigher cost - requires sterile manufacturingSterile manufacturing
Protects acid/enzyme-labile drugs that degrade in the gut (e.g., insulin, proteins)Gut degradation bypassRequires trained personnel and aseptic techniqueAseptic technique

🧠 Memory Trick: "BRP-UP vs. I-DPC-R"

Advantages = BRP-UP:
  • Bioavailability 100%
  • Rapid onset
  • Precise dosing
  • Unconscious patients (special populations)
  • Protects labile drugs
Disadvantages = I-DPC-R:
  • Invasive (infection risk)
  • Difficult to reverse
  • Pain/Patient inconvenience
  • Cost (high)
  • Requires trained staff + aseptic technique

🎯 LEARNING OBJECTIVE 3

Three Main Types of Parenteral Injections (ID, SC, IM) - Full Comparison

Non-Negotiable Requirements for ALL parenteral injections:
  1. Absolute Sterility
  2. Pyrogen-free formulations
  3. Precise anatomical technique

Master Comparison Table

ParameterIntradermal (ID)Subcutaneous (SC)Intramuscular (IM)
Injection LayerInto the dermis (between epidermis and hypodermis)Into the hypodermis (fatty/adipose tissue beneath skin)Into the muscle belly
Angle5-15° (almost parallel to skin)45-90° (pinch a skinfold)90° (perpendicular, straight in)
VolumeVery small: 0.1 mLSmall-moderate: up to 1-1.5 mLModerate: up to 5 mL (site-dependent)
Needle GaugeFine: 26-27GFine: 25-27GLonger/wider: 21-23G
Needle LengthShort: 3/8 inchShort: 1/2 to 5/8 inchLong: 1 to 1.5 inches (to reach deep muscle)
Injection SitesInner forearm, upper backAbdomen, upper arm, thighDeltoid (arm), Ventrogluteal (hip), Vastus lateralis (thigh)
Absorption SpeedSlowest (minimal vascularity in dermis)Slow - sustained/depot absorptionFaster than SC due to rich blood supply
Key Clinical UseDiagnostic tests - TB/Mantoux test, allergy screeningDepot formation - slow, sustained release; e.g., Insulin, HeparinVaccines, antibiotics (e.g., Penicillin G Benzathine), antipsychotics
Special FeatureCreates a visible bleb/wheal on skin surfaceCreates a depot for slow releaseTolerates irritating drugs due to muscle bulk and blood flow

Tuberculin (Mantoux) Skin Test - ID Route Detailed

AspectDetail
Agent UsedPurified Protein Derivative (PPD) - TB protein fragments (NOT live bacteria)
MechanismMemory T cells recognize antigen → Delayed-Type Hypersensitivity (DTH) reaction → localized swelling + induration
Read-Time48-72 hours after injection
MeasuredDiameter of induration (raised, firm swelling) in mm - NOT redness
≥ 5 mm positiveVery high-risk: HIV, recent TB contact, immunosuppressed
≥ 10 mm positiveHealthcare workers, high-prevalence countries, certain medical conditions
≥ 15 mm positivePeople with no known TB risk factors
LimitationCannot distinguish Latent vs. Active TB infection
Follow-up TestsChest X-ray, Sputum culture, Interferon-Gamma Release Assay (IGRA)

🧠 Memory Trick for Injection Parameters: "ID-SC-IM = Small-Medium-Large"

Think of it as a sliding scale going DEEPER:
ID → SC → IM
5-15° → 45-90° → 90°       (Angle increases)
0.1 mL → 1.5 mL → 5 mL    (Volume increases)
27G → 25G → 21G            (Gauge decreases = wider needle)
Dermis → Fat → Muscle      (Goes deeper)
Slowest → Slow → Faster    (Absorption speeds up)
Trick for angles: "ID is Inclined (almost flat), SC is Slanted (45°), IM is Immediately straight in (90°)"
Trick for TB test results - "5-10-15, Risk Goes Down":
  • 5mm = Sickest (HIV/immunosuppressed)
  • 10mm = Healthcare/Exposure risk
  • 15mm = Healthy/Low risk

🎯 LEARNING OBJECTIVE 4

Intravenous (IV) Route - Unique Characteristics and Risks

IV Route Characteristics Table

CharacteristicDetail
RouteDirectly into a vein → immediate entry into the bloodstream
OnsetImmediate systemic effect (seconds)
Bioavailability100% (absolute - no absorption barrier)
Use Case 1IV Bolus - single concentrated dose pushed in rapidly (e.g., IV Diazepam for seizures)
Use Case 2IV Infusion - larger volume over longer period (e.g., IV fluids for dehydration, continuous antibiotics)
Special AdvantageCan deliver large volumes (infusions) or irritant drugs (diluted safely in blood)
Most Dangerous?YES - "Once the drug is in, it is IN." - irreversible

IV Severe Risks Table

RiskBold KeywordExplanation
Infection and SepsisSepsis / Pathogen introductionBypassing skin defense introduces pathogens directly into systemic circulation
Dosing ErrorsImmediate toxicityErrors hit the brain and heart IMMEDIATELY (no time to intervene)
Air EmbolismEmbolismAir accidentally introduced into the IV line blocks blood vessels
PhlebitisPhlebitisPainful inflammation of the vein at the injection site
ExtravasationExtravasationLeakage of tissue-damaging drugs (like chemotherapy) into surrounding tissue

🧠 Memory Trick for IV Risks: "SEAPE" (Say it: "Sea-Pay")

  • Sepsis (infection)
  • Errors in dosing (immediate brain/heart effect)
  • Air embolism
  • Phlebitis (vein inflammation)
  • Extravasation (drug leaks out)

🎯 LEARNING OBJECTIVE 5

Clinical Scenario Application - Which Route is Most Appropriate?

Clinical ScenarioBest RouteReasoning
Patient in ER with anaphylaxis, difficulty breathing, needs epinephrine immediatelyIV (or IM) - IV if access available; IM (deltoid) if notNeed rapid onset - life-threatening emergency; IV = immediate; IM = fast enough if IV not available
5-year-old child needs a tuberculosis screening testIntradermal (ID)TB/Mantoux test is always ID; 0.1 mL into inner forearm at 5-15°
Elderly diabetic patient needs daily insulin, will self-inject at homeSubcutaneous (SC)Insulin = classic SC drug; slow sustained absorption; suitable for self-administration; abdomen or thigh
Patient needs 1 litre of saline + electrolytes after severe vomiting and diarrhoeaIntravenous (IV) InfusionLarge volume delivery ONLY possible via IV; direct bloodstream replacement
Depot antipsychotic medication given monthlyIntramuscular (IM)IM depot = slow sustained release from muscle; e.g., haloperidol decanoate
Penicillin G Benzathine for strep infectionIntramuscular (IM)Classic IM antibiotic; muscle tolerates the irritant, sustained release
Allergy skin testIntradermal (ID)Same principle as TB test - small wheal in dermis, read reaction
Chemotherapy for abdominal cavity cancerIntraperitoneal (IP)Delivers directly to peritoneal cavity for localized effect
Spinal analgesia / CNS drug deliveryIntrathecalInto spinal canal → CSF → direct CNS delivery
Emergency when IV access impossible (e.g., pediatric cardiac arrest)Intraosseous (IO)Hollow-bore needle into bone marrow - last resort when veins inaccessible

📊 MASTER SUMMARY TABLE - All 9 Parenteral Routes

RouteWhereSpeedKey UseKeyword
IVVeinFastest/ImmediateEmergencies, fluids, irritantsImmediate / 100% bioavailable
IMMuscle (deltoid, gluteus)Fast (2nd)Vaccines, antibiotics, depotRich blood supply / Depot
SCFat (hypodermis)SlowInsulin, heparin, self-adminSustained release depot
IDDermisSlowestTB test, allergy testDiagnostic / Wheal/bleb
Intra-arterialArteryImmediate localCancer treatment (organ-targeted)Targeted delivery
IntrathecalSpinal canal → CSFDirect CNSSpinal anesthesia, CNS drugsBlood-brain barrier bypass
Intra-articularJoint spaceRapid localArthritis, gout, tendinitisLocal anti-inflammatory
Intraperitoneal (IP)Peritoneal cavityRapid systemicAbdominal chemotherapyPeritoneal chemo
Intraosseous (IO)Bone marrowFast (like IV)Emergency when IV impossibleLast resort / Bone marrow

🧠 MEGA MEMORY TRICKS SUMMARY

1. The "DEEPER" Rule for ID/SC/IM

Go DEEPER → Angle MORE straight → Bigger needle → More volume → Faster absorption
ID (skin) → SC (fat) → IM (muscle)

2. For Parenteral Definition: "PARA = Parallel to the gut (never through it)"

3. Advantages mnemonic: "BRP-UP" (Benefits of Parenteral)

Bioavailability 100% | Rapid onset | Precise | Unconscious patients | Protects labile drugs

4. Disadvantages mnemonic: "I-DPC-R"

Invasive | Difficult to reverse | Pain | Cost | Requires training

5. IV Risks: "SEAPE" (Sea-Pay)

Sepsis | Errors hit immediately | Air embolism | Phlebitis | Extravasation

6. TB Test cut-offs: "5-10-15 = Sick-Exposed-Healthy"

5mm = Immunocompromised/HIV | 10mm = HCW/Exposed | 15mm = No risk factors

7. Routes by speed: "IV > IM > SC > ID" (think: "I Inject Slowly Into Dermis")

8. Pyrogen-free + Sterile + Precise = "PSP - No Compromise" for ALL parenteral routes


📝 EXAM QUICK-ANSWER TEMPLATES

SAQ: Define parenteral and differentiate from enteral.
"Parenteral (from Greek para = outside, enteron = intestine) refers to drug administration by any route bypassing the GI tract, most commonly by injection. Unlike the enteral route (oral, sublingual, rectal) which relies on GI absorption and is subject to first-pass hepatic metabolism, parenteral routes deliver drugs directly into tissues or bloodstream, achieving up to 100% bioavailability."
SAQ: List 3 advantages and 3 disadvantages of parenteral administration.
Advantages: (1) 100% bioavailability - bypasses first-pass metabolism; (2) Rapid onset - ideal for emergencies; (3) Essential for special populations - unconscious, vomiting, nil-by-mouth patients. Disadvantages: (1) Invasive - breaks skin barrier creating infection risk; (2) Irreversible - cannot retrieve the drug once injected; (3) Requires aseptic technique and trained personnel.
LAQ: Compare ID, SC, and IM injections.
Use the full table from LO3 above - cover angle, volume, gauge, site, absorption speed, and clinical use with keywords bolded.
LAQ: Describe the IV route and its risks.
Start with characteristics (immediate onset, 100% bioavailability, bolus vs infusion), then list all 5 risks using SEAPE mnemonic with explanation of each.

Pro tip for exam day: For any "which route?" scenario question, ask yourself three things in order: (1) How fast do I need this to work? (2) How large is the volume? (3) Is self-administration needed? The answers will point you directly to the correct route every time.There you go - a complete, exam-ready guide built directly from your PHAR 1322 lecture PDF. Here's what's covered:

What this guide gives you:
  • 5 Learning Objectives fully answered in tabular format with all bold keywords highlighted
  • LO1 - Parenteral vs. Enteral definition with a comparison table
  • LO2 - Advantages/Disadvantages table with the "BRP-UP vs. I-DPC-R" mnemonic
  • LO3 - Full ID vs. SC vs. IM master comparison (angle, volume, gauge, site, absorption, clinical use) PLUS the complete Tuberculin skin test breakdown with the "5-10-15 = Sick-Exposed-Healthy" trick
  • LO4 - IV route characteristics + all 5 IV risks with the "SEAPE" mnemonic
  • LO5 - Clinical scenario application table covering all real exam-style scenarios (anaphylaxis, TB test, insulin, saline infusion, etc.)
  • Mega Summary - all 9 parenteral routes in one table
  • Ready-to-write SAQ/LAQ templates you can use directly in the exam
Key rule for any scenario question: Fast + Big volume = IV. Self-admin + Slow = SC. Diagnostic skin test = ID. Vaccine/Antibiotic = IM.
This is a shared conversation. Sign in to Orris to start your own chat.