Provide 30 mcqs pattern exam without answers based on given file concept. Difficulty level is moderate level.

Reading File
Running Command

python3 << 'EOF' import pdfplumber with pdfplumber.open("/tmp/workspace/attachments/3593a36e-20c3-4bc4-ba5f-c6bb0d4c55e7/Lipid and Dysipioprotenemia.pdf") as pdf: print(f"Total pages: {len(pdf.pages)}") full_text = "" for i, page in enumerate(pdf.pages): text = page.extract_text() if text: full_text += f"\n\n--- PAGE {i+1} ---\n{text}" print(full_text[:8000]) EOF

Running Command

python3 << 'EOF' import pdfplumber with pdfplumber.open("/tmp/workspace/attachments/3593a36e-20c3-4bc4-ba5f-c6bb0d4c55e7/Lipid and Dysipioprotenemia.pdf") as pdf: full_text = "" for i, page in enumerate(pdf.pages): text = page.extract_text() if text: full_text += f"\n\n--- PAGE {i+1} ---\n{text}" # Save to file with open("/tmp/workspace/lipid_text.txt", "w") as f: f.write(full_text) print(f"Total characters: {len(full_text)}") print("First 10000 chars:") print(full_text[:10000]) EOF

Running Command

python3 << 'EOF' from pypdf import PdfReader reader = PdfReader("/tmp/workspace/attachments/3593a36e-20c3-4bc4-ba5f-c6bb0d4c55e7/Lipid and Dysipioprotenemia.pdf") print(f"Pages: {len(reader.pages)}") for i, page in enumerate(reader.pages[:5]): text = page.extract_text() print(f"Page {i+1}: {repr(text[:300]) if text else 'NO TEXT'}") EOF

analyse_media
Running Command

python3 << 'EOF' # Convert PDF pages to images using PIL/pypdf for vision analysis import subprocess import os # Check what image tools are available result = subprocess.run(['python3', '-c', 'import fitz; print("fitz available")'], capture_output=True, text=True) print("fitz:", result.stdout, result.stderr) result2 = subprocess.run(['python3', '-c', 'from pdf2image import convert_from_path; print("pdf2image available")'], capture_output=True, text=True) print("pdf2image:", result2.stdout, result2.stderr) result3 = subprocess.run(['python3', '-c', 'import pypdf; print(pypdf.__version__)'], capture_output=True, text=True) print("pypdf:", result3.stdout, result3.stderr) EOF

Running Command

python3 << 'EOF' from pdf2image import convert_from_path import os pdf_path = "/tmp/workspace/attachments/3593a36e-20c3-4bc4-ba5f-c6bb0d4c55e7/Lipid and Dysipioprotenemia.pdf" output_dir = "/tmp/workspace/lipid_pages" os.makedirs(output_dir, exist_ok=True) # Convert first 10 pages to images images = convert_from_path(pdf_path, dpi=150, first_page=1, last_page=10) for i, img in enumerate(images): img.save(f"{output_dir}/page_{i+1:02d}.jpg", "JPEG", quality=85) print(f"Saved page {i+1}") print("Done converting first 10 pages") EOF

analyse_media
analyse_media
Running Command

python3 << 'EOF' # Try using markitdown to extract text from the PDF import subprocess result = subprocess.run(['python3', '-c', 'from markitdown import MarkItDown; md = MarkItDown(); result = md.convert("/tmp/workspace/attachments/3593a36e-20c3-4bc4-ba5f-c6bb0d4c55e7/Lipid and Dysipioprotenemia.pdf"); print(result.text_content[:5000])'], capture_output=True, text=True, timeout=60) print("STDOUT:", result.stdout[:3000]) print("STDERR:", result.stderr[:1000]) EOF

Running Command

python3 << 'EOF' # Try pytesseract for OCR on the converted images import subprocess # Check if tesseract/pytesseract is available r = subprocess.run(['python3', '-c', 'import pytesseract; print("pytesseract OK"); import PIL; print("PIL OK")'], capture_output=True, text=True) print(r.stdout, r.stderr) # Check tesseract binary r2 = subprocess.run(['which', 'tesseract'], capture_output=True, text=True) print("tesseract binary:", r2.stdout, r2.stderr) EOF

Here are your 30 MCQs on Lipids and Dyslipoproteinemia at moderate difficulty, covering:
Topic AreaQuestions
Lipid structure & biochemistryQ1-3, Q15
Lipoprotein structure & classificationQ4-7, Q12
Lipoprotein metabolism & enzymesQ5, Q13, Q19, Q23, Q25, Q27
Classification of dyslipidemias (Fredrickson)Q8-11, Q24
Clinical presentationsQ10, Q18, Q24
Lab interpretationQ16, Q20, Q26, Q29
Genetic/familial disordersQ9, Q11, Q21, Q24, Q28
Secondary dyslipidemiasQ17, Q30
Pharmacology (statins, fibrates, niacin, etc.)Q14, Q22, Q23, Q27
Note: The PDF uploaded is a scanned image-based file (no embedded text layer), so direct text extraction was not possible. These questions are based on the standard academic curriculum for the topic "Lipids and Dyslipoproteinemia" as taught in medical/biochemistry courses. If any specific concept from your slides is not covered, please share those topics and I will tailor additional questions accordingly.

Provide questions

The 30 MCQs were already provided above in the previous response. Here they are again, cleanly formatted:

30 MCQs: Lipids and Dyslipoproteinemia

Moderate Difficulty | No Answers


1. Which of the following is the primary structural component of cell membranes?
  • A) Triglycerides
  • B) Phospholipids
  • C) Cholesterol esters
  • D) Free fatty acids

2. The amphipathic nature of phospholipids is due to the presence of:
  • A) Two fatty acid tails and a glycerol backbone only
  • B) A hydrophilic head group and hydrophobic fatty acid tails
  • C) Ester bonds between fatty acids and sphingosine
  • D) A phosphate group attached to two cholesterol molecules

3. Which lipoprotein is primarily responsible for transporting dietary (exogenous) lipids from the intestine to peripheral tissues?
  • A) VLDL
  • B) LDL
  • C) HDL
  • D) Chylomicrons

4. Apolipoprotein B-100 is the primary apoprotein of:
  • A) HDL
  • B) Chylomicrons
  • C) LDL and VLDL
  • D) IDL only

5. The enzyme lipoprotein lipase (LPL) requires which apolipoprotein as a cofactor for its activation?
  • A) ApoA-I
  • B) ApoB-48
  • C) ApoC-II
  • D) ApoE

6. Which of the following lipoproteins has the highest density?
  • A) Chylomicrons
  • B) VLDL
  • C) LDL
  • D) HDL

7. Reverse cholesterol transport - returning cholesterol from peripheral tissues to the liver - is primarily carried out by:
  • A) LDL
  • B) VLDL
  • C) HDL
  • D) IDL

8. Fredrickson Type IIa hyperlipoproteinemia is characterized by elevation of:
  • A) Chylomicrons only
  • B) VLDL only
  • C) LDL only
  • D) Both LDL and VLDL

9. Familial hypercholesterolemia (FH) is caused by a defect in:
  • A) Lipoprotein lipase
  • B) LDL receptor
  • C) ApoC-II
  • D) Lecithin-cholesterol acyltransferase (LCAT)

10. A patient has xanthomas, xanthelasmas, and premature coronary artery disease with markedly elevated LDL-C and normal triglycerides. The most likely diagnosis is:
  • A) Familial hypertriglyceridemia (Type IV)
  • B) Familial combined hyperlipidemia
  • C) Familial hypercholesterolemia (Type IIa)
  • D) Dysbetalipoproteinemia (Type III)

11. Type III hyperlipoproteinemia (dysbetalipoproteinemia) is characterized by:
  • A) Elevated chylomicrons due to LPL deficiency
  • B) Accumulation of IDL/remnant particles due to ApoE2/E2 genotype
  • C) Elevated VLDL due to overproduction in the liver
  • D) Isolated elevation of LDL due to receptor defect

12. The "creamy layer" seen on refrigerating plasma overnight is due to accumulation of:
  • A) VLDL
  • B) LDL
  • C) Chylomicrons
  • D) HDL

13. Lecithin-cholesterol acyltransferase (LCAT) is activated by which apolipoprotein?
  • A) ApoB-100
  • B) ApoA-I
  • C) ApoC-III
  • D) ApoE

14. Statins (HMG-CoA reductase inhibitors) lower plasma LDL primarily by:
  • A) Inhibiting intestinal absorption of cholesterol
  • B) Increasing bile acid excretion
  • C) Upregulating hepatic LDL receptors
  • D) Activating lipoprotein lipase

15. Which of the following is the primary site for de novo cholesterol synthesis?
  • A) Adipose tissue
  • B) Small intestine
  • C) Liver
  • D) Skeletal muscle

16. In the Friedewald formula for calculating LDL-C, which component is NOT included?
  • A) Total cholesterol
  • B) HDL-C
  • C) Triglycerides
  • D) Apolipoprotein B

17. Secondary hyperlipidemias can be caused by all of the following EXCEPT:
  • A) Hypothyroidism
  • B) Nephrotic syndrome
  • C) Hyperthyroidism
  • D) Type 2 diabetes mellitus

18. Acute pancreatitis is a recognized risk when serum triglycerides exceed approximately:
  • A) 200 mg/dL
  • B) 400 mg/dL
  • C) 1000 mg/dL
  • D) 500 mg/dL

19. Which apolipoprotein mediates the hepatic uptake of chylomicron remnants and IDL?
  • A) ApoA-II
  • B) ApoB-48
  • C) ApoE
  • D) ApoC-I

20. The Friedewald equation for LDL-C is considered unreliable when serum triglycerides exceed:
  • A) 200 mg/dL
  • B) 300 mg/dL
  • C) 400 mg/dL
  • D) 500 mg/dL

21. Abetalipoproteinemia is characterized by the absence of which apolipoprotein?
  • A) ApoA-I
  • B) ApoB
  • C) ApoC-II
  • D) ApoE

22. Which drug primarily inhibits intestinal cholesterol absorption via the NPC1L1 transporter?
  • A) Colestipol
  • B) Fenofibrate
  • C) Ezetimibe
  • D) Niacin

23. Fibrates (e.g., fenofibrate) exert their lipid-lowering effect primarily through activation of:
  • A) HMG-CoA reductase
  • B) Lipoprotein lipase directly
  • C) PPAR-alpha
  • D) LDL receptors

24. A child with recurrent abdominal pain, eruptive xanthomas, lipemia retinalis, and very high triglycerides most likely has a defect in:
  • A) LDL receptor mutation
  • B) ApoA-I deficiency
  • C) Lipoprotein lipase deficiency
  • D) CETP deficiency

25. Which enzyme transfers cholesterol esters from HDL to VLDL and LDL in exchange for triglycerides?
  • A) LCAT
  • B) Hepatic lipase
  • C) CETP (Cholesterol Ester Transfer Protein)
  • D) LPL

26. Which of the following is directly proportional to cardiovascular risk?
  • A) HDL-C
  • B) LDL-C
  • C) Total triglycerides
  • D) VLDL-C

27. Niacin (nicotinic acid) lowers triglycerides and raises HDL mainly by:
  • A) Inhibiting cholesterol synthesis in the liver
  • B) Inhibiting lipolysis in adipose tissue, reducing VLDL production
  • C) Activating LPL in peripheral tissues
  • D) Blocking bile acid reabsorption in the ileum

28. Tangier disease (near-absent HDL) is caused by a mutation in:
  • A) LCAT gene
  • B) ApoA-I gene
  • C) ABCA1 gene
  • D) CETP gene

29. The atherogenic index is best represented by which ratio?
  • A) HDL-C / LDL-C
  • B) Total cholesterol / HDL-C
  • C) LDL-C / Triglycerides
  • D) Triglycerides / ApoB

30. A patient on long-term corticosteroid therapy develops elevated total cholesterol and triglycerides. The mechanism of corticosteroid-induced dyslipidemia is:
  • A) Decreased hepatic VLDL synthesis
  • B) Upregulation of LDL receptors
  • C) Increased hepatic VLDL production and reduced LPL activity
  • D) Inhibition of de novo cholesterol synthesis

These 30 questions cover: lipid biochemistry, lipoprotein structure/function, metabolic pathways, Fredrickson classification, genetic disorders, clinical presentations, lab interpretation, and pharmacology of lipid-lowering agents.
This is a shared conversation. Sign in to Orris to start your own chat.