Biotechnology Applications
Level 5 Mastery Paper: Quantitative & Cross-Domain Analysis
Time limit: 75 minutes Total marks: 60 Instructions: Answer ALL questions. Show full working. Calculators and pseudocode permitted. Use notation where needed.
Question 1 — Recombinant Insulin Yield & Bioreactor Kinetics (24 marks)
A biotech firm produces recombinant human insulin in E. coli carrying a plasmid encoding the A- and B-chains. The bioreactor is run in fed-batch mode.
(a) Explain, step by step, why human insulin is produced as two separate chains (A and B) expressed as fusion proteins with -galactosidase, and how the mature hormone is finally assembled. State the role of disulfide bonds. (6)
(b) In exponential growth the biomass obeys Starting from , compute the biomass concentration after 8 hours and the doubling time . (5)
(c) The specific product formation is growth-associated: . Using the biomass profile from (b), derive an expression for total insulin mass produced per litre between and h, and evaluate it. (Assume constant and product satisfies .) (6)
(d) Monod kinetics govern growth: with , . If the observed , find the substrate concentration . Comment on why fed-batch feeding keeps low but non-limiting. (4) (2 for value, 1 for algebra, 1 for comment)
Question 2 — Golden Rice, Biofortification & a Dosing Model (18 marks)
(a) Describe the engineered -carotene biosynthetic pathway in Golden Rice endosperm, naming the two transgenes originally used and the enzymatic steps they restore. Explain why endosperm normally lacks this pathway. (6)
(b) A child requires retinol activity equivalents (RAE) per day. The conversion factor is of dietary -carotene RAE. Golden Rice (GR2) provides -carotene per gram of dry rice. Calculate the mass of rice needed per day to meet the full requirement. (4)
(c) Suppose absorption is only efficient and cooking destroys of the -carotene. Recompute the required daily mass of rice. (4)
(d) Argue quantitatively whether Golden Rice alone can plausibly supply the requirement in a realistic /day rice diet, and give ONE biological limitation of biofortification beyond quantity. (4)
Question 3 — Monoclonal Antibodies, iPSCs & a Computational Growth Model (18 marks)
(a) Outline the hybridoma technology workflow for monoclonal antibody production, explaining the roles of: myeloma cells, HAT selection medium, and the reason B-cells alone cannot be cultured indefinitely. (6)
(b) Contrast reproductive cloning, therapeutic cloning, and iPSC generation. State ONE ethical advantage iPSCs have over therapeutic cloning and the four canonical Yamanaka factors. (6)
(c) A hybridoma culture doubles every h. Write pseudocode (any language) for a function cells(t) returning cell count at time (hours) from an initial cells, and compute by hand the number after days. Express your answer to 3 significant figures. (6)
End of paper.
Answer keyMark scheme & solutions
Question 1
(a) (6 marks)
- E. coli cannot process eukaryotic proteins with signal peptides/introns; the A (21 aa) and B (30 aa) chains are cloned separately (1).
- Each chain fused to -galactosidase to protect from proteolysis and aid expression/solubility (1).
- Fusion proteins expressed on separate plasmids/genes; the fusion partner cleaved chemically (CNBr at methionine) to release chains (1).
- Chains purified separately (1).
- A and B chains combined in vitro and oxidised to form correct disulfide bonds (1).
- Two interchain disulfides (A7–B7, A20–B19) plus one intrachain (A6–A11) give the mature, active hormone (1).
(b) (5 marks) Solution of (1): (2) Doubling time (2).
(c) (6 marks) (1) Integrate : (2, setup + integration). Evaluate at : (3). (≈ 1.59 g of insulin per litre.)
(d) (4 marks) (1) (2). Comment: fed-batch drip-feeds glucose so stays above (non-limiting for growth) yet low enough to avoid overflow metabolism (acetate/Crabtree) and substrate inhibition (1).
Question 2
(a) (6 marks)
- Rice endosperm makes geranylgeranyl diphosphate (GGPP) but the carotenoid pathway is switched off/absent there (1).
- Transgene 1: phytoene synthase (psy) — from daffodil (later maize in GR2) — converts GGPP → phytoene (2).
- Transgene 2: carotene desaturase (crtI) from Erwinia uredovora — carries out the desaturation steps converting phytoene → lycopene (2).
- Endogenous cyclases convert lycopene → -carotene (provitamin A), giving golden colour (1).
(b) (4 marks) Required -carotene /day (1). Rice mass (3).
(c) (4 marks) Effective -carotene per gram after losses: (2). Rice mass (2).
(d) (4 marks)
- , so a realistic diet CAN meet full RAE even with losses (2).
- Limitation (any one, 2): variable absorption depends on dietary fat; -carotene degrades in storage; genetic/nutritional status affects conversion; single nutrient does not address broader malnutrition (protein, Fe, Zn).
Question 3
(a) (6 marks)
- Immunise mouse; harvest antigen-specific B-cells from spleen (1).
- Fuse B-cells with immortal myeloma cells (PEG) → hybridomas combining antibody production + immortality (2).
- Myeloma line is HGPRT⁻; HAT medium (hypoxanthine, aminopterin, thymidine) blocks de novo nucleotide synthesis so only fused cells (with B-cell HGPRT via salvage pathway) survive (2).
- B-cells alone are mortal/senescent and die out; unfused myelomas die in HAT — selection leaves only hybridomas, then single clones screened (1).
(b) (6 marks)
- Reproductive cloning: SCNT → embryo implanted → whole organism (genetic copy, e.g. Dolly) (1).
- Therapeutic cloning: SCNT → blastocyst → harvest embryonic stem cells for tissue repair (embryo destroyed) (1).
- iPSCs: adult somatic cells reprogrammed to pluripotency by factor expression — no embryo, no egg needed (1).
- Ethical advantage of iPSC: avoids destruction of embryos / no egg donation (1).
- Yamanaka factors: Oct4, Sox2, Klf4, c-Myc (2 — all four for full marks).
(c) (6 marks) Pseudocode (2):
function cells(t): # t in hours
N0 = 5e4
Td = 18
return N0 * 2 ** (t / Td)
Compute for h (3 days) (2): (2).
[
{"claim":"Biomass after 8h ~13.16 g/L","code":"X=0.8*exp(0.35*8); result = abs(float(X)-13.156)<0.05"},
{"claim":"Doubling time ~1.98 h","code":"td=ln(2)/Rational(35,100); result = abs(float(td)-1.980)<0.01"},
{"claim":"Insulin produced ~1.588 g/L","code":"P=(0.045*0.8/0.35)*(exp(2.8)-1); result = abs(float(P)-1.588)<0.02"},
{"claim":"Monod substrate S=3.5 g/L","code":"S=symbols('S'); sol=solve(Eq(0.35,0.40*S/(0.5+S)),S)[0]; result = abs(float(sol)-3.5)<1e-6"},
{"claim":"Rice needed with losses ~183.7 g","code":"m=3600/(35*0.8*0.7); result = abs(float(m)-183.67)<0.5"},
{"claim":"Hybridoma count after 72h = 8e5","code":"N=5e4*2**(72/18); result = abs(float(N)-800000)<1"}
]