This is a file. of chat INscript given to you. Go through this file thoroughly. Act as an MRCOG 1 mentor and see the chats thoroughly. Make questions +all OPTIONS+ answer+EXPLANATION file in a Word document and provide back to me without intervening chats. It should be only questions +all OPTIONS+ answer+EXPLANATION . ONLY DO 1-10 Q FIRST .GENERATE RESPONSE AND LET ME CHECK FIRST

Reading File
Reading File
Reading File
Reading File
general-purpose

You need to extract all medical questions and their answers from an HTML chat transcript file. The file is at: /home/daytona/workspace/attachments/ad9c7fc4-6acf-4f3b-b700-8dfd81039285/messages2.html This is a Telegram chat export from an MRCOG Part 1 study group. The chat contains MCQ-style questions being asked and answered by group members. Your job: 1. Read the ENTIRE HTML file (it is large - read it in chunks of 300-400 lines using offset pagination). Start at offset 0, then 300, 600, 900, etc., until you reach the end. 2. Extract ALL the medical questions that appear in the chat. These are usually posted as MCQ questions with options (A, B, C, D, E) OR as question-answer pairs where someone asks a question and others answer. 3. For each question, extract: - The full question text - All answer options (if MCQ) - The correct answer (usually confirmed with ✅ or stated as "Ans." by a moderator) - Any explanation given in the chat 4. Return a STRUCTURED LIST of all questions found, in this format: Q1: [question text] Options: A) ... B) ... C) ... D) ... E) ... Answer: [correct answer] Explanation: [any explanation from chat] --- IMPORTANT: The HTML is large. Keep reading until you hit the end. Look for patterns like: - Messages containing question stems (clinical scenarios or factual questions) - Messages with A) B) C) D) options - Messages saying "Ans." or containing ✅ checkmarks indicating correct answer - Explanatory messages following the answer Please read at least 3000 lines of the file total and return ALL questions found.

Reading File
Reading File
Reading File
Reading File
Reading File
Reading File
Reading File
Reading File
Reading File
Reading File
Reading File
Reading File
Reading File
Reading File
Reading File
Reading File
Reading File
Reading File
Reading File
Reading File
Reading File
Reading File
Reading File
Reading File
Reading File
Reading File
Reading File
Reading File
Reading File
Reading File
Reading File
Reading File
Reading File
Reading File
Reading File
Reading File
Reading File
Reading File
Reading File
Reading File
Reading File
Reading File
Reading File
Reading File
Reading File

PLS MAKE ONLY 10 Q FIRST

Reading File
Reading File
Reading File
Reading File
Running Command

python3 -c " from html.parser import HTMLParser class ChatParser(HTMLParser): def __init__(self): super().__init__() self.messages = [] self.current_name = '' self.current_text = '' self.in_from_name = False self.in_text = False self.depth_from = 0 self.depth_text = 0 self.current_class = '' def handle_starttag(self, tag, attrs): attrs_dict = dict(attrs) cls = attrs_dict.get('class','') if 'from_name' in cls: self.in_from_name = True self.current_name = '' if tag == 'div' and cls == 'text': self.in_text = True self.current_text = '' def handle_endtag(self, tag): if self.in_from_name and tag == 'div': self.in_from_name = False if self.in_text and tag == 'div': self.in_text = False if self.current_text.strip(): self.messages.append((self.current_name.strip(), self.current_text.strip())) def handle_data(self, data): if self.in_from_name: self.current_name += data if self.in_text: self.current_text += data with open('/home/daytona/workspace/attachments/ad9c7fc4-6acf-4f3b-b700-8dfd81039285/messages2.html','r',encoding='utf-8') as f: content = f.read() parser = ChatParser() parser.feed(content) # Print first 200 messages for i,(name,text) in enumerate(parser.messages[:200]): print(f'[{i+1}] {name}: {text[:200]}') "

Running Command

python3 -c " from html.parser import HTMLParser class ChatParser(HTMLParser): def __init__(self): super().__init__() self.messages = [] self.current_name = '' self.current_text = '' self.in_from_name = False self.in_text = False def handle_starttag(self, tag, attrs): attrs_dict = dict(attrs) cls = attrs_dict.get('class','') if 'from_name' in cls: self.in_from_name = True self.current_name = '' if tag == 'div' and cls == 'text': self.in_text = True self.current_text = '' def handle_endtag(self, tag): if self.in_from_name and tag == 'div': self.in_from_name = False if self.in_text and tag == 'div': self.in_text = False if self.current_text.strip(): self.messages.append((self.current_name.strip(), self.current_text.strip())) def handle_data(self, data): if self.in_from_name: self.current_name += data if self.in_text: self.current_text += data with open('/home/daytona/workspace/attachments/ad9c7fc4-6acf-4f3b-b700-8dfd81039285/messages2.html','r',encoding='utf-8') as f: content = f.read() parser = ChatParser() parser.feed(content) # Print messages 200-450 for i,(name,text) in enumerate(parser.messages[200:450]): print(f'[{i+201}] {name}: {text[:250]}') "

Reading File
Running Command

ls /home/daytona/workspace/ && ls /home/daytona/skills/docx/

Running Command

mkdir -p /home/daytona/workspace/mrcog1-mcq && cat > /home/daytona/workspace/mrcog1-mcq/generate.js << 'EOF' const { Document, Packer, Paragraph, TextRun, HeadingLevel, AlignmentType, BorderStyle, UnderlineType } = require('docx'); const fs = require('fs'); const questions = [ { num: 1, question: "Which enzyme catalyses the rate-limiting (committed) step in catecholamine synthesis, converting L-tyrosine to L-DOPA?", options: [ "A) Phenylalanine hydroxylase", "B) DOPA decarboxylase", "C) Tyrosine hydroxylase", "D) Dopamine beta-hydroxylase", "E) Monoamine oxidase (MAO)" ], answer: "C) Tyrosine hydroxylase", explanation: "Tyrosine hydroxylase is the rate-limiting enzyme of catecholamine biosynthesis. It catalyses the hydroxylation of L-tyrosine to L-DOPA (3,4-dihydroxyphenylalanine), using tetrahydrobiopterin (BH4) as a cofactor. The subsequent steps are: L-DOPA → Dopamine (by DOPA decarboxylase) → Norepinephrine (by dopamine beta-hydroxylase) → Epinephrine (by PNMT). Phenylalanine hydroxylase converts phenylalanine to tyrosine — its deficiency causes phenylketonuria (PKU). Urinary vanillylmandelic acid (VMA), the end metabolite of catecholamines, is raised in phaeochromocytoma." }, { num: 2, question: "The majority of enzymes involved in the Krebs (TCA) cycle are located in which cellular compartment?", options: [ "A) Cytoplasm", "B) Smooth endoplasmic reticulum", "C) Nucleus", "D) Mitochondria", "E) Peroxisomes" ], answer: "D) Mitochondria", explanation: "The Krebs (tricarboxylic acid / TCA) cycle takes place in the mitochondrial matrix. The enzymes of the cycle are housed in the matrix, and the inner mitochondrial membrane contains the electron transport chain (ETC) complexes I–IV plus ATP synthase. Beta-oxidation of fatty acids also occurs in mitochondria. Glycolysis, in contrast, occurs in the cytoplasm. Peroxisomes handle very-long-chain fatty acid oxidation." }, { num: 3, question: "How many ATP molecules are generated from the complete aerobic oxidation of one glucose molecule?", options: [ "A) 2", "B) 8", "C) 18", "D) 36–38", "E) 56" ], answer: "D) 36–38", explanation: "The complete aerobic oxidation of one glucose molecule yields 36–38 ATP. This accounts for: Glycolysis (net 2 ATP + 2 NADH), Pyruvate decarboxylation (2 NADH), Krebs cycle (6 NADH, 2 FADH2, 2 GTP per glucose), and oxidative phosphorylation via the ETC. Each NADH yields ~2.5 ATP and each FADH2 yields ~1.5 ATP by the P/O ratio (newer values); classical teaching gives 36–38. In contrast, anaerobic glycolysis produces only 2 ATP net (used as the answer for glycolysis alone). The question specifies aerobic oxidation of the whole glucose molecule." }, { num: 4, question: "What is the dietary amino acid precursor of serotonin (5-hydroxytryptamine)?", options: [ "A) Phenylalanine", "B) Tyrosine", "C) Methionine", "D) Tryptophan", "E) Histidine" ], answer: "D) Tryptophan", explanation: "Serotonin (5-HT) is synthesised from the essential amino acid tryptophan. The pathway is: Tryptophan → 5-Hydroxytryptophan (by tryptophan hydroxylase, rate-limiting step) → Serotonin (by aromatic L-amino acid decarboxylase). Tryptophan is one of the essential amino acids remembered by the mnemonic 'TIM PVT HaLL' (Threonine, Isoleucine, Methionine, Phenylalanine, Valine, Tryptophan, Histidine, Leucine, Lysine). Serotonin is further converted to melatonin in the pineal gland." }, { num: 5, question: "Wernicke-Korsakoff syndrome is caused by deficiency of which vitamin?", options: [ "A) Vitamin B2 (Riboflavin)", "B) Vitamin B1 (Thiamine)", "C) Vitamin B6 (Pyridoxine)", "D) Vitamin B12 (Cobalamin)", "E) Vitamin B3 (Niacin)" ], answer: "B) Vitamin B1 (Thiamine)", explanation: "Wernicke-Korsakoff syndrome results from thiamine (vitamin B1) deficiency, most commonly seen in chronic alcohol misuse. Wernicke's encephalopathy presents with the classic triad of confusion, ophthalmoplegia, and ataxia; if untreated, it progresses to Korsakoff's psychosis (anterograde amnesia, confabulation). Thiamine acts as a coenzyme for pyruvate dehydrogenase, alpha-ketoglutarate dehydrogenase, and transketolase. Other thiamine-deficiency syndromes include dry beriberi (peripheral neuropathy), wet beriberi (high-output cardiac failure), and infantile beriberi." }, { num: 6, question: "What type of compound is histone?", options: [ "A) Lipid", "B) Carbohydrate", "C) Nucleic acid", "D) Protein", "E) Glycolipid" ], answer: "D) Protein", explanation: "Histones are basic (positively charged) proteins rich in lysine and arginine residues. They form the protein core of the nucleosome, around which approximately 147 base pairs of DNA are wrapped. The nucleosome consists of an octamer of histone proteins (two copies each of H2A, H2B, H3, H4) plus linker histone H1. Histone modifications (acetylation, methylation, phosphorylation) regulate gene expression — a key concept in epigenetics relevant to MRCOG Part 1." }, { num: 7, question: "Phenylalanine is converted to which compound by the enzyme phenylalanine hydroxylase?", options: [ "A) Dopamine", "B) Tyrosine", "C) L-DOPA", "D) Tryptophan", "E) Homogentisic acid" ], answer: "B) Tyrosine", explanation: "Phenylalanine hydroxylase (PAH) converts phenylalanine to tyrosine, using tetrahydrobiopterin (BH4) as a cofactor. Deficiency of PAH causes phenylketonuria (PKU), the most common inborn error of amino acid metabolism. Classical PKU is defined by phenylalanine levels >1200 µmol/L. Untreated PKU leads to intellectual disability, seizures, and fair skin/hair. Tyrosine then serves as the precursor for catecholamines, thyroid hormones, and melanin." }, { num: 8, question: "Which enzyme is used in the polymerase chain reaction (PCR) technique?", options: [ "A) DNA ligase", "B) RNA polymerase", "C) Taq polymerase", "D) Restriction endonuclease", "E) Reverse transcriptase" ], answer: "C) Taq polymerase", explanation: "PCR uses Taq polymerase, a heat-stable DNA polymerase derived from the thermophilic bacterium Thermus aquaticus. Its heat stability is essential because PCR involves repeated cycles of denaturation at ~94–95°C. The three steps of each PCR cycle are: (1) Denaturation (~95°C), (2) Annealing (~55–65°C), (3) Extension (~72°C). Taq polymerase lacks 3'→5' proofreading exonuclease activity; Pfu polymerase is used when higher fidelity is required. Reverse transcriptase is used in RT-PCR to first convert RNA into cDNA." }, { num: 9, question: "A patient with Crohn's disease affecting the terminal ileum is most likely to develop which type of anaemia?", options: [ "A) Haemolytic anaemia", "B) Aplastic anaemia", "C) Megaloblastic anaemia (B12 deficiency)", "D) Iron-deficiency anaemia", "E) Anaemia of chronic disease only" ], answer: "D) Iron-deficiency anaemia", explanation: "Crohn's disease most commonly causes iron-deficiency anaemia (IDA). Although the terminal ileum is the most frequent site of Crohn's involvement (affecting vitamin B12 absorption), the overall most common anaemia in Crohn's disease is IDA — due to chronic intestinal blood loss, reduced dietary intake, and malabsorption. IDA produces a microcytic, hypochromic anaemia with low serum ferritin and low transferrin saturation. Megaloblastic anaemia due to B12 deficiency can occur specifically when the terminal ileum is extensively diseased or resected, but IDA is far more prevalent in Crohn's disease overall." }, { num: 10, question: "What is the most important cation in the intracellular fluid (ICF)?", options: [ "A) Sodium (Na+)", "B) Calcium (Ca2+)", "C) Magnesium (Mg2+)", "D) Potassium (K+)", "E) Chloride (Cl-)" ], answer: "D) Potassium (K+)", explanation: "Potassium (K+) is the predominant cation inside cells (intracellular fluid). Its intracellular concentration is approximately 140–150 mmol/L, maintained by the Na+/K+-ATPase pump. Sodium (Na+) is the predominant extracellular cation (~140 mmol/L in ECF). The major intracellular anion is phosphate (HPO4²-). The resting membrane potential of cells depends critically on the K+ concentration gradient across the cell membrane. Note: Chloride (Cl-) is an anion, not a cation." } ]; const children = []; // Title children.push( new Paragraph({ text: "MRCOG Part 1 – MCQ Practice Questions (Questions 1–10)", heading: HeadingLevel.HEADING_1, alignment: AlignmentType.CENTER, spacing: { after: 300 } }) ); children.push( new Paragraph({ text: "Topic: Biochemistry | Source: MRCOG 1 Fast Track Study Group", alignment: AlignmentType.CENTER, spacing: { after: 400 }, children: [new TextRun({ text: "Topic: Biochemistry | Source: MRCOG 1 Fast Track Study Group", italics: true, size: 22 })] }) ); for (const q of questions) { // Question number + stem children.push( new Paragraph({ spacing: { before: 300, after: 100 }, children: [ new TextRun({ text: `Question ${q.num}. `, bold: true, size: 24 }), new TextRun({ text: q.question, bold: true, size: 24 }) ] }) ); // Options for (const opt of q.options) { children.push( new Paragraph({ spacing: { after: 60 }, indent: { left: 360 }, children: [new TextRun({ text: opt, size: 22 })] }) ); } // Answer children.push( new Paragraph({ spacing: { before: 120, after: 60 }, children: [ new TextRun({ text: "Answer: ", bold: true, color: "1F5C99", size: 22 }), new TextRun({ text: q.answer, bold: true, color: "1F5C99", size: 22 }) ] }) ); // Explanation children.push( new Paragraph({ spacing: { before: 60, after: 200 }, children: [ new TextRun({ text: "Explanation: ", bold: true, size: 22 }), new TextRun({ text: q.explanation, size: 22 }) ] }) ); // Divider children.push( new Paragraph({ text: "─────────────────────────────────────────────────", alignment: AlignmentType.CENTER, spacing: { after: 100 }, children: [new TextRun({ text: "─────────────────────────────────────────────────", color: "AAAAAA", size: 18 })] }) ); } const doc = new Document({ sections: [{ properties: {}, children: children }] }); Packer.toBuffer(doc).then(buffer => { fs.writeFileSync('/home/daytona/workspace/mrcog1-mcq/MRCOG1_MCQ_Q1_to_Q10.docx', buffer); console.log('Done! File written.'); }); EOF node /home/daytona/workspace/mrcog1-mcq/generate.js

Running Command

python3 /home/daytona/skills/docx/scripts/office/validate.py /home/daytona/workspace/mrcog1-mcq/MRCOG1_MCQ_Q1_to_Q10.docx

Running Command

ls -lh /home/daytona/workspace/mrcog1-mcq/MRCOG1_MCQ_Q1_to_Q10.docx && python3 -c " import zipfile with zipfile.ZipFile('/home/daytona/workspace/mrcog1-mcq/MRCOG1_MCQ_Q1_to_Q10.docx') as z: print('Valid ZIP/DOCX:', z.namelist()[:5]) "

The file is valid. Here's your Word document with the first 10 questions:

MRCOG1 MCQ Q1 to Q10

Word Document · DOCX


Here is a preview of all 10 questions included:

Q1. Which enzyme catalyses the rate-limiting step in catecholamine synthesis? Options: A) Phenylalanine hydroxylase B) DOPA decarboxylase C) Tyrosine hydroxylase D) Dopamine beta-hydroxylase E) MAO Answer: C) Tyrosine hydroxylase

Q2. Most enzymes of the Krebs cycle are located in which cellular compartment? Options: A) Cytoplasm B) Smooth ER C) Nucleus D) Mitochondria E) Peroxisomes Answer: D) Mitochondria

Q3. How many ATPs are generated from complete aerobic oxidation of one glucose molecule? Options: A) 2 B) 8 C) 18 D) 36–38 E) 56 Answer: D) 36–38

Q4. What is the precursor of serotonin? Options: A) Phenylalanine B) Tyrosine C) Methionine D) Tryptophan E) Histidine Answer: D) Tryptophan

Q5. Wernicke-Korsakoff syndrome is caused by deficiency of which vitamin? Options: A) B2 B) B1 (Thiamine) C) B6 D) B12 E) B3 Answer: B) Vitamin B1

Q6. What type of compound is histone? Options: A) Lipid B) Carbohydrate C) Nucleic acid D) Protein E) Glycolipid Answer: D) Protein

Q7. Phenylalanine is converted to which compound by phenylalanine hydroxylase? Options: A) Dopamine B) Tyrosine C) L-DOPA D) Tryptophan E) Homogentisic acid Answer: B) Tyrosine

Q8. Which enzyme is used in PCR? Options: A) DNA ligase B) RNA polymerase C) Taq polymerase D) Restriction endonuclease E) Reverse transcriptase Answer: C) Taq polymerase

Q9. Crohn's disease most commonly causes which type of anaemia? Options: A) Haemolytic B) Aplastic C) Megaloblastic D) Iron-deficiency E) Anaemia of chronic disease only Answer: D) Iron-deficiency anaemia

Q10. What is the most important cation in the intracellular fluid? Options: A) Na+ B) Ca2+ C) Mg2+ D) K+ E) Cl- Answer: D) Potassium (K+)

Please review and let me know if you'd like any changes to the format, explanations, or options - then I'll proceed with the next batch!

Create questions 11-20 from the chat file

Running Command

python3 -c " from html.parser import HTMLParser class ChatParser(HTMLParser): def __init__(self): super().__init__() self.messages = [] self.current_name = '' self.current_text = '' self.in_from_name = False self.in_text = False def handle_starttag(self, tag, attrs): attrs_dict = dict(attrs) cls = attrs_dict.get('class','') if 'from_name' in cls: self.in_from_name = True self.current_name = '' if tag == 'div' and cls == 'text': self.in_text = True self.current_text = '' def handle_endtag(self, tag): if self.in_from_name and tag == 'div': self.in_from_name = False if self.in_text and tag == 'div': self.in_text = False if self.current_text.strip(): self.messages.append((self.current_name.strip(), self.current_text.strip())) def handle_data(self, data): if self.in_from_name: self.current_name += data if self.in_text: self.current_text += data with open('/home/daytona/workspace/attachments/ad9c7fc4-6acf-4f3b-b700-8dfd81039285/messages2.html','r',encoding='utf-8') as f: content = f.read() parser = ChatParser() parser.feed(content) # Print messages 450-800 for i,(name,text) in enumerate(parser.messages[450:800]): print(f'[{i+451}] {name}: {text[:300]}') "

Running Command

python3 -c " from html.parser import HTMLParser class ChatParser(HTMLParser): def __init__(self): super().__init__() self.messages = [] self.current_name = '' self.current_text = '' self.in_from_name = False self.in_text = False def handle_starttag(self, tag, attrs): attrs_dict = dict(attrs) cls = attrs_dict.get('class','') if 'from_name' in cls: self.in_from_name = True self.current_name = '' if tag == 'div' and cls == 'text': self.in_text = True self.current_text = '' def handle_endtag(self, tag): if self.in_from_name and tag == 'div': self.in_from_name = False if self.in_text and tag == 'div': self.in_text = False if self.current_text.strip(): self.messages.append((self.current_name.strip(), self.current_text.strip())) def handle_data(self, data): if self.in_from_name: self.current_name += data if self.in_text: self.current_text += data with open('/home/daytona/workspace/attachments/ad9c7fc4-6acf-4f3b-b700-8dfd81039285/messages2.html','r',encoding='utf-8') as f: content = f.read() parser = ChatParser() parser.feed(content) # Print messages 800-1100 for i,(name,text) in enumerate(parser.messages[800:1100]): print(f'[{i+801}] {name}: {text[:300]}') "

!

Failed to create session: bad request: failed to resolve container IP after 3 attempts: no IP address found. Is the Sandbox started?

We encountered an error while processing your request. Please try again or reach out to us for help.

PLS DO NOT GIVE SO MANY ERRORS

Running Command

mkdir -p /home/daytona/workspace/mrcog1-mcq && cat > /home/daytona/workspace/mrcog1-mcq/generate_q11_20.js << 'JSEOF' const { Document, Packer, Paragraph, TextRun, HeadingLevel, AlignmentType } = require('docx'); const fs = require('fs'); const questions = [ { num: 11, question: "Which of the following is the most important cation in the intracellular fluid (ICF), and which vitamin is required for collagen synthesis?", question: "Which vitamin is required for collagen synthesis?", options: [ "A) Vitamin A", "B) Vitamin B12", "C) Vitamin C", "D) Vitamin D", "E) Vitamin K" ], answer: "C) Vitamin C", explanation: "Vitamin C (ascorbic acid) is essential for collagen synthesis. It acts as a cofactor for prolyl hydroxylase and lysyl hydroxylase enzymes, which hydroxylate proline and lysine residues in procollagen chains. This hydroxylation is necessary for the cross-linking and stabilisation of the triple helix structure of collagen. Deficiency of Vitamin C causes scurvy, characterised by poor wound healing, perifollicular haemorrhages, bleeding gums, and corkscrew hairs - all reflecting defective collagen." }, { num: 12, question: "What is the biochemical composition of heparin?", options: [ "A) Lipoprotein", "B) Glycoprotein / Polysaccharide (mucopolysaccharide)", "C) Steroid", "D) Nucleoprotein", "E) Phospholipid" ], answer: "B) Glycoprotein / Polysaccharide (mucopolysaccharide)", explanation: "Heparin is a highly sulphated glycosaminoglycan (mucopolysaccharide), belonging to the family of polysaccharides. It is composed of repeating disaccharide units of uronic acid and glucosamine. It is produced and stored in mast cell granules and basophils. Heparin exerts its anticoagulant effect by binding antithrombin III, potentiating its inhibition of thrombin (Factor IIa) and Factor Xa. Both 'polysaccharide' and 'glycoprotein' have been accepted as correct in MRCOG recall papers; the most precise answer is mucopolysaccharide/glycosaminoglycan." }, { num: 13, question: "Where in the body are ketone bodies produced during starvation?", options: [ "A) Kidney", "B) Brain", "C) Skeletal muscle", "D) Liver", "E) Adipose tissue" ], answer: "D) Liver", explanation: "Ketone bodies (acetoacetate, beta-hydroxybutyrate, and acetone) are produced exclusively in the liver, in the mitochondrial matrix, through the process of ketogenesis. During starvation or uncontrolled diabetes, low insulin and high glucagon levels promote lipolysis. Free fatty acids are taken up by the liver and undergo beta-oxidation to acetyl-CoA, which is then converted to ketone bodies. Although produced in the liver, ketone bodies cannot be utilised by the liver itself - they are exported to peripheral tissues (brain, heart, skeletal muscle) as an alternative fuel source." }, { num: 14, question: "How many carbon atoms are present in the steroid nucleus of estrogen?", options: [ "A) 27", "B) 21", "C) 19", "D) 18", "E) 14" ], answer: "D) 18", explanation: "Estrogen has 18 carbon atoms in its steroid nucleus (C18 steroid). A useful mnemonic for steroid carbon numbers: Cholesterol = 27C, Corticosteroids/Progesterone = 21C, Androgens = 19C, Estrogens = 18C. Estrogens are characterised by an aromatic A ring and the absence of a methyl group at C-10, which distinguishes them from androgens. Aromatase enzyme converts androgens (C19) to estrogens (C18) by removing the C-10 methyl group and aromatising ring A." }, { num: 15, question: "Which protein is coiled around DNA in the nucleus to help condense it into chromatin? (Jan 2018 MRCOG)", options: [ "A) Polymerase", "B) Cytosine", "C) Helicase", "D) Histones", "E) Steroid receptor" ], answer: "D) Histones", explanation: "Histones are basic (positively charged) proteins rich in lysine and arginine that associate with negatively charged DNA to form nucleosomes - the fundamental repeating units of chromatin. Each nucleosome consists of ~147 bp of DNA wrapped around an octamer of histone proteins (H2A, H2B, H3, H4, x2 each), with linker histone H1 sealing the structure. Histone modifications (acetylation, methylation, phosphorylation) regulate gene expression and are a major focus of epigenetics. Helicase unwinds DNA during replication; it does not coil around DNA." }, { num: 16, question: "Which of the following proteins is a major tumour suppressor gene product? (Jan 2018 MRCOG)", options: [ "A) TNF-alpha", "B) IL-8", "C) HLA-B27", "D) p53", "E) RAS" ], answer: "D) p53", explanation: "p53 (encoded by the TP53 gene on chromosome 17p13) is the most commonly mutated tumour suppressor gene in human cancers, earning the name 'guardian of the genome'. It halts the cell cycle at G1/S checkpoint in response to DNA damage, allowing repair, or triggers apoptosis if damage is irreparable. Germline TP53 mutations cause Li-Fraumeni syndrome. Other tumour suppressor genes include BRCA1/2, RB (retinoblastoma), APC, VHL, and PTEN. RAS is an oncogene (promotes cell proliferation when mutated). HPV E6 protein degrades p53, while E7 inactivates pRb." }, { num: 17, question: "Following radical hysterectomy and pelvic lymphadenectomy for Stage I cervical carcinoma, a 63-year-old woman reports weakness of hip adduction. Which nerve was most likely injured?", options: [ "A) Obturator nerve", "B) Femoral nerve", "C) Inferior gluteal nerve", "D) Superior gluteal nerve", "E) Sciatic nerve" ], answer: "A) Obturator nerve", explanation: "The obturator nerve (L2-L4) runs along the lateral pelvic wall, passing through the obturator foramen. It innervates the hip adductor muscles (adductor longus, brevis, magnus, gracilis, and obturator externus). It lies on the floor of the ovarian fossa, closely related to the pelvic ureter, making it vulnerable during radical hysterectomy and pelvic lymphadenectomy. Key distinction: Femoral nerve injury causes loss of hip flexion and knee extension (inability to climb stairs) and loss of anterior thigh sensation. Obturator nerve injury causes loss of hip adduction and medial thigh sensation." }, { num: 18, question: "What is the primary action of mRNA (messenger RNA)? (Jan 2018 MRCOG)", options: [ "A) Translation - carries the code for protein synthesis", "B) Transcription - copies DNA into RNA", "C) Transfer - carries amino acids to the ribosome", "D) DNA synthesis - replicates the genome", "E) Reverse transcription - converts RNA back to DNA" ], answer: "A) Translation - carries the code for protein synthesis", explanation: "mRNA (messenger RNA) carries the genetic information transcribed from DNA and serves as the template for translation - the synthesis of proteins at ribosomes. Key molecular biology steps: Transcription = DNA → mRNA (occurs in nucleus, by RNA polymerase II). Translation = mRNA → Protein (occurs at ribosomes, directed by mRNA codons, with tRNA carrying amino acids). tRNA carries specific amino acids to the ribosome. rRNA forms the structural and catalytic core of ribosomes. Reverse transcriptase converts RNA back to DNA (used by retroviruses like HIV, and in RT-PCR)." }, { num: 19, question: "The progesterone receptor is an example of which type of receptor?", options: [ "A) Guanylate cyclase receptor", "B) Nuclear receptor", "C) Tyrosine kinase receptor", "D) Ligand-gated ion channel", "E) G protein-coupled receptor" ], answer: "B) Nuclear receptor", explanation: "Progesterone is a steroid hormone. Steroid hormones are lipid-soluble and cross the cell membrane freely to bind intracellular (nuclear) receptors. The mnemonic for nuclear receptor ligands is STRIVE: Steroids (cortisol, aldosterone, testosterone, estrogen, progesterone), Thyroid hormone, Retinoids (Vitamin A), Iodothyronines, Vitamin D, Estrogen. On binding, the receptor-hormone complex acts as a transcription factor, directly altering gene expression. In contrast, peptide hormones and insulin bind cell surface receptors (tyrosine kinase, G-protein coupled, etc.) because they cannot cross the lipid bilayer." }, { num: 20, question: "What will be the karyotype for Edward's syndrome in a male patient? (September 2017 MRCOG)", options: [ "A) 46, XX", "B) 46, XXY", "C) 47, XX+18", "D) 47, XY+18", "E) 45, XO" ], answer: "D) 47, XY+18", explanation: "Edward's syndrome (Trisomy 18) is caused by an extra copy of chromosome 18, giving a total of 47 chromosomes. In a male patient, the sex chromosomes are XY, so the karyotype is 47, XY+18. Key chromosomal trisomy karyotypes to remember: Down syndrome (Trisomy 21): 47, XY+21 (male) or 47, XX+21 (female). Patau syndrome (Trisomy 13): 47, XY+13. Edward's syndrome (Trisomy 18): 47, XY+18. Klinefelter syndrome: 47, XXY. Turner syndrome: 45, XO. Edward's syndrome features: rocker-bottom feet, clenched fists with overlapping fingers, micrognathia, VSD, and low birth weight. It carries a very poor prognosis." } ]; const children = []; // Title children.push( new Paragraph({ heading: HeadingLevel.HEADING_1, alignment: AlignmentType.CENTER, spacing: { after: 200 }, children: [new TextRun({ text: "MRCOG Part 1 - MCQ Practice Questions (11-20)", bold: true, size: 28 })] }) ); children.push( new Paragraph({ alignment: AlignmentType.CENTER, spacing: { after: 400 }, children: [new TextRun({ text: "Topics: Biochemistry, Molecular Biology, Anatomy | MRCOG 1 Fast Track Study Group", italics: true, size: 22, color: "555555" })] }) ); for (const q of questions) { // Question children.push( new Paragraph({ spacing: { before: 300, after: 120 }, children: [ new TextRun({ text: `Q${q.num}. `, bold: true, size: 24, color: "1A3A6B" }), new TextRun({ text: q.question, bold: true, size: 24 }) ] }) ); // Options for (const opt of q.options) { children.push( new Paragraph({ spacing: { after: 60 }, indent: { left: 400 }, children: [new TextRun({ text: opt, size: 22 })] }) ); } // Answer label children.push( new Paragraph({ spacing: { before: 140, after: 60 }, children: [ new TextRun({ text: "ANSWER: ", bold: true, size: 22, color: "1F7A1F" }), new TextRun({ text: q.answer, bold: true, size: 22, color: "1F7A1F" }) ] }) ); // Explanation children.push( new Paragraph({ spacing: { before: 60, after: 60 }, children: [ new TextRun({ text: "EXPLANATION: ", bold: true, size: 22 }), new TextRun({ text: q.explanation, size: 22 }) ] }) ); // Divider children.push( new Paragraph({ spacing: { before: 100, after: 80 }, alignment: AlignmentType.CENTER, children: [new TextRun({ text: "- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -", color: "BBBBBB", size: 18 })] }) ); } const doc = new Document({ sections: [{ properties: {}, children }] }); Packer.toBuffer(doc).then(buffer => { fs.writeFileSync('/home/daytona/workspace/mrcog1-mcq/MRCOG1_MCQ_Q11_to_Q20.docx', buffer); console.log('File written successfully.'); }); JSEOF node /home/daytona/workspace/mrcog1-mcq/generate_q11_20.js

Running Command

python3 -c " import zipfile z = zipfile.ZipFile('/home/daytona/workspace/mrcog1-mcq/MRCOG1_MCQ_Q11_to_Q20.docx') print('Valid DOCX:', z.namelist()[:4]) z.close() import os print('Size:', os.path.getsize('/home/daytona/workspace/mrcog1-mcq/MRCOG1_MCQ_Q11_to_Q20.docx'), 'bytes') "

Done! Here is your file:

MRCOG1 MCQ Q11 to Q20

Word Document · DOCX


Here is a quick summary of all 10 questions included:
QTopicAnswer
11Vitamin required for collagen synthesisC) Vitamin C
12Biochemical composition of heparinB) Polysaccharide / Mucopolysaccharide
13Where ketone bodies are produced during starvationD) Liver
14Number of carbons in estrogenD) 18
15Protein coiled around DNA in nucleus (Jan 2018)D) Histones
16Major tumour suppressor gene product (Jan 2018)D) p53
17Nerve injured causing loss of hip adduction after radical hysterectomyA) Obturator nerve
18Primary action of mRNA (Jan 2018)A) Translation
19Type of receptor for progesteroneB) Nuclear receptor
20Karyotype of Edward's syndrome in a male (Sep 2017)D) 47, XY+18

Let me know when you have checked and I'll proceed with Q21-30!

PLS GO AHEAD

Running Command

python3 -c " from html.parser import HTMLParser class ChatParser(HTMLParser): def __init__(self): super().__init__() self.messages = [] self.current_name = '' self.current_text = '' self.in_from_name = False self.in_text = False def handle_starttag(self, tag, attrs): attrs_dict = dict(attrs) cls = attrs_dict.get('class','') if 'from_name' in cls: self.in_from_name = True self.current_name = '' if tag == 'div' and cls == 'text': self.in_text = True self.current_text = '' def handle_endtag(self, tag): if self.in_from_name and tag == 'div': self.in_from_name = False if self.in_text and tag == 'div': self.in_text = False if self.current_text.strip(): self.messages.append((self.current_name.strip(), self.current_text.strip())) def handle_data(self, data): if self.in_from_name: self.current_name += data if self.in_text: self.current_text += data with open('/home/daytona/workspace/attachments/ad9c7fc4-6acf-4f3b-b700-8dfd81039285/messages2.html','r',encoding='utf-8') as f: content = f.read() parser = ChatParser() parser.feed(content) for i,(name,text) in enumerate(parser.messages[796:1150]): print(f'[{i+797}] {name}: {text[:300]}') "

Running Command

python3 -c " from html.parser import HTMLParser class ChatParser(HTMLParser): def __init__(self): super().__init__() self.messages = [] self.current_name = '' self.current_text = '' self.in_from_name = False self.in_text = False def handle_starttag(self, tag, attrs): attrs_dict = dict(attrs) cls = attrs_dict.get('class','') if 'from_name' in cls: self.in_from_name = True self.current_name = '' if tag == 'div' and cls == 'text': self.in_text = True self.current_text = '' def handle_endtag(self, tag): if self.in_from_name and tag == 'div': self.in_from_name = False if self.in_text and tag == 'div': self.in_text = False if self.current_text.strip(): self.messages.append((self.current_name.strip(), self.current_text.strip())) def handle_data(self, data): if self.in_from_name: self.current_name += data if self.in_text: self.current_text += data with open('/home/daytona/workspace/attachments/ad9c7fc4-6acf-4f3b-b700-8dfd81039285/messages2.html','r',encoding='utf-8') as f: content = f.read() parser = ChatParser() parser.feed(content) for i,(name,text) in enumerate(parser.messages[988:1250]): print(f'[{i+989}] {name}: {text[:300]}') "

Running Command

python3 -c " from html.parser import HTMLParser class ChatParser(HTMLParser): def __init__(self): super().__init__() self.messages = [] self.current_name = '' self.current_text = '' self.in_from_name = False self.in_text = False def handle_starttag(self, tag, attrs): attrs_dict = dict(attrs) cls = attrs_dict.get('class','') if 'from_name' in cls: self.in_from_name = True self.current_name = '' if tag == 'div' and cls == 'text': self.in_text = True self.current_text = '' def handle_endtag(self, tag): if self.in_from_name and tag == 'div': self.in_from_name = False if self.in_text and tag == 'div': self.in_text = False if self.current_text.strip(): self.messages.append((self.current_name.strip(), self.current_text.strip())) def handle_data(self, data): if self.in_from_name: self.current_name += data if self.in_text: self.current_text += data with open('/home/daytona/workspace/attachments/ad9c7fc4-6acf-4f3b-b700-8dfd81039285/messages2.html','r',encoding='utf-8') as f: content = f.read() parser = ChatParser() parser.feed(content) print('Total messages:', len(parser.messages)) # find messages from 985 onward for i,(name,text) in enumerate(parser.messages[985:]): print(f'[{i+986}] {name}: {text[:300]}') if i > 200: break "

Running Command

cat > /home/daytona/workspace/mrcog1-mcq/generate_q21_30.js << 'JSEOF' const { Document, Packer, Paragraph, TextRun, HeadingLevel, AlignmentType } = require('docx'); const fs = require('fs'); const questions = [ { num: 21, question: "A pregnant woman at 8 weeks attends for genetic counselling. She is concerned about cystic fibrosis as her sister has an affected child. She is confirmed to be a carrier; her partner is normal (non-carrier). What is the risk of their child having cystic fibrosis? (Sep 2017 MRCOG)", options: [ "A) 0%", "B) 25%", "C) 50%", "D) 75%", "E) 100%" ], answer: "A) 0%", explanation: "Cystic fibrosis (CF) is an autosomal recessive condition caused by mutations in the CFTR gene (chromosome 7q). The mother is a carrier (Cc) and the father is completely normal (CC). Punnett square: CC x Cc gives offspring CC (50%) and Cc (50%) - no child can be affected (cc). Therefore the risk of having an affected child is 0%. 50% of offspring will be carriers. This contrasts with two carrier parents (Cc x Cc) where risk of affected child is 25%. In MRCOG genetics questions, always draw the Punnett square mentally before answering." }, { num: 22, question: "A mother has sickle cell disease (SS). Her husband has sickle cell trait (AS). What is the probability of their baby having sickle cell disease? (Sep 2017 MRCOG)", options: [ "A) 0%", "B) 25%", "C) 50%", "D) 75%", "E) 100%" ], answer: "C) 50%", explanation: "Sickle cell disease (SCD) is autosomal recessive, caused by a point mutation in the beta-globin gene (HBB, chromosome 11p). Mother is SS (affected), father is AS (trait/carrier). Punnett square: SS x AS gives AS (50%) and SS (50%). Therefore 50% of offspring will have sickle cell disease (SS) and 50% will have sickle cell trait (AS). No offspring will be completely normal (AA). This is an important distinction from CF where the normal parent contributes only normal alleles. Always identify the parental genotypes precisely before calculating risk." }, { num: 23, question: "Which histological finding best describes endometrium showing enlarged and tortuous glands? (Sep 2017 MRCOG)", options: [ "A) Decidual reaction", "B) Atrophic endometrium", "C) Proliferative endometrium", "D) Secretory endometrium", "E) Arias-Stella phenomenon" ], answer: "D) Secretory endometrium", explanation: "Secretory endometrium (post-ovulation, days 14-28) is characterised by enlarged, tortuous, corkscrew-shaped glands with subnuclear vacuolation (glycogen vacuoles beneath the nucleus) - the earliest histological sign of ovulation. Key buzz words: Proliferative phase: straight tubular glands, mitoses, pseudostratified epithelium. Secretory phase: enlarged tortuous glands, subnuclear vacuolation, saw-toothed appearance. Decidual reaction: stromal cells enlarge, become polygonal (pregnancy/progesterone effect). Arias-Stella phenomenon: hypersecretory glands with large hyperchromatic nuclei and cytoplasmic vacuoles - seen in ectopic pregnancy. Atrophic: small, sparse, inactive glands." }, { num: 24, question: "Psammoma bodies are a histological feature of ovarian papillary serous cystadenoma. Psammoma bodies are primarily composed of: (Sep 2017 MRCOG)", options: [ "A) Calcium", "B) Iron", "C) Fibrin", "D) Mucin", "E) Lipid" ], answer: "A) Calcium", explanation: "Psammoma bodies are concentric, lamellated, calcified (calcium) structures seen histologically. They represent dystrophic calcification within areas of cell necrosis. They are a classic feature of: Papillary serous cystadenocarcinoma of the ovary, Papillary thyroid carcinoma, Meningioma, and Papillary renal cell carcinoma. In ovarian tumours, they are specifically associated with serous-type (not mucinous). Mucinous tumours are characterised by mucin-filled vacuoles and goblet cells. Iron deposits are seen in haemosiderin-laden macrophages (e.g. endometriosis). Fibrin is seen in thrombi and inflammatory exudates." }, { num: 25, question: "Which type of testicular cells are phagocytic for residual bodies left over from spermiogenesis? (Sep 2017 MRCOG)", options: [ "A) Testicular mesenchymal cells", "B) Testicular macrophages", "C) Fibroblast cells", "D) Interstitial cells of Leydig", "E) Sertoli cells" ], answer: "E) Sertoli cells", explanation: "Sertoli cells (sustentacular cells) perform phagocytosis of residual cytoplasmic bodies shed during spermiogenesis - the final stage of spermatogenesis where spermatids transform into spermatozoa, shedding up to 70% of their cytoplasm as residual bodies. Key functions of Sertoli cells: (1) Structural support and nourishment of developing germ cells; (2) Phagocytosis of residual bodies; (3) Formation of the blood-testis barrier (tight junctions); (4) Secretion of inhibin B (inhibits FSH); (5) Secretion of androgen-binding protein (ABP); (6) Secretion of Mullerian Inhibiting Substance (MIS/AMH) during embryogenesis. Leydig cells secrete testosterone in response to LH." }, { num: 26, question: "A patient presents with an ovarian mass and pleural effusion. Histopathology reveals white, firm tissue composed of spindle-shaped cells. What is the diagnosis? (Sep 2017 MRCOG)", options: [ "A) Glioma", "B) Sarcoma", "C) Fibroma", "D) Leiomyoma", "E) Adenoma" ], answer: "C) Fibroma", explanation: "The combination of ovarian fibroma + ascites + pleural effusion is Meigs syndrome - a classic MRCOG triad. Ovarian fibroma is a benign sex cord-stromal tumour composed of fibroblasts (spindle-shaped cells) producing collagen, giving it a white, firm (whorled) cut surface. Histologically: spindle cells in a storiform pattern. Meigs syndrome resolves completely after tumour removal. Important distinction: Thecoma is also a stromal tumour with similar appearance but contains lipid-laden theca cells. Leiomyoma has smooth muscle cells (spindle-shaped) but arises from the uterus, not the ovary. Fibrosarcoma would show malignant spindle cells with mitoses and necrosis." }, { num: 27, question: "Which immunoglobulin class primarily activates the classical complement pathway? (MRCOG recall)", options: [ "A) IgM (and IgG)", "B) IgA", "C) IgE", "D) IgD", "E) IgA secretory form" ], answer: "A) IgM (and IgG)", explanation: "The classical complement pathway is activated by antigen-antibody (immune) complexes, specifically IgM and IgG. IgM is the most efficient activator as a single IgM molecule (pentamer) can activate complement upon binding antigen. IgG requires two adjacent IgG molecules bound to antigen. The pathway sequence is: C1q binds Fc regions of IgM/IgG → C1r/C1s activation → C4 → C2 → C3 convertase → C3b (opsonisation) → C5-C9 (membrane attack complex, MAC). IgE activates mast cells in type I hypersensitivity. IgA activates the alternative and lectin pathways. IgD is a B-cell surface receptor with no known complement-activating function." }, { num: 28, question: "Concentration of urine primarily occurs in which part of the nephron?", options: [ "A) Bowman's capsule", "B) Proximal convoluted tubule (PCT)", "C) Ascending limb of Loop of Henle (ALLH)", "D) Descending limb of Loop of Henle (DLLH)", "E) Collecting duct (CD)" ], answer: "E) Collecting duct (CD)", explanation: "Urine concentration occurs primarily in the collecting duct under the influence of ADH (antidiuretic hormone / vasopressin). ADH increases the permeability of the collecting duct to water by inserting aquaporin-2 (AQP2) channels in the luminal membrane, allowing water reabsorption into the hypertonic medullary interstitium. The Loop of Henle creates the hypertonic medullary gradient via the countercurrent multiplier: the descending limb is permeable to water (concentrates tubular fluid), and the ascending limb is impermeable to water but actively transports NaCl out (dilutes tubular fluid). The PCT reabsorbs ~65-70% of filtered water but does not concentrate urine. Bowman's capsule is the site of filtration only." }, { num: 29, question: "Which of the following reduces the secretion of renin from the juxtaglomerular apparatus?", options: [ "A) Erect posture", "B) Adrenaline (epinephrine)", "C) Hyponatraemia", "D) Hypotension", "E) Beta-blocker" ], answer: "E) Beta-blocker", explanation: "Beta-blockers (e.g. propranolol, atenolol) reduce renin secretion by blocking beta-1 adrenoceptors on juxtaglomerular (JG) cells, which are the receptors through which sympathetic stimulation and catecholamines normally stimulate renin release. This is one mechanism by which beta-blockers lower blood pressure. Stimulants of renin secretion include: decreased renal perfusion pressure (hypotension), decreased NaCl delivery to the macula densa (hyponatraemia), sympathetic activation via beta-1 receptors (adrenaline, erect posture). Inhibitors of renin include: increased renal perfusion pressure, increased NaCl at macula densa, angiotensin II (negative feedback), beta-blockers, and NSAIDs." }, { num: 30, question: "Which is the non-ergot dopamine agonist used to treat hyperprolactinaemia? (MRCOG recall)", options: [ "A) Cabergoline", "B) Quinagolide", "C) Bromocriptine", "D) Quetiapine", "E) Terguride" ], answer: "B) Quinagolide", explanation: "Quinagolide (CV 205-502) is the only non-ergot dopamine D2 agonist used to treat hyperprolactinaemia. It is taken once daily and is useful in patients intolerant of ergot-derived drugs. Ergot-derived dopamine agonists used for hyperprolactinaemia include: Cabergoline (first-line, twice weekly, longest acting), Bromocriptine (oldest, twice daily), Terguride, and Pergolide. The distinction between ergot and non-ergot agents is a specific MRCOG exam point. Quetiapine is an atypical antipsychotic that actually causes hyperprolactinaemia by blocking dopamine receptors. Cabergoline and bromocriptine are ergot derivatives that shrink prolactinomas and normalise prolactin levels." } ]; const children = []; children.push( new Paragraph({ heading: HeadingLevel.HEADING_1, alignment: AlignmentType.CENTER, spacing: { after: 200 }, children: [new TextRun({ text: "MRCOG Part 1 - MCQ Practice Questions (21-30)", bold: true, size: 28 })] }) ); children.push( new Paragraph({ alignment: AlignmentType.CENTER, spacing: { after: 400 }, children: [new TextRun({ text: "Topics: Genetics, Pathology, Physiology, Pharmacology | MRCOG 1 Fast Track Study Group", italics: true, size: 22, color: "555555" })] }) ); for (const q of questions) { children.push( new Paragraph({ spacing: { before: 300, after: 120 }, children: [ new TextRun({ text: `Q${q.num}. `, bold: true, size: 24, color: "1A3A6B" }), new TextRun({ text: q.question, bold: true, size: 24 }) ] }) ); for (const opt of q.options) { children.push( new Paragraph({ spacing: { after: 60 }, indent: { left: 400 }, children: [new TextRun({ text: opt, size: 22 })] }) ); } children.push( new Paragraph({ spacing: { before: 140, after: 60 }, children: [ new TextRun({ text: "ANSWER: ", bold: true, size: 22, color: "1F7A1F" }), new TextRun({ text: q.answer, bold: true, size: 22, color: "1F7A1F" }) ] }) ); children.push( new Paragraph({ spacing: { before: 60, after: 60 }, children: [ new TextRun({ text: "EXPLANATION: ", bold: true, size: 22 }), new TextRun({ text: q.explanation, size: 22 }) ] }) ); children.push( new Paragraph({ spacing: { before: 100, after: 80 }, alignment: AlignmentType.CENTER, children: [new TextRun({ text: "- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -", color: "BBBBBB", size: 18 })] }) ); } const doc = new Document({ sections: [{ properties: {}, children }] }); Packer.toBuffer(doc).then(buffer => { fs.writeFileSync('/home/daytona/workspace/mrcog1-mcq/MRCOG1_MCQ_Q21_to_Q30.docx', buffer); console.log('Done.'); }); JSEOF node /home/daytona/workspace/mrcog1-mcq/generate_q21_30.js

Running Command

python3 -c " import zipfile, os z = zipfile.ZipFile('/home/daytona/workspace/mrcog1-mcq/MRCOG1_MCQ_Q21_to_Q30.docx') print('Valid DOCX files:', z.namelist()[:4]) z.close() print('Size:', os.path.getsize('/home/daytona/workspace/mrcog1-mcq/MRCOG1_MCQ_Q21_to_Q30.docx'), 'bytes') "

Done! Here is your file:

MRCOG1 MCQ Q21 to Q30

Word Document · DOCX


Summary of Q21-30:
QTopicAnswer
21Risk of CF - carrier mother x normal father (Sep 2017)A) 0%
22Sickle cell risk - SS mother x AS father (Sep 2017)C) 50%
23Endometrium with enlarged tortuous glands (Sep 2017)D) Secretory endometrium
24Psammoma bodies composition (Sep 2017)A) Calcium
25Phagocytosis of residual bodies in spermiogenesis (Sep 2017)E) Sertoli cells
26Ovarian mass + pleural effusion + spindle cells (Sep 2017)C) Fibroma (Meigs syndrome)
27Immunoglobulin activating classical complement pathwayA) IgM (and IgG)
28Site of urine concentration in nephronE) Collecting duct
29Drug that reduces renin secretionE) Beta-blocker
30Non-ergot dopamine agonist for hyperprolactinaemiaB) Quinagolide

That completes Q1-30 from the chat file. Would you like me to now combine all three documents (Q1-10, Q11-20, Q21-30) into a single Word document?

Search for more exam questions in the chat to extract Q31-50

Running Command

python3 -c " from html.parser import HTMLParser class ChatParser(HTMLParser): def __init__(self): super().__init__() self.messages = [] self.current_name = '' self.current_text = '' self.in_from_name = False self.in_text = False def handle_starttag(self, tag, attrs): attrs_dict = dict(attrs) cls = attrs_dict.get('class','') if 'from_name' in cls: self.in_from_name = True self.current_name = '' if tag == 'div' and cls == 'text': self.in_text = True self.current_text = '' def handle_endtag(self, tag): if self.in_from_name and tag == 'div': self.in_from_name = False if self.in_text and tag == 'div': self.in_text = False if self.current_text.strip(): self.messages.append((self.current_name.strip(), self.current_text.strip())) def handle_data(self, data): if self.in_from_name: self.current_name += data if self.in_text: self.current_text += data with open('/home/daytona/workspace/attachments/ad9c7fc4-6acf-4f3b-b700-8dfd81039285/messages2.html','r',encoding='utf-8') as f: content = f.read() parser = ChatParser() parser.feed(content) # Print ONLY messages that look like questions (contain Q. or question text patterns) # Print ALL messages to find question-answer pairs we haven't used yet # Focus on confirmed answers with checkmarks import re for i,(name,text) in enumerate(parser.messages): t = text.strip() # Show lines that are questions OR confirmed answers if ('Q.' in t or 'Q1' in t or 'Q2' in t or 'Q3' in t or 'Q4' in t or 'Q5' in t or 'Q6' in t or 'Q7' in t or 'Q8' in t or 'Q9' in t or 'Q10' in t or 'Q11' in t or 'Q12' in t or 'Q13' in t or 'Ans.' in t or ('Correct Answer' in t) or ('.Which' in t) or ('.What' in t) or ('.A woman' in t) or ('.A patient' in t) or ('.A 25' in t) or ('.A 30' in t) or ('.A 35' in t) or ('Which of the following' in t and len(t)>60) or ('What is' in t and 'A.' in t) or (re.search(r'\d+\.\s+(Which|What|Where|How|A woman|A patient|A man|Following|The)', t)) or ('A.' in t and 'B.' in t and len(t)>80)): print(f'[{i+1}] {name}: {t[:350]}') print() "

Running Command

ls /home/daytona/workspace/attachments/ad9c7fc4-6acf-4f3b-b700-8dfd81039285/

Running Command

cat > /home/daytona/workspace/mrcog1-mcq/generate_q31_50.js << 'JSEOF' const { Document, Packer, Paragraph, TextRun, HeadingLevel, AlignmentType } = require('docx'); const fs = require('fs'); const questions = [ { num: 31, question: "Blood tests are carried out in a patient with suspected hepatitis B infection. Results: abnormal LFTs, HBsAg negative, HBeAg negative, HBeAb positive, HBsAb positive (3 mIU/mL), HBcAb positive. What is the most likely interpretation?", options: [ "A) Chronic infection (high infectivity)", "B) Chronic infection (low infectivity)", "C) Past acute infection", "D) Immune (naturally acquired immunity)", "E) Immune due to vaccination only" ], answer: "D) Immune (naturally acquired immunity)", explanation: "HBsAg negative = no current infection (rules out chronic or acute active hepatitis B). HBsAb positive = immunity present (from natural infection or vaccination). HBcAb positive = prior natural infection (HBcAb is never produced in response to vaccination - it only appears after natural infection). HBeAb positive and HBeAg negative = low/absent viral replication. The combination of HBsAb+ve AND HBcAb+ve = naturally acquired immunity (past infection, now cleared). Vaccination alone produces only HBsAb+ve (no HBcAb). Chronic infection requires HBsAg+ve. The abnormal LFTs here are likely from another cause. Key rule: HBsAg negative = NOT chronic." }, { num: 32, question: "Which of the following blood cells, circulating in the bloodstream, is capable of differentiating into plasma cells? (MRCOG recall Q73)", options: [ "A) Neutrophils", "B) Basophils", "C) Monocytes", "D) B lymphocytes", "E) T lymphocytes" ], answer: "D) B lymphocytes", explanation: "B lymphocytes (B cells) are the only circulating blood cells that differentiate into plasma cells. When a B cell is activated by antigen (with T-helper cell co-stimulation), it proliferates and differentiates into plasma cells, which are the antibody-secreting effector cells. Some B cells become memory B cells. The B-cell antigen receptor (BCR) is a membrane-bound form of the antibody the B cell will eventually secrete after activation. Monocytes differentiate into macrophages and dendritic cells in tissues. T lymphocytes differentiate into cytotoxic T cells, T-helper cells, and regulatory T cells - not plasma cells. Plasma cells are found in lymph nodes, spleen and bone marrow, not normally in peripheral blood." }, { num: 33, question: "The standard chest X-ray (CXR) is equivalent to approximately what duration of natural background radiation? (MRCOG recall Q69)", options: [ "A) 3 days", "B) 3 weeks", "C) 3 months", "D) 18 months", "E) 5 years" ], answer: "A) 3 days", explanation: "A standard PA chest X-ray delivers approximately 0.02 mSv of radiation, which is equivalent to approximately 3 days of natural background radiation (background radiation in the UK is ~2-3 mSv/year). Key radiation dose comparisons for MRCOG: CXR = 0.02 mSv (~3 days background). Pelvis X-ray = 0.7 mSv (~4 months). CT abdomen/pelvis = 10 mSv (~3 years). IVP = 2.5 mSv (~14 months). Barium enema = 7 mSv (~3 years). A dose of 50 mSv is considered the threshold above which deterministic effects may appear. Doses in diagnostic radiology are well within stochastic risk range." }, { num: 34, question: "A patient presents with abdominal pain and a history of heavy, painful periods. At laparotomy, a chocolate-coloured cystic lesion is found on the ovary. What is the most likely diagnosis? (MRCOG recall Q99)", options: [ "A) Functional cyst", "B) Physiological cyst", "C) Ovarian endometrioma", "D) Ovarian teratoma", "E) Germ cell tumour" ], answer: "C) Ovarian endometrioma", explanation: "An ovarian endometrioma (chocolate cyst) is the classic answer here. The combination of heavy, painful periods (dysmenorrhoea, menorrhagia - suggesting endometriosis) with a cystic ovarian lesion containing old, altered blood (chocolate-coloured fluid) is pathognomonic of endometrioma. They are caused by endometrial tissue implanting on the ovary. Histologically: endometrial glands, stroma, and haemosiderin-laden macrophages. CA125 may be elevated. Functional/physiological cysts (follicular or corpus luteum) are transient, do not cause chronic symptoms, and contain serous/haemorrhagic fluid - they resolve spontaneously. Teratoma contains hair, sebaceous material, teeth." }, { num: 35, question: "Which ovarian carcinoma histological type is associated with mismatch repair (MMR) gene mutations? (MRCOG recall Q116)", options: [ "A) Clear cell carcinoma", "B) Endometrioid carcinoma", "C) Papillary serous carcinoma", "D) Mucinous carcinoma", "E) Brenner tumour" ], answer: "B) Endometrioid carcinoma", explanation: "Endometrioid ovarian carcinoma is associated with mismatch repair (MMR) gene mutations and microsatellite instability (MSI) - the same mutations responsible for Lynch syndrome (hereditary non-polyposis colorectal cancer, HNPCC). MMR genes include MLH1, MSH2, MSH6, PMS2. Women with Lynch syndrome have significantly elevated risk of endometrial cancer (40-60%) and ovarian cancer (9-12%), particularly of the endometrioid subtype. Serous ovarian carcinoma (especially high-grade) is associated with BRCA1/BRCA2 mutations. Clear cell carcinoma is associated with endometriosis and loss of ARID1A. Mucinous carcinoma has no strong hereditary association." }, { num: 36, question: "You wish to investigate the time taken to perform a caesarean section in women with and without pre-eclampsia. You have two groups with CS duration data that cannot be assumed to be normally distributed. Which non-parametric statistical test would you use? (MRCOG recall Q154)", options: [ "A) Chi-squared test", "B) Mann-Whitney U test", "C) Wilcoxon signed-rank test", "D) Kruskal-Wallis test", "E) Pearson correlation" ], answer: "B) Mann-Whitney U test", explanation: "The Mann-Whitney U test (also called Wilcoxon rank-sum test) is the non-parametric equivalent of the independent samples t-test. It is used to compare two independent groups when data is not normally distributed (non-parametric) and the outcome is continuous or ordinal. In this scenario: Two independent groups (pre-eclampsia vs. no pre-eclampsia), Continuous data (time in minutes), Non-normal distribution assumed. Chi-squared: for categorical data. Wilcoxon signed-rank: for paired/matched data (non-parametric equivalent of paired t-test). Kruskal-Wallis: comparing 3 or more independent groups (non-parametric ANOVA). Pearson: parametric correlation between two continuous variables." }, { num: 37, question: "A study investigates the relationship between shoulder dystocia and maternal weight. What is the most appropriate study design? (MRCOG recall Q178)", options: [ "A) Retrospective cohort study", "B) Case-control study", "C) Case-cohort study", "D) Randomised controlled trial", "E) Cross-sectional study" ], answer: "B) Case-control study", explanation: "Shoulder dystocia is a relatively rare obstetric emergency. For rare outcomes, case-control studies are the most appropriate and efficient design. Cases (women who had shoulder dystocia) are compared to controls (women who did not), and exposure (maternal weight/obesity) is measured retrospectively. This is more efficient than a cohort study, which would require a very large sample to accumulate enough cases of a rare event. Case-control studies are particularly suited to: rare outcomes, quickly yielding odds ratios, and studying multiple risk factors. Cohort studies are better for common outcomes and yield relative risk. RCTs are for interventions, not for studying naturally occurring risk factors like maternal weight." }, { num: 38, question: "What is the single most important investigation that should be carried out in EVERY case of heavy menstrual bleeding (HMB)? (MRCOG recall Q188)", options: [ "A) Pelvic ultrasound scan", "B) Full blood count (FBC)", "C) Vaginal swabs for microscopy and culture", "D) Liver function tests", "E) Endometrial biopsy" ], answer: "B) Full blood count (FBC)", explanation: "NICE guidelines (NG88, 2018) state that a full blood count (FBC) should be carried out in ALL women with heavy menstrual bleeding to assess for iron-deficiency anaemia. It is the one universal investigation regardless of cause. Other investigations are selective: Pelvic ultrasound: if structural pathology suspected (fibroids, polyps, adenomyosis). Endometrial biopsy: women >45, or irregular bleeding, or failed medical treatment. Coagulation studies: if HMB from menarche or family history of bleeding disorder. Thyroid function: if clinical features suggest hypothyroidism. FBC is the single mandatory investigation in every case of HMB." }, { num: 39, question: "What is the frequency range of electrical current used in electrosurgery units (diathermy)? (MRCOG recall)", options: [ "A) 1 KHz to 1.5 MHz", "B) 100 KHz to 1.5 MHz", "C) 100 KHz to 4 MHz", "D) 400 KHz to 9 MHz", "E) 800 KHz to 9 MHz" ], answer: "C) 100 KHz to 4 MHz", explanation: "Electrosurgical units (diathermy) use high-frequency alternating current in the range of 100 KHz to 4 MHz (typically 300 KHz to 3 MHz). High frequency is essential because: at lower frequencies (<100 KHz), electrical current causes neuromuscular stimulation (tetanic muscle contraction, ventricular fibrillation). At high frequencies (>100 KHz), current passes through tissue without neuromuscular stimulation but generates heat due to tissue resistance, enabling cutting and coagulation. Monopolar diathermy uses a return electrode plate. Bipolar diathermy has current flowing only between the two tips of the forceps - safer in pregnancy and near vital structures." }, { num: 40, question: "Trophoblast cells that invade the decidua and fuse to form multi-nucleated giant cells are best described as which type?", options: [ "A) Extra-villous cytotrophoblasts", "B) Villous cytotrophoblasts", "C) Endovascular trophoblasts", "D) Extravascular trophoblasts (interstitial trophoblasts)", "E) Syncytiotrophoblast" ], answer: "A) Extra-villous cytotrophoblasts", explanation: "Extra-villous cytotrophoblasts (EVCTs) are trophoblast cells that migrate out from the anchoring villi into the decidua. They exist in two subtypes: (1) Interstitial (extravascular) trophoblasts - invade the decidua and myometrium, fusing to form multinucleated giant cells. (2) Endovascular trophoblasts - invade and remodel the spiral arteries, replacing the smooth muscle and endothelium to create low-resistance, wide-bore vessels for placental perfusion. Failure of endovascular invasion is the key pathophysiology in pre-eclampsia and fetal growth restriction. Villous cytotrophoblasts are the proliferating stem cells within the villi. Syncytiotrophoblast covers the villous surface and mediates nutrient/gas exchange." }, { num: 41, question: "Which trophoblast cell type specifically invades spiral arteries during placentation?", options: [ "A) Villous cytotrophoblasts", "B) Syncytiotrophoblast", "C) Endovascular trophoblasts", "D) Hofbauer cells", "E) Decidual stromal cells" ], answer: "C) Endovascular trophoblasts", explanation: "Endovascular trophoblasts are the specific subtype of extra-villous cytotrophoblasts (EVCTs) that invade the lumen of spiral arteries. They replace the vascular endothelium and medial smooth muscle, transforming narrow, high-resistance, vasoreactive spiral arteries into wide, low-resistance, non-vasoreactive vessels. This process (physiological change) begins in the first trimester (decidual segment) and extends to the myometrial segment by 20 weeks. Inadequate endovascular invasion (shallow placentation) leads to persistently high-resistance uteroplacental vessels - the pathophysiological basis for pre-eclampsia, placental abruption, and FGR. Hofbauer cells are placental macrophages within the villous stroma." }, { num: 42, question: "When the population distribution is unknown, which type of statistical test is most appropriate?", options: [ "A) Parametric test", "B) Non-parametric test", "C) Fisher's exact test", "D) ANOVA", "E) Linear regression" ], answer: "B) Non-parametric test", explanation: "Non-parametric tests are used when the population distribution is unknown or cannot be assumed to be normal. They make no assumptions about the underlying distribution of the data (hence 'distribution-free' tests). Non-parametric equivalents: Independent t-test → Mann-Whitney U test. Paired t-test → Wilcoxon signed-rank test. One-way ANOVA → Kruskal-Wallis test. Pearson correlation → Spearman's rank correlation. Parametric tests (t-test, ANOVA, Pearson) assume normally distributed data and are more powerful when their assumptions are met. Non-parametric tests are generally used for: unknown distribution, small samples, ordinal data, or data with significant outliers." }, { num: 43, question: "A 25-year-old woman had a lower segment caesarean section (LSCS) at term for breech presentation under spinal anaesthesia. After what time should low molecular weight heparin (LMWH) thromboprophylaxis be started? (MRCOG recall Q174)", options: [ "A) 4 hours", "B) 6 hours", "C) 12 hours", "D) 24 hours", "E) No need - only hydration and mobilisation" ], answer: "C) 12 hours", explanation: "According to RCOG Green-top Guideline No. 37a (Reducing the Risk of VTE during Pregnancy and the Puerperium), LMWH thromboprophylaxis after caesarean section should be started no sooner than 4 hours after removal of the epidural/spinal catheter, and typically within 6-12 hours of delivery when there is no increased bleeding risk. For spinal anaesthesia (single shot, no catheter), LMWH can be given 4 hours post-spinal. The standard practice answer accepted in MRCOG recall papers is 12 hours post-caesarean section. Post-LSCS VTE risk is significant, and all women undergoing CS should receive at least 10 days of LMWH thromboprophylaxis (extended to 28 days if additional risk factors present)." }, { num: 44, question: "A patient presents with renal calculus (kidney stone). Where is the pain typically referred to? (MRCOG recall Q181)", options: [ "A) Groin (and testis/labia majora)", "B) Lumbar region", "C) Anterior abdominal wall", "D) Umbilicus", "E) Hypochondriac region" ], answer: "A) Groin (and testis/labia majora)", explanation: "Renal colic from a ureteric stone classically causes severe loin-to-groin pain. The pain radiates from the flank (loin) downward to the groin, and in men to the ipsilateral testis, and in women to the ipsilateral labia majora - following the path of the ureter and the T10-L1 dermatomes. This referred pain occurs because the ureter shares its nerve supply (T10-L1, genitofemoral nerve) with the scrotum/labia. Upper ureteric stones refer to the loin/flank. Mid-ureteric stones refer to the iliac fossa. Lower ureteric stones near the vesicoureteric junction refer to the groin, inner thigh, genitalia. Associated symptoms: haematuria, nausea, vomiting, restlessness." }, { num: 45, question: "During treatment with GnRH analogues, what effect occurs on FSH, LH, and oestrogen levels after the initial flare?", options: [ "A) All three increase persistently", "B) FSH and LH increase; oestrogen decreases", "C) FSH, LH, and oestrogen all decrease (medical castration)", "D) Only oestrogen increases; gonadotrophins unchanged", "E) FSH decreases; LH and oestrogen unchanged" ], answer: "C) FSH, LH, and oestrogen all decrease (medical castration)", explanation: "GnRH analogues (agonists - e.g. leuprorelin, goserelin, buserelin) cause an initial flare (brief rise in FSH, LH, and oestrogen in the first 1-2 weeks due to initial receptor stimulation). With continued use (after 2-4 weeks), downregulation and desensitisation of pituitary GnRH receptors occurs, causing profound suppression of FSH, LH, and consequently oestrogen - a state of 'medical castration' or 'pseudomenopause'. This is used therapeutically for: endometriosis, uterine fibroids (pre-surgical shrinkage), IVF pituitary downregulation, hormone-sensitive cancers (prostate, breast). Side effects mirror menopause: hot flushes, bone density loss, vaginal dryness. Add-back HRT can offset hypoestrogenic side effects." }, { num: 46, question: "What is the maximum safe dose of lidocaine (lignocaine) WITH adrenaline (epinephrine) in local anaesthesia?", options: [ "A) 1 mg/kg", "B) 3 mg/kg", "C) 5 mg/kg", "D) 7 mg/kg", "E) 10 mg/kg" ], answer: "D) 7 mg/kg", explanation: "The maximum safe dose of lidocaine is: WITHOUT adrenaline: 3 mg/kg (maximum 200 mg). WITH adrenaline: 7 mg/kg (maximum 500 mg). Adrenaline causes vasoconstriction at the injection site, slowing systemic absorption and allowing a higher total dose. Lidocaine is a class Ib sodium channel blocker local anaesthetic. Signs of lidocaine toxicity (in order): peri-oral tingling/numbness, tinnitus, light-headedness, visual disturbance, slurred speech, seizures, cardiac arrest. Treatment of local anaesthetic systemic toxicity (LAST): stop injection, airway management, IV lipid emulsion (Intralipid 20%). Bupivacaine (plain) maximum dose: 2 mg/kg. Bupivacaine with adrenaline: 2 mg/kg (cardiac toxicity risk limits dose regardless of adrenaline)." }, { num: 47, question: "Gestational age measured in weeks is an example of which type of data?", options: [ "A) Nominal data", "B) Ordinal data", "C) Continuous (ratio) data", "D) Categorical data", "E) Binary data" ], answer: "C) Continuous (ratio) data", explanation: "Gestational age in weeks is continuous (ratio) data because: It is measured on a continuous scale (can take any value, including decimals e.g. 28+3 weeks = 28.4 weeks). It has a true zero point (0 weeks = conception/fertilisation). Differences between values are meaningful and equal intervals (36 weeks minus 32 weeks = 4 weeks, which is meaningful). Types of data: Nominal = categories with no order (blood group A/B/O, sex). Ordinal = ranked categories with unequal intervals (pain score 1-10, APGAR score). Continuous/ratio = measured on a scale with equal intervals and true zero (weight, height, gestational age, blood pressure). Discrete = whole numbers only (number of pregnancies, parity). Statistical tests chosen depend on data type and distribution." }, { num: 48, question: "A first-line single-dose regimen is prescribed for chlamydia. Which drug is given as a single 1g oral dose for uncomplicated genital chlamydial infection?", options: [ "A) Doxycycline 100 mg", "B) Erythromycin 500 mg", "C) Azithromycin 1 g", "D) Metronidazole 2 g", "E) Ceftriaxone 500 mg IM" ], answer: "C) Azithromycin 1 g", explanation: "Azithromycin 1 g as a single oral dose is the standard single-dose treatment for uncomplicated urogenital chlamydia (Chlamydia trachomatis). However, BASHH guidelines (updated 2018) now recommend doxycycline 100 mg twice daily for 7 days as FIRST-LINE due to superior cure rates (98% vs 77-83% for single-dose azithromycin, particularly for rectal chlamydia). Azithromycin 1 g single dose remains an option when adherence to a 7-day course is a concern. The extended azithromycin regimen (1 g day 1, then 500 mg on days 2 and 3) was discussed in the chat. Erythromycin 500 mg QDS x14 days is used in pregnancy when doxycycline is contraindicated." }, { num: 49, question: "A 25-year-old nulliparous woman presents with heavy, irregular menstrual bleeding. Regarding the Hepatitis B serology: which combination indicates immunity acquired through vaccination ONLY (not natural infection)?", options: [ "A) HBsAg+ve, HBcAb+ve, HBsAb-ve", "B) HBsAg-ve, HBcAb+ve, HBsAb+ve", "C) HBsAg-ve, HBcAb-ve, HBsAb+ve", "D) HBsAg+ve, HBcAb-ve, HBsAb-ve", "E) HBsAg-ve, HBcAb-ve, HBsAb-ve" ], answer: "C) HBsAg-ve, HBcAb-ve, HBsAb+ve", explanation: "Vaccination against hepatitis B produces immunity through antibodies to hepatitis B surface antigen (HBsAb) ONLY. Since no live virus is involved in vaccination, core antibody (HBcAb) is NEVER produced after vaccination. Therefore: Vaccine-induced immunity: HBsAb+ve ONLY (HBcAb negative). Natural infection with clearance: HBsAb+ve AND HBcAb+ve. Active chronic infection: HBsAg+ve, HBcAb+ve, HBsAb-ve. Acute infection: HBsAg+ve, IgM HBcAb+ve. Occult hepatitis B: HBsAg-ve but HBcAb+ve (detectable only by PCR). This distinction is frequently tested in MRCOG and is critical for antenatal and occupational health screening." }, { num: 50, question: "Which class of immunoglobulin is the MOST efficient activator of the classical complement pathway? (MRCOG recall Q49)", options: [ "A) IgM", "B) IgA", "C) IgG", "D) IgE", "E) IgD" ], answer: "A) IgM", explanation: "IgM is the MOST efficient activator of the classical complement pathway because a single IgM pentamer molecule, upon binding antigen, can activate C1q and initiate the classical pathway. IgG can also activate the classical pathway but requires at least two adjacent IgG molecules bound to antigen. Other important IgM features: First antibody produced in primary immune response. Predominantly intravascular (too large to cross vessel walls). Highly efficient at agglutination and complement activation. Does NOT cross the placenta (IgG is the only immunoglobulin that crosses). IgA activates the lectin and alternative complement pathways. IgE: mediates type I hypersensitivity via mast cells. IgD: mainly a B-cell surface receptor." } ]; const children = []; children.push( new Paragraph({ heading: HeadingLevel.HEADING_1, alignment: AlignmentType.CENTER, spacing: { after: 200 }, children: [new TextRun({ text: "MRCOG Part 1 - MCQ Practice Questions (31-50)", bold: true, size: 28 })] }) ); children.push( new Paragraph({ alignment: AlignmentType.CENTER, spacing: { after: 400 }, children: [new TextRun({ text: "Topics: Microbiology, Immunology, Statistics, Pathology, Physiology, Pharmacology | MRCOG 1 Fast Track Study Group", italics: true, size: 22, color: "555555" })] }) ); for (const q of questions) { children.push( new Paragraph({ spacing: { before: 300, after: 120 }, children: [ new TextRun({ text: `Q${q.num}. `, bold: true, size: 24, color: "1A3A6B" }), new TextRun({ text: q.question, bold: true, size: 24 }) ] }) ); for (const opt of q.options) { children.push( new Paragraph({ spacing: { after: 60 }, indent: { left: 400 }, children: [new TextRun({ text: opt, size: 22 })] }) ); } children.push( new Paragraph({ spacing: { before: 140, after: 60 }, children: [ new TextRun({ text: "ANSWER: ", bold: true, size: 22, color: "1F7A1F" }), new TextRun({ text: q.answer, bold: true, size: 22, color: "1F7A1F" }) ] }) ); children.push( new Paragraph({ spacing: { before: 60, after: 60 }, children: [ new TextRun({ text: "EXPLANATION: ", bold: true, size: 22 }), new TextRun({ text: q.explanation, size: 22 }) ] }) ); children.push( new Paragraph({ spacing: { before: 100, after: 80 }, alignment: AlignmentType.CENTER, children: [new TextRun({ text: "- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -", color: "BBBBBB", size: 18 })] }) ); } const doc = new Document({ sections: [{ properties: {}, children }] }); Packer.toBuffer(doc).then(buffer => { fs.writeFileSync('/home/daytona/workspace/mrcog1-mcq/MRCOG1_MCQ_Q31_to_Q50.docx', buffer); console.log('Done.'); }); JSEOF node /home/daytona/workspace/mrcog1-mcq/generate_q31_50.js

Running Command

python3 -c " import zipfile, os z = zipfile.ZipFile('/home/daytona/workspace/mrcog1-mcq/MRCOG1_MCQ_Q31_to_Q50.docx') print('Valid DOCX:', z.namelist()[:4]) z.close() print('Size:', os.path.getsize('/home/daytona/workspace/mrcog1-mcq/MRCOG1_MCQ_Q31_to_Q50.docx'), 'bytes') "

Done! Here is your file:

MRCOG1 MCQ Q31 to Q50

Word Document · DOCX


Summary of Q31-50:
QTopicAnswer
31Hepatitis B serology interpretationD) Immune - naturally acquired
32Blood cell that differentiates into plasma cells (Q73)D) B lymphocytes
33CXR equivalent background radiation (Q69)A) 3 days
34Chocolate cyst - heavy painful periods (Q99)C) Ovarian endometrioma
35Ovarian CA associated with MMR gene mutations (Q116)B) Endometrioid carcinoma
36Non-parametric test for 2 non-normal groups (Q154)B) Mann-Whitney U test
37Study design for shoulder dystocia + maternal weight (Q178)B) Case-control study
38Universal investigation for HMB (Q188)B) Full blood count
39Electrosurgery unit frequency rangeC) 100 KHz to 4 MHz
40Trophoblast cells forming multinucleated giant cellsA) Extra-villous cytotrophoblasts
41Trophoblasts that invade spiral arteriesC) Endovascular trophoblasts
42Test when population distribution unknownB) Non-parametric test
43LMWH timing after LSCS under spinal (Q174)C) 12 hours
44Referred pain in renal calculus (Q181)A) Groin
45GnRH analogue effect on FSH/LH/oestrogenC) All decrease (medical castration)
46Max dose of lidocaine WITH adrenalineD) 7 mg/kg
47Gestational age - data typeC) Continuous (ratio) data
48Single-dose treatment for chlamydiaC) Azithromycin 1 g
49HBV serology pattern - vaccination onlyC) HBsAb+ve, HBcAb-ve, HBsAg-ve
50Most efficient activator of classical complement (Q49)A) IgM

That completes Q1-50 from the chat. Would you like me to merge all four documents into a single combined Word file?

YES PLS

Running Command

ls /home/daytona/workspace/mrcog1-mcq/

Running Command

cat > /home/daytona/workspace/mrcog1-mcq/merge_all.js << 'JSEOF' const { Document, Packer, Paragraph, TextRun, HeadingLevel, AlignmentType, PageBreak } = require('docx'); const fs = require('fs'); // ── ALL 50 QUESTIONS ────────────────────────────────────────────────────────── const questions = [ // ── Q1-10: Biochemistry Session 1 ────────────────────────────────────────── { num:1, section:"Biochemistry", question:"Which enzyme catalyses the rate-limiting (committed) step in catecholamine synthesis, converting L-tyrosine to L-DOPA?", options:["A) Phenylalanine hydroxylase","B) DOPA decarboxylase","C) Tyrosine hydroxylase","D) Dopamine beta-hydroxylase","E) Monoamine oxidase (MAO)"], answer:"C) Tyrosine hydroxylase", explanation:"Tyrosine hydroxylase is the rate-limiting enzyme of catecholamine biosynthesis. It catalyses the hydroxylation of L-tyrosine to L-DOPA using tetrahydrobiopterin (BH4) as a cofactor. The pathway continues: L-DOPA → Dopamine (DOPA decarboxylase) → Norepinephrine (dopamine beta-hydroxylase) → Epinephrine (PNMT). Phenylalanine hydroxylase converts phenylalanine to tyrosine — its deficiency causes phenylketonuria (PKU). Urinary vanillylmandelic acid (VMA), the end-product of catecholamine metabolism, is raised in phaeochromocytoma." }, { num:2, section:"Biochemistry", question:"The majority of enzymes involved in the Krebs (TCA) cycle are located in which cellular compartment?", options:["A) Cytoplasm","B) Smooth endoplasmic reticulum","C) Nucleus","D) Mitochondria","E) Peroxisomes"], answer:"D) Mitochondria", explanation:"The Krebs (TCA) cycle takes place in the mitochondrial matrix. The enzymes of the cycle are housed in the matrix; the inner mitochondrial membrane contains the electron transport chain (ETC) complexes I–IV plus ATP synthase. Beta-oxidation of fatty acids also occurs in mitochondria. Glycolysis, in contrast, occurs in the cytoplasm. Peroxisomes handle very-long-chain fatty acid oxidation." }, { num:3, section:"Biochemistry", question:"How many ATP molecules are generated from the complete aerobic oxidation of one glucose molecule?", options:["A) 2","B) 8","C) 18","D) 36–38","E) 56"], answer:"D) 36–38", explanation:"The complete aerobic oxidation of one glucose molecule yields 36–38 ATP. This accounts for: glycolysis (net 2 ATP + 2 NADH), pyruvate decarboxylation (2 NADH), Krebs cycle (6 NADH, 2 FADH2, 2 GTP per glucose), and oxidative phosphorylation via the ETC. Each NADH yields ~2.5 ATP and each FADH2 ~1.5 ATP. In contrast, anaerobic glycolysis produces only 2 ATP net." }, { num:4, section:"Biochemistry", question:"What is the dietary amino acid precursor of serotonin (5-hydroxytryptamine)?", options:["A) Phenylalanine","B) Tyrosine","C) Methionine","D) Tryptophan","E) Histidine"], answer:"D) Tryptophan", explanation:"Serotonin (5-HT) is synthesised from the essential amino acid tryptophan. The pathway: Tryptophan → 5-Hydroxytryptophan (by tryptophan hydroxylase, rate-limiting) → Serotonin (by aromatic L-amino acid decarboxylase). Tryptophan is one of the essential amino acids remembered by the mnemonic 'TIM PVT HaLL'. Serotonin is further converted to melatonin in the pineal gland." }, { num:5, section:"Biochemistry", question:"Wernicke-Korsakoff syndrome is caused by deficiency of which vitamin?", options:["A) Vitamin B2 (Riboflavin)","B) Vitamin B1 (Thiamine)","C) Vitamin B6 (Pyridoxine)","D) Vitamin B12 (Cobalamin)","E) Vitamin B3 (Niacin)"], answer:"B) Vitamin B1 (Thiamine)", explanation:"Wernicke-Korsakoff syndrome results from thiamine (vitamin B1) deficiency, most commonly in chronic alcohol misuse. Wernicke's encephalopathy: confusion, ophthalmoplegia, ataxia. If untreated → Korsakoff's psychosis (anterograde amnesia, confabulation). Thiamine is a cofactor for pyruvate dehydrogenase, alpha-ketoglutarate dehydrogenase, and transketolase. Other thiamine-deficiency syndromes: dry beriberi (peripheral neuropathy), wet beriberi (high-output cardiac failure), infantile beriberi." }, { num:6, section:"Biochemistry", question:"What type of compound is histone?", options:["A) Lipid","B) Carbohydrate","C) Nucleic acid","D) Protein","E) Glycolipid"], answer:"D) Protein", explanation:"Histones are basic (positively charged) proteins rich in lysine and arginine. They form the protein core of the nucleosome (~147 bp DNA wrapped around a histone octamer: 2x H2A, H2B, H3, H4, with H1 as linker). Histone modifications (acetylation, methylation, phosphorylation) regulate gene expression — central to epigenetics, a key MRCOG Part 1 topic." }, { num:7, section:"Biochemistry", question:"Phenylalanine is converted to which compound by the enzyme phenylalanine hydroxylase?", options:["A) Dopamine","B) Tyrosine","C) L-DOPA","D) Tryptophan","E) Homogentisic acid"], answer:"B) Tyrosine", explanation:"Phenylalanine hydroxylase (PAH) converts phenylalanine to tyrosine using tetrahydrobiopterin (BH4) as a cofactor. Deficiency of PAH causes phenylketonuria (PKU) — the most common inborn error of amino acid metabolism. Classical PKU: phenylalanine >1200 µmol/L. Untreated: intellectual disability, seizures, fair skin/hair. Tyrosine is the precursor for catecholamines, thyroid hormones, and melanin." }, { num:8, section:"Biochemistry", question:"Which enzyme is used in the polymerase chain reaction (PCR) technique?", options:["A) DNA ligase","B) RNA polymerase","C) Taq polymerase","D) Restriction endonuclease","E) Reverse transcriptase"], answer:"C) Taq polymerase", explanation:"PCR uses Taq polymerase, a heat-stable DNA polymerase from Thermus aquaticus. Its heat stability is essential for repeated denaturation cycles at ~95°C. PCR cycle steps: (1) Denaturation ~95°C, (2) Annealing ~55–65°C, (3) Extension ~72°C. Taq lacks 3'→5' proofreading; Pfu is used when higher fidelity is needed. Reverse transcriptase is used in RT-PCR to convert RNA to cDNA first." }, { num:9, section:"Biochemistry", question:"A patient with Crohn's disease affecting the terminal ileum is most likely to develop which type of anaemia?", options:["A) Haemolytic anaemia","B) Aplastic anaemia","C) Megaloblastic anaemia (B12 deficiency)","D) Iron-deficiency anaemia","E) Anaemia of chronic disease only"], answer:"D) Iron-deficiency anaemia", explanation:"Crohn's disease most commonly causes iron-deficiency anaemia (IDA) due to chronic intestinal blood loss, reduced dietary intake, and malabsorption. IDA: microcytic hypochromic picture, low ferritin, low transferrin saturation. Although terminal ileal Crohn's affects B12 absorption, IDA is far more prevalent overall. Megaloblastic anaemia due to B12 deficiency occurs specifically with extensive terminal ileal disease or resection." }, { num:10, section:"Biochemistry", question:"What is the most important cation in the intracellular fluid (ICF)?", options:["A) Sodium (Na+)","B) Calcium (Ca2+)","C) Magnesium (Mg2+)","D) Potassium (K+)","E) Chloride (Cl-)"], answer:"D) Potassium (K+)", explanation:"Potassium (K+) is the predominant intracellular cation (~140–150 mmol/L ICF), maintained by Na+/K+-ATPase. Sodium (Na+) is the main extracellular cation (~140 mmol/L ECF). The main intracellular anion is phosphate (HPO4²-). The K+ concentration gradient across the cell membrane determines resting membrane potential. Note: Chloride (Cl-) is an anion, not a cation." }, // ── Q11-20: Biochemistry / Molecular Biology / Anatomy ───────────────────── { num:11, section:"Biochemistry", question:"Which vitamin is required for collagen synthesis?", options:["A) Vitamin A","B) Vitamin B12","C) Vitamin C","D) Vitamin D","E) Vitamin K"], answer:"C) Vitamin C", explanation:"Vitamin C (ascorbic acid) is a cofactor for prolyl hydroxylase and lysyl hydroxylase, which hydroxylate proline and lysine residues in procollagen. This hydroxylation is essential for cross-linking and stabilisation of the collagen triple helix. Deficiency causes scurvy: poor wound healing, perifollicular haemorrhages, bleeding gums, and corkscrew hairs — all reflecting defective collagen." }, { num:12, section:"Biochemistry", question:"What is the biochemical composition of heparin?", options:["A) Lipoprotein","B) Glycoprotein / Polysaccharide (mucopolysaccharide)","C) Steroid","D) Nucleoprotein","E) Phospholipid"], answer:"B) Glycoprotein / Polysaccharide (mucopolysaccharide)", explanation:"Heparin is a highly sulphated glycosaminoglycan (mucopolysaccharide/polysaccharide), composed of repeating disaccharide units of uronic acid and glucosamine. Produced and stored in mast cell granules and basophils. Anticoagulant mechanism: binds antithrombin III, potentiating inhibition of thrombin (IIa) and Factor Xa. Both 'polysaccharide' and 'glycoprotein' are accepted in MRCOG recall papers." }, { num:13, section:"Biochemistry", question:"Where in the body are ketone bodies produced during starvation?", options:["A) Kidney","B) Brain","C) Skeletal muscle","D) Liver","E) Adipose tissue"], answer:"D) Liver", explanation:"Ketone bodies (acetoacetate, beta-hydroxybutyrate, acetone) are produced exclusively in the liver mitochondrial matrix via ketogenesis. During starvation, low insulin + high glucagon promote lipolysis → free fatty acids undergo hepatic beta-oxidation → acetyl-CoA → ketone bodies. Paradoxically, the liver cannot use its own ketone bodies — they are exported to brain, heart, and skeletal muscle as alternative fuel." }, { num:14, section:"Biochemistry", question:"How many carbon atoms are present in the steroid nucleus of estrogen?", options:["A) 27","B) 21","C) 19","D) 18","E) 14"], answer:"D) 18", explanation:"Estrogen has 18 carbons (C18 steroid). Mnemonic for steroid carbon counts: Cholesterol = 27C, Corticosteroids/Progesterone = 21C, Androgens = 19C, Estrogens = 18C. Aromatase enzyme converts androgens (C19) to estrogens (C18) by removing the C-10 methyl group and aromatising ring A." }, { num:15, section:"Molecular Biology", question:"Which protein is coiled around DNA in the nucleus to help condense it into chromatin? (Jan 2018 MRCOG)", options:["A) Polymerase","B) Cytosine","C) Helicase","D) Histones","E) Steroid receptor"], answer:"D) Histones", explanation:"Histones are basic proteins rich in lysine/arginine that wrap DNA into nucleosomes — the repeating units of chromatin. Each nucleosome: ~147 bp DNA around a histone octamer (H2A, H2B, H3, H4 x2), sealed by H1. Histone modifications (acetylation, methylation, phosphorylation) regulate gene expression and form the basis of epigenetics. Helicase unwinds DNA during replication — it does not coil around it." }, { num:16, section:"Molecular Biology", question:"Which of the following proteins is a major tumour suppressor gene product? (Jan 2018 MRCOG)", options:["A) TNF-alpha","B) IL-8","C) HLA-B27","D) p53","E) RAS"], answer:"D) p53", explanation:"p53 ('guardian of the genome', TP53 gene, chromosome 17p13) is the most commonly mutated tumour suppressor in human cancers. It halts the cell cycle at G1/S in response to DNA damage and triggers apoptosis if repair fails. Germline TP53 mutations → Li-Fraumeni syndrome. Other tumour suppressors: BRCA1/2, RB, APC, VHL, PTEN. RAS is an oncogene. HPV E6 degrades p53; E7 inactivates pRb." }, { num:17, section:"Anatomy", question:"Following radical hysterectomy and pelvic lymphadenectomy for Stage I cervical carcinoma, a 63-year-old woman reports weakness of hip adduction. Which nerve was most likely injured?", options:["A) Obturator nerve","B) Femoral nerve","C) Inferior gluteal nerve","D) Superior gluteal nerve","E) Sciatic nerve"], answer:"A) Obturator nerve", explanation:"The obturator nerve (L2–L4) runs along the lateral pelvic wall through the obturator foramen, innervating the hip adductors (adductor longus, brevis, magnus, gracilis, obturator externus). It lies on the floor of the ovarian fossa near the pelvic ureter — vulnerable during radical hysterectomy. Key distinction: Femoral nerve injury → loss of hip flexion + knee extension (cannot climb stairs) + loss of anterior thigh sensation." }, { num:18, section:"Molecular Biology", question:"What is the primary action of mRNA (messenger RNA)? (Jan 2018 MRCOG)", options:["A) Translation — carries the code for protein synthesis","B) Transcription — copies DNA into RNA","C) Transfer — carries amino acids to the ribosome","D) DNA synthesis — replicates the genome","E) Reverse transcription — converts RNA back to DNA"], answer:"A) Translation — carries the code for protein synthesis", explanation:"mRNA carries genetic information transcribed from DNA and serves as the template for translation — protein synthesis at ribosomes. Key steps: Transcription = DNA → mRNA (nucleus, RNA polymerase II). Translation = mRNA → Protein (ribosomes, tRNA carries amino acids). tRNA carries amino acids. rRNA forms ribosomes. Reverse transcriptase converts RNA → DNA (retroviruses, RT-PCR)." }, { num:19, section:"Pharmacology / Endocrinology", question:"The progesterone receptor is an example of which type of receptor?", options:["A) Guanylate cyclase receptor","B) Nuclear receptor","C) Tyrosine kinase receptor","D) Ligand-gated ion channel","E) G protein-coupled receptor"], answer:"B) Nuclear receptor", explanation:"Progesterone is a steroid hormone — lipid-soluble, crosses the cell membrane freely to bind intracellular nuclear receptors. Mnemonic STRIVE for nuclear receptor ligands: Steroids, Thyroid hormone, Retinoids, Iodothyronines, Vitamin D, Estrogen. The receptor-hormone complex acts as a transcription factor. Peptide hormones (insulin, FSH, LH) bind surface receptors (tyrosine kinase, G-protein coupled) because they cannot cross the lipid bilayer." }, { num:20, section:"Genetics", question:"What will be the karyotype for Edward's syndrome in a male patient? (Sep 2017 MRCOG)", options:["A) 46, XX","B) 46, XXY","C) 47, XX+18","D) 47, XY+18","E) 45, XO"], answer:"D) 47, XY+18", explanation:"Edward's syndrome = Trisomy 18 → 47 chromosomes. Male: XY sex chromosomes → karyotype 47, XY+18. Key trisomies: Down (T21): 47,XY+21. Patau (T13): 47,XY+13. Edward (T18): 47,XY+18. Klinefelter: 47,XXY. Turner: 45,XO. Edward's features: rocker-bottom feet, clenched fists with overlapping fingers, micrognathia, VSD, low birth weight, very poor prognosis." }, // ── Q21-30: Genetics / Pathology / Physiology ─────────────────────────────── { num:21, section:"Genetics", question:"A pregnant woman at 8 weeks is confirmed to be a cystic fibrosis carrier; her partner is normal (non-carrier). What is the risk of their child having cystic fibrosis? (Sep 2017 MRCOG)", options:["A) 0%","B) 25%","C) 50%","D) 75%","E) 100%"], answer:"A) 0%", explanation:"Cystic fibrosis is autosomal recessive (CFTR gene, chromosome 7q). Mother carrier (Cc) × father normal (CC): offspring = CC (50%) and Cc (50%). No child can be cc (affected). Risk = 0%. If both parents were carriers (Cc × Cc): 25% affected. Always draw a Punnett square in MRCOG genetics questions." }, { num:22, section:"Genetics", question:"A mother has sickle cell disease (SS). Her husband has sickle cell trait (AS). What is the probability of their baby having sickle cell disease? (Sep 2017 MRCOG)", options:["A) 0%","B) 25%","C) 50%","D) 75%","E) 100%"], answer:"C) 50%", explanation:"Sickle cell disease is autosomal recessive (HBB gene, chromosome 11p). SS × AS: offspring = AS (50%) and SS (50%). So 50% have sickle cell disease, 50% have sickle cell trait. No offspring will be completely normal (AA). Always identify parental genotypes precisely before calculating risk." }, { num:23, section:"Pathology / Histology", question:"Which histological finding best describes endometrium showing enlarged and tortuous glands? (Sep 2017 MRCOG)", options:["A) Decidual reaction","B) Atrophic endometrium","C) Proliferative endometrium","D) Secretory endometrium","E) Arias-Stella phenomenon"], answer:"D) Secretory endometrium", explanation:"Secretory endometrium (post-ovulation, days 14–28) buzz words: enlarged, tortuous, corkscrew glands with subnuclear vacuolation (earliest sign of ovulation). Proliferative: straight tubular glands, mitoses. Decidual reaction: polygonal stromal cells (pregnancy/progesterone). Arias-Stella: hypersecretory glands with large hyperchromatic nuclei — seen in ectopic pregnancy. Atrophic: small, sparse, inactive glands." }, { num:24, section:"Pathology", question:"Psammoma bodies are a histological feature of ovarian papillary serous cystadenoma. They are primarily composed of: (Sep 2017 MRCOG)", options:["A) Calcium","B) Iron","C) Fibrin","D) Mucin","E) Lipid"], answer:"A) Calcium", explanation:"Psammoma bodies are concentric, lamellated, calcified (calcium apatite) structures representing dystrophic calcification. Classic in: papillary serous cystadenocarcinoma of ovary, papillary thyroid carcinoma, meningioma, papillary renal cell carcinoma. Specifically associated with serous-type ovarian tumours (not mucinous). Mucinous tumours: mucin-filled vacuoles + goblet cells." }, { num:25, section:"Histology / Reproductive", question:"Which type of testicular cells are phagocytic for residual bodies left over from spermiogenesis? (Sep 2017 MRCOG)", options:["A) Testicular mesenchymal cells","B) Testicular macrophages","C) Fibroblast cells","D) Interstitial cells of Leydig","E) Sertoli cells"], answer:"E) Sertoli cells", explanation:"Sertoli cells phagocytose residual cytoplasmic bodies shed during spermiogenesis (up to 70% of spermatid cytoplasm is discarded). Key Sertoli cell functions: structural support of germ cells; nourishment during development; phagocytosis; blood-testis barrier (tight junctions); secretion of inhibin B (inhibits FSH), androgen-binding protein (ABP), and MIS/AMH (during embryogenesis). Leydig cells secrete testosterone in response to LH." }, { num:26, section:"Pathology / Gynaecology", question:"A patient has an ovarian mass and pleural effusion. Histopathology reveals white, firm tissue composed of spindle-shaped cells. What is the diagnosis? (Sep 2017 MRCOG)", options:["A) Glioma","B) Sarcoma","C) Fibroma","D) Leiomyoma","E) Adenoma"], answer:"C) Fibroma", explanation:"This is Meigs syndrome: ovarian fibroma + ascites + pleural effusion (triad). Ovarian fibroma is a benign sex cord-stromal tumour of fibroblasts (spindle cells producing collagen) — white, firm, whorled cut surface. Resolves completely after tumour removal. Distinction: thecoma has lipid-laden theca cells; leiomyoma arises from uterus (smooth muscle); fibrosarcoma shows malignant spindle cells with mitoses/necrosis." }, { num:27, section:"Immunology", question:"Which immunoglobulin class primarily activates the classical complement pathway?", options:["A) IgM (and IgG)","B) IgA","C) IgE","D) IgD","E) IgA secretory form"], answer:"A) IgM (and IgG)", explanation:"Classical complement is activated by immune complexes: IgM is most efficient (one pentamer activates C1q upon antigen binding). IgG requires two adjacent molecules. Pathway: C1q binds Fc → C1r/C1s → C4 → C2 → C3 convertase → C3b (opsonisation) → C5–C9 (MAC). IgE activates mast cells (type I hypersensitivity). IgA activates alternative and lectin pathways. IgD: B-cell surface receptor only." }, { num:28, section:"Physiology / Renal", question:"Concentration of urine primarily occurs in which part of the nephron?", options:["A) Bowman's capsule","B) Proximal convoluted tubule (PCT)","C) Ascending limb of Loop of Henle","D) Descending limb of Loop of Henle","E) Collecting duct (CD)"], answer:"E) Collecting duct (CD)", explanation:"Urine concentration occurs in the collecting duct under ADH (vasopressin), which inserts aquaporin-2 (AQP2) channels, allowing water reabsorption into the hypertonic medullary interstitium. The Loop of Henle creates this gradient via the countercurrent multiplier: descending limb permeable to water (concentrates tubular fluid); ascending limb impermeable to water but actively transports NaCl out (dilutes). PCT reabsorbs 65–70% of filtered water but does not concentrate urine." }, { num:29, section:"Physiology / Pharmacology", question:"Which of the following reduces the secretion of renin from the juxtaglomerular apparatus?", options:["A) Erect posture","B) Adrenaline (epinephrine)","C) Hyponatraemia","D) Hypotension","E) Beta-blocker"], answer:"E) Beta-blocker", explanation:"Beta-blockers (e.g. propranolol, atenolol) reduce renin secretion by blocking beta-1 adrenoceptors on juxtaglomerular (JG) cells — the same receptors through which sympathetic activation and catecholamines normally stimulate renin. This is a key mechanism by which beta-blockers lower blood pressure. Stimulants of renin: decreased renal perfusion pressure, hyponatraemia, sympathetic activation (erect posture, adrenaline). Inhibitors: increased perfusion pressure, raised NaCl at macula densa, angiotensin II (negative feedback), beta-blockers, NSAIDs." }, { num:30, section:"Pharmacology", question:"Which is the non-ergot dopamine agonist used to treat hyperprolactinaemia? (MRCOG recall Q56)", options:["A) Cabergoline","B) Quinagolide","C) Bromocriptine","D) Quetiapine","E) Terguride"], answer:"B) Quinagolide", explanation:"Quinagolide is the only non-ergot dopamine D2 agonist for hyperprolactinaemia (once daily). Ergot-derived dopamine agonists: Cabergoline (first-line, twice weekly), Bromocriptine (oldest), Terguride, Pergolide. The ergot vs non-ergot distinction is a specific MRCOG exam point. Quetiapine is an atypical antipsychotic that CAUSES hyperprolactinaemia by blocking dopamine receptors." }, // ── Q31-50: Mixed Topics ───────────────────────────────────────────────────── { num:31, section:"Microbiology", question:"Blood tests in a patient with suspected hepatitis B show: abnormal LFTs, HBsAg negative, HBeAg negative, HBeAb positive, HBsAb positive (3 mIU/mL), HBcAb positive. What is the most likely interpretation?", options:["A) Chronic infection (high infectivity)","B) Chronic infection (low infectivity)","C) Past acute infection","D) Immune — naturally acquired immunity","E) Immune due to vaccination only"], answer:"D) Immune — naturally acquired immunity", explanation:"HBsAg negative = no active infection. HBsAb positive = immunity. HBcAb positive = prior natural infection (never produced after vaccination alone). HBeAb+ve + HBeAg-ve = low/absent viral replication. HBsAb+ve AND HBcAb+ve = naturally acquired immunity (past infection, now cleared). Vaccination alone: HBsAb+ve ONLY (HBcAb negative). Chronic infection requires HBsAg+ve. Key rule: HBsAg negative = NOT chronic." }, { num:32, section:"Immunology / Haematology", question:"Which circulating blood cell is capable of differentiating into plasma cells? (MRCOG recall Q73)", options:["A) Neutrophils","B) Basophils","C) Monocytes","D) B lymphocytes","E) T lymphocytes"], answer:"D) B lymphocytes", explanation:"B lymphocytes are the only circulating cells that differentiate into plasma cells upon antigen activation (with T-helper co-stimulation). Plasma cells are the antibody-secreting effector cells; some B cells become memory B cells. Monocytes → macrophages/dendritic cells in tissues. T lymphocytes → cytotoxic T cells, T-helper cells, regulatory T cells. Plasma cells are found in lymph nodes, spleen, and bone marrow — not normally in peripheral blood." }, { num:33, section:"Radiology / Physics", question:"A standard chest X-ray (CXR) is equivalent to approximately what duration of natural background radiation? (MRCOG recall Q69)", options:["A) 3 days","B) 3 weeks","C) 3 months","D) 18 months","E) 5 years"], answer:"A) 3 days", explanation:"A PA CXR delivers ~0.02 mSv ≈ 3 days of natural background radiation (~2–3 mSv/year in UK). Key radiation doses: CXR = 0.02 mSv (~3 days). Pelvis X-ray = 0.7 mSv (~4 months). CT abdomen/pelvis = 10 mSv (~3 years). IVP = 2.5 mSv (~14 months). Barium enema = 7 mSv (~3 years). All diagnostic doses are within the stochastic risk range." }, { num:34, section:"Gynaecology / Pathology", question:"A patient with heavy, painful periods is found at laparotomy to have a chocolate-coloured cystic ovarian lesion. What is the most likely diagnosis? (MRCOG recall Q99)", options:["A) Functional cyst","B) Physiological cyst","C) Ovarian endometrioma","D) Ovarian teratoma","E) Germ cell tumour"], answer:"C) Ovarian endometrioma", explanation:"Ovarian endometrioma (chocolate cyst): classic combination of dysmenorrhoea/menorrhagia (endometriosis) + cystic ovarian lesion containing old altered blood (dark brown 'chocolate' fluid). Histology: endometrial glands, stroma, haemosiderin-laden macrophages. CA125 may be elevated. Functional/physiological cysts: transient, resolve spontaneously, serous/haemorrhagic fluid — no chronic symptoms. Teratoma: contains hair, sebaceous material, teeth." }, { num:35, section:"Gynaecology / Genetics", question:"Which ovarian carcinoma histological type is associated with mismatch repair (MMR) gene mutations? (MRCOG recall Q116)", options:["A) Clear cell carcinoma","B) Endometrioid carcinoma","C) Papillary serous carcinoma","D) Mucinous carcinoma","E) Brenner tumour"], answer:"B) Endometrioid carcinoma", explanation:"Endometrioid ovarian carcinoma is associated with MMR gene mutations (MLH1, MSH2, MSH6, PMS2) and microsatellite instability — also responsible for Lynch syndrome (HNPCC). Lynch syndrome risk: endometrial cancer 40–60%, ovarian cancer 9–12% (predominantly endometrioid). High-grade serous ovarian CA: BRCA1/2 mutations. Clear cell CA: associated with endometriosis and ARID1A loss. Mucinous: no strong hereditary link." }, { num:36, section:"Statistics", question:"You compare CS duration in women with and without pre-eclampsia; the data cannot be assumed normally distributed. Which non-parametric test would you use? (MRCOG recall Q154)", options:["A) Chi-squared test","B) Mann-Whitney U test","C) Wilcoxon signed-rank test","D) Kruskal-Wallis test","E) Pearson correlation"], answer:"B) Mann-Whitney U test", explanation:"Mann-Whitney U test = non-parametric equivalent of the independent samples t-test. Used for: two independent groups, continuous/ordinal outcome, non-normal data. Chi-squared: categorical data. Wilcoxon signed-rank: paired/matched data (non-parametric equivalent of paired t-test). Kruskal-Wallis: 3+ independent groups (non-parametric ANOVA). Pearson: parametric correlation between two continuous variables." }, { num:37, section:"Statistics / Epidemiology", question:"A study investigates the relationship between shoulder dystocia and maternal weight. What is the most appropriate study design? (MRCOG recall Q178)", options:["A) Retrospective cohort study","B) Case-control study","C) Case-cohort study","D) Randomised controlled trial","E) Cross-sectional study"], answer:"B) Case-control study", explanation:"Shoulder dystocia is a rare outcome — case-control is the most efficient design for rare outcomes. Cases (shoulder dystocia) vs controls (no shoulder dystocia); exposure (maternal weight) measured retrospectively → yields odds ratio. Cohort studies suit common outcomes and yield relative risk but need very large samples for rare events. RCTs are for interventions, not naturally occurring risk factors." }, { num:38, section:"Gynaecology", question:"What is the single most important investigation that should be carried out in EVERY case of heavy menstrual bleeding (HMB)? (MRCOG recall Q188)", options:["A) Pelvic ultrasound scan","B) Full blood count (FBC)","C) Vaginal swabs for microscopy and culture","D) Liver function tests","E) Endometrial biopsy"], answer:"B) Full blood count (FBC)", explanation:"NICE NG88 (2018): FBC should be performed in ALL women with HMB to assess for iron-deficiency anaemia. It is the one universal mandatory investigation. Selective investigations: pelvic USS (structural pathology), endometrial biopsy (age >45 or irregular bleeding), coagulation screen (bleeding from menarche/family history), TFTs (clinical hypothyroidism), hysteroscopy (failed medical treatment)." }, { num:39, section:"Physics / Surgical", question:"What is the frequency range of electrical current used in electrosurgery units (diathermy)? (MRCOG recall)", options:["A) 1 KHz to 1.5 MHz","B) 100 KHz to 1.5 MHz","C) 100 KHz to 4 MHz","D) 400 KHz to 9 MHz","E) 800 KHz to 9 MHz"], answer:"C) 100 KHz to 4 MHz", explanation:"Electrosurgical units use 100 KHz to 4 MHz (typically 300 KHz–3 MHz). High frequency is essential: below 100 KHz, current causes neuromuscular stimulation (tetanic contraction, VF). Above 100 KHz, current passes through tissue generating heat (cutting/coagulation) without neuromuscular stimulation. Monopolar: uses return electrode plate. Bipolar: current flows only between the two tips — safer in pregnancy and near vital structures." }, { num:40, section:"Obstetrics / Placentation", question:"Trophoblast cells that invade the decidua and fuse to form multi-nucleated giant cells are best described as which type?", options:["A) Extra-villous cytotrophoblasts","B) Villous cytotrophoblasts","C) Endovascular trophoblasts","D) Extravascular (interstitial) trophoblasts","E) Syncytiotrophoblast"], answer:"A) Extra-villous cytotrophoblasts", explanation:"Extra-villous cytotrophoblasts (EVCTs) migrate from anchoring villi into the decidua in two subtypes: (1) Interstitial (extravascular) trophoblasts — invade decidua/myometrium, fuse to form multinucleated giant cells. (2) Endovascular trophoblasts — invade spiral arteries, replacing smooth muscle/endothelium, creating low-resistance vessels. Failure of endovascular invasion → shallow placentation → pre-eclampsia/FGR. Villous cytotrophoblasts: proliferating stem cells within villi. Syncytiotrophoblast: nutrient/gas exchange surface." }, { num:41, section:"Obstetrics / Placentation", question:"Which trophoblast cell type specifically invades and remodels the spiral arteries during placentation?", options:["A) Villous cytotrophoblasts","B) Syncytiotrophoblast","C) Endovascular trophoblasts","D) Hofbauer cells","E) Decidual stromal cells"], answer:"C) Endovascular trophoblasts", explanation:"Endovascular trophoblasts invade the lumen of spiral arteries, replacing vascular endothelium and medial smooth muscle — transforming narrow, high-resistance, vasoreactive arteries into wide, low-resistance, non-vasoreactive vessels. This begins in the first trimester (decidual segment) and extends to the myometrial segment by 20 weeks. Inadequate invasion → persistently high-resistance uteroplacental flow → pre-eclampsia, placental abruption, FGR. Hofbauer cells: placental macrophages within villous stroma." }, { num:42, section:"Statistics", question:"When the population distribution is unknown, which type of statistical test is most appropriate?", options:["A) Parametric test","B) Non-parametric test","C) Fisher's exact test","D) One-way ANOVA","E) Linear regression"], answer:"B) Non-parametric test", explanation:"Non-parametric (distribution-free) tests make no assumptions about the underlying data distribution. Used when: distribution unknown, small samples, ordinal data, significant outliers. Key non-parametric equivalents: Independent t-test → Mann-Whitney U. Paired t-test → Wilcoxon signed-rank. One-way ANOVA → Kruskal-Wallis. Pearson → Spearman's rank. Parametric tests are more powerful when their normality assumptions are met." }, { num:43, section:"Obstetrics / Pharmacology", question:"A 25-year-old woman had an LSCS at term for breech under spinal anaesthesia. After what minimum time should LMWH thromboprophylaxis be started? (MRCOG recall Q174)", options:["A) 4 hours","B) 6 hours","C) 12 hours","D) 24 hours","E) No LMWH — hydration and mobilisation only"], answer:"C) 12 hours", explanation:"RCOG GTG 37a: LMWH should start no sooner than 4 hours after spinal catheter removal; standard practice post-CS is within 6–12 hours of delivery when bleeding risk is not increased. The accepted MRCOG recall answer is 12 hours post-caesarean section. All women post-CS should receive at least 10 days LMWH thromboprophylaxis; extended to 28 days if additional VTE risk factors are present." }, { num:44, section:"Anatomy / Urology", question:"A patient presents with renal calculus (kidney stone). Where is the pain typically referred to? (MRCOG recall Q181)", options:["A) Groin (and testis/labia majora)","B) Lumbar region only","C) Anterior abdominal wall","D) Umbilicus","E) Hypochondriac region"], answer:"A) Groin (and testis/labia majora)", explanation:"Renal colic classically radiates from flank (loin) → groin → ipsilateral testis (males) or labia majora (females), following the T10–L1 dermatomes and the genitofemoral nerve — shared nerve supply of ureter and scrotum/labia. Upper ureteric stones → loin/flank. Mid-ureteric stones → iliac fossa. Lower ureteric (near VUJ) → groin/inner thigh/genitalia. Associated: haematuria, nausea, vomiting, restlessness." }, { num:45, section:"Endocrinology / Pharmacology", question:"During treatment with GnRH analogues, what effect occurs on FSH, LH, and oestrogen levels after the initial flare?", options:["A) All three increase persistently","B) FSH and LH increase; oestrogen decreases","C) FSH, LH, and oestrogen all decrease (medical castration)","D) Only oestrogen increases; gonadotrophins unchanged","E) FSH decreases; LH and oestrogen unchanged"], answer:"C) FSH, LH, and oestrogen all decrease (medical castration)", explanation:"GnRH agonists (leuprorelin, goserelin, buserelin): initial flare (days 1–14, brief rise in FSH/LH/oestrogen due to receptor stimulation). Continued use → pituitary GnRH receptor downregulation → profound FSH/LH/oestrogen suppression = 'medical castration / pseudomenopause'. Used for: endometriosis, uterine fibroids, IVF downregulation, hormone-sensitive cancers. Side effects: hot flushes, bone density loss, vaginal dryness. Add-back HRT offsets hypoestrogenic side effects without reducing efficacy for endometriosis." }, { num:46, section:"Pharmacology / Anaesthesia", question:"What is the maximum safe dose of lidocaine (lignocaine) WITH adrenaline in local anaesthesia?", options:["A) 1 mg/kg","B) 3 mg/kg","C) 5 mg/kg","D) 7 mg/kg","E) 10 mg/kg"], answer:"D) 7 mg/kg", explanation:"Lidocaine maximum doses: WITHOUT adrenaline = 3 mg/kg (max 200 mg). WITH adrenaline = 7 mg/kg (max 500 mg). Adrenaline causes local vasoconstriction, slowing systemic absorption → higher total dose permissible. Lidocaine is a class Ib Na+ channel blocker. Toxicity signs (in order): peri-oral tingling, tinnitus, dizziness, visual disturbance, slurred speech, seizures, cardiac arrest. Treatment of LAST: airway management + IV Intralipid 20% (lipid emulsion). Bupivacaine max: 2 mg/kg (with or without adrenaline — cardiac toxicity limits dose)." }, { num:47, section:"Statistics", question:"Gestational age measured in weeks is an example of which type of data?", options:["A) Nominal data","B) Ordinal data","C) Continuous (ratio) data","D) Categorical data","E) Binary data"], answer:"C) Continuous (ratio) data", explanation:"Gestational age in weeks is continuous (ratio) data: measured on a continuous scale, can take decimal values (e.g. 28.4 weeks), has a true zero point, and has meaningful equal intervals. Types of data: Nominal = unordered categories (blood group, sex). Ordinal = ranked categories with unequal intervals (pain score, APGAR). Continuous/ratio = equal intervals + true zero (weight, height, gestational age, BP). Discrete = whole numbers (parity, gravidity). Data type determines the appropriate statistical test." }, { num:48, section:"Microbiology / Pharmacology", question:"Which drug is given as a single 1g oral dose for uncomplicated genital chlamydial infection?", options:["A) Doxycycline 100 mg","B) Erythromycin 500 mg","C) Azithromycin 1 g","D) Metronidazole 2 g","E) Ceftriaxone 500 mg IM"], answer:"C) Azithromycin 1 g", explanation:"Azithromycin 1 g single oral dose is the classic single-dose treatment for uncomplicated urogenital chlamydia. Note: Updated BASHH guidelines (2018) now recommend doxycycline 100 mg BD x 7 days as FIRST-LINE (superior cure rates, especially for rectal chlamydia: 98% vs 77–83%). Azithromycin 1 g remains an option when adherence to a 7-day course is a concern. Erythromycin 500 mg QDS x 14 days: used in pregnancy (doxycycline contraindicated). The extended azithromycin regimen: 1 g day 1, then 500 mg on days 2 and 3." }, { num:49, section:"Microbiology", question:"Which hepatitis B serology pattern indicates immunity acquired through vaccination ONLY (not natural infection)?", options:["A) HBsAg+ve, HBcAb+ve, HBsAb-ve","B) HBsAg-ve, HBcAb+ve, HBsAb+ve","C) HBsAg-ve, HBcAb-ve, HBsAb+ve","D) HBsAg+ve, HBcAb-ve, HBsAb-ve","E) HBsAg-ve, HBcAb-ve, HBsAb-ve"], answer:"C) HBsAg-ve, HBcAb-ve, HBsAb+ve", explanation:"Vaccination produces HBsAb only — no live virus, so HBcAb is NEVER produced after vaccination. Vaccine-induced immunity: HBsAb+ve only (HBcAb negative). Natural infection with clearance: HBsAb+ve AND HBcAb+ve. Active chronic infection: HBsAg+ve, HBcAb+ve, HBsAb-ve. Acute infection: HBsAg+ve, IgM HBcAb+ve. Occult HBV: HBsAg-ve but HBcAb+ve (detectable only by PCR). This distinction is critical for antenatal and occupational health screening." }, { num:50, section:"Immunology", question:"Which class of immunoglobulin is the MOST efficient activator of the classical complement pathway? (MRCOG recall Q49)", options:["A) IgM","B) IgA","C) IgG","D) IgE","E) IgD"], answer:"A) IgM", explanation:"IgM is the most efficient classical complement activator — a single IgM pentamer upon antigen binding activates C1q. IgG also activates classical pathway but requires two adjacent IgG molecules. Key IgM features: first antibody in primary immune response, predominantly intravascular, efficient agglutination, does NOT cross the placenta (only IgG does). IgA: activates lectin/alternative pathways. IgE: mediates type I hypersensitivity via mast cells. IgD: mainly a B-cell surface receptor." } ]; // ── Helper to make a question block ────────────────────────────────────────── function makeBlock(q) { const paras = []; // Section label paras.push(new Paragraph({ spacing: { before: 320, after: 60 }, children: [new TextRun({ text: `[${q.section}]`, italics: true, color: "888888", size: 18 })] })); // Question stem paras.push(new Paragraph({ spacing: { before: 0, after: 120 }, children: [ new TextRun({ text: `Q${q.num}. `, bold: true, size: 24, color: "1A3A6B" }), new TextRun({ text: q.question, bold: true, size: 24 }) ] })); // Options for (const opt of q.options) { paras.push(new Paragraph({ spacing: { after: 55 }, indent: { left: 440 }, children: [new TextRun({ text: opt, size: 22 })] })); } // Answer paras.push(new Paragraph({ spacing: { before: 140, after: 60 }, children: [ new TextRun({ text: "ANSWER: ", bold: true, size: 22, color: "1F7A1F" }), new TextRun({ text: q.answer, bold: true, size: 22, color: "1F7A1F" }) ] })); // Explanation paras.push(new Paragraph({ spacing: { before: 60, after: 60 }, children: [ new TextRun({ text: "EXPLANATION: ", bold: true, size: 22 }), new TextRun({ text: q.explanation, size: 22 }) ] })); // Divider paras.push(new Paragraph({ spacing: { before: 100, after: 60 }, alignment: AlignmentType.CENTER, children: [new TextRun({ text: "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━", color: "CCCCCC", size: 16 })] })); return paras; } // ── Build document ───────────────────────────────────────────────────────── const children = []; // Cover title children.push(new Paragraph({ heading: HeadingLevel.HEADING_1, alignment: AlignmentType.CENTER, spacing: { before: 200, after: 160 }, children: [new TextRun({ text: "MRCOG Part 1 — MCQ Practice Bank", bold: true, size: 36, color: "1A3A6B" })] })); children.push(new Paragraph({ alignment: AlignmentType.CENTER, spacing: { after: 100 }, children: [new TextRun({ text: "Questions 1 – 50 | All Options + Answers + Explanations", size: 24, color: "444444" })] })); children.push(new Paragraph({ alignment: AlignmentType.CENTER, spacing: { after: 80 }, children: [new TextRun({ text: "Source: MRCOG 1 Fast Track Study Group (May 2023)", italics: true, size: 20, color: "666666" })] })); children.push(new Paragraph({ alignment: AlignmentType.CENTER, spacing: { after: 400 }, children: [new TextRun({ text: "Topics: Biochemistry · Molecular Biology · Genetics · Pathology · Anatomy · Physiology · Pharmacology · Statistics · Microbiology · Immunology", italics: true, size: 19, color: "666666" })] })); // Section headings + questions const sections = [ { label: "SECTION 1: Biochemistry (Q1 – Q14)", start: 1, end: 14 }, { label: "SECTION 2: Molecular Biology, Genetics & Anatomy (Q15 – Q22)", start: 15, end: 22 }, { label: "SECTION 3: Histology, Pathology & Reproductive Science (Q23 – Q30)", start: 23, end: 30 }, { label: "SECTION 4: Microbiology, Immunology, Radiology & Gynaecology (Q31 – Q42)", start: 31, end: 42 }, { label: "SECTION 5: Obstetrics, Pharmacology & Statistics (Q43 – Q50)", start: 43, end: 50 } ]; for (const sec of sections) { // Section heading children.push(new Paragraph({ heading: HeadingLevel.HEADING_2, spacing: { before: 400, after: 200 }, children: [new TextRun({ text: sec.label, bold: true, size: 26, color: "1A3A6B" })] })); const qs = questions.filter(q => q.num >= sec.start && q.num <= sec.end); for (const q of qs) { for (const p of makeBlock(q)) children.push(p); } } const doc = new Document({ sections: [{ properties: {}, children }] }); Packer.toBuffer(doc).then(buffer => { fs.writeFileSync('/home/daytona/workspace/mrcog1-mcq/MRCOG1_MCQ_COMPLETE_Q1_to_Q50.docx', buffer); console.log('Done. Size:', buffer.length, 'bytes'); }); JSEOF node /home/daytona/workspace/mrcog1-mcq/merge_all.js

Your credits are exhausted. Your daily credits reset tomorrow, or you can purchase a top-up for more.
This is a shared conversation. Sign in to Orris to start your own chat.