-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquestions.json
More file actions
3602 lines (3602 loc) · 236 KB
/
questions.json
File metadata and controls
3602 lines (3602 loc) · 236 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"id": 1,
"question": "Where is prozone usually seen?",
"options": [
"serum which contain low titer of antibodies",
"body fluids which contain excess antigens",
"serum which contain low titer of antigens",
"serum which contain high titer of antibodies"
],
"correctAnswerIndex": 3,
"rationalization": "The prozone phenomenon occurs in agglutination or precipitation reactions when the concentration of antibody is too high, leading to the formation of very small complexes that do not lattice properly, resulting in a false-negative or weakly positive reaction. This happens in the zone of antibody excess."
},
{
"id": 2,
"question": "A cut on a person's finger becomes contaminated with the bacterium Staphylococcus aureus. The first response by the immune system consists of the activity of:",
"options": [
"B cells",
"T cells",
"Neutrophils",
"Monocytes"
],
"correctAnswerIndex": 2,
"rationalization": "Neutrophils are phagocytic cells and are the primary first responders (innate immunity) to bacterial infections, migrating quickly to the site of inflammation. Monocytes arrive later and differentiate into macrophages. B and T cells are part of the adaptive immune response, which takes longer to develop."
},
{
"id": 3,
"question": "What specimen is used to diagnose neurosyphilis?",
"options": [
"Swab",
"Serum",
"CSF",
"Synovial fluid"
],
"correctAnswerIndex": 2,
"rationalization": "Neurosyphilis involves the central nervous system (brain and spinal cord). Diagnosis requires testing cerebrospinal fluid (CSF) for the presence of Treponema pallidum antibodies (e.g., VDRL-CSF, FTA-ABS). Serum tests can be positive but don't confirm CNS involvement."
},
{
"id": 4,
"question": "Monocytes and macrophages play a role in the mononuclear phagocytic system. For an antibody-coated antigen to be phagocytized, what part of the antibody molecule fits into a receptor on the phagocytic cell?",
"options": [
"Fc region",
"Fab region",
"Hinge region",
"Variable region"
],
"correctAnswerIndex": 0,
"rationalization": "Phagocytic cells (like macrophages) have Fc receptors (FcR) on their surface. These receptors bind to the Fc (Fragment crystallizable) portion of antibodies (especially IgG) that have coated an antigen (opsonization), triggering phagocytosis. The Fab region binds the antigen."
},
{
"id": 5,
"question": "An individual is recovering from a bacterial infection and tests positive for antibodies to a protein normally found in the cytoplasm of this bacterium. Which of the following statements is true of this situation?",
"options": [
"Class I molecules have presented the bacterial antigen to CD8+ T cells",
"The T cell receptor on CD4+ T cells has recognized the bacterial antigen directly",
"Class II molecules have presented the bacterial antigen to CD4+ T cells",
"CD8+ T cells have recognized the bacterium and activated B cells"
],
"correctAnswerIndex": 2,
"rationalization": "Bacterial antigens are typically exogenous (extracellular or phagocytosed). Antigen-presenting cells (APCs like macrophages, dendritic cells, B cells) process these antigens and present peptides via MHC Class II molecules to CD4+ T helper cells. CD4+ T cells are crucial for initiating an antibody response by B cells. Class I molecules present endogenous antigens (like viral proteins made inside the cell) to CD8+ T cells."
},
{
"id": 6,
"question": "A false ______ serologic reaction is sometimes caused by excess amount of reagent red cells.",
"options": [
"positive",
"negative"
],
"correctAnswerIndex": 1,
"rationalization": "This describes the postzone phenomenon. If there is an excess of antigen (in this case, reagent red cells acting as antigen carriers) relative to the amount of antibody, lattice formation can be inhibited, leading to a false-negative result. Prozone is antibody excess."
},
{
"id": 7,
"question": "A seriously wounded person is treated with anti-tetanus. What adaptive immunity is involved?",
"options": [
"natural passive",
"artificial passive",
"natural active",
"artificial active"
],
"correctAnswerIndex": 1,
"rationalization": "Anti-tetanus treatment involves injecting pre-formed antibodies (immunoglobulins) against the tetanus toxin. This provides immediate but temporary protection. It's passive because the recipient's immune system doesn't make the antibodies, and artificial because it's acquired through medical intervention (injection)."
},
{
"id": 8,
"question": "A patient is given a tetanus toxoid. What type of immunity is involved?",
"options": [
"natural passive",
"artificial passive",
"artificial active",
"natural active"
],
"correctAnswerIndex": 2,
"rationalization": "A tetanus toxoid is an inactivated toxin used as a vaccine. The recipient's immune system recognizes the toxoid as foreign and actively mounts an immune response, producing its own antibodies and memory cells. This provides long-lasting protection. It's active because the body makes the response, and artificial because it's acquired via vaccination."
},
{
"id": 9,
"question": "The following are specific serologic tests for syphilis, except:",
"options": [
"RPR",
"MHA-TP",
"FTA-ABS",
"TP-PA"
],
"correctAnswerIndex": 0,
"rationalization": "RPR (Rapid Plasma Reagin) is a non-treponemal test that detects reagin antibodies (antibodies against cardiolipin), which are not specific to Treponema pallidum. MHA-TP, FTA-ABS, and TP-PA/HATTS are specific treponemal tests that detect antibodies directed against T. pallidum antigens."
},
{
"id": 10,
"question": "Flow cytometry results on a patient reveal a lack of cells with CD2 and CD3. What does this indicate?",
"options": [
"lack of B cells",
"lack of T cells",
"lack of monocytes",
"lack of NK cells"
],
"correctAnswerIndex": 1,
"rationalization": "CD2 and CD3 are classic pan-T cell markers, meaning they are expressed on the surface of virtually all mature T lymphocytes. Their absence indicates a deficiency or lack of T cells. B cells typically express CD19/CD20, monocytes CD14, NK cells CD16/CD56."
},
{
"id": 11,
"question": "Receptor of Epstein-Barr virus",
"options": [
"CD4",
"CD8",
"CD19",
"CD21"
],
"correctAnswerIndex": 3,
"rationalization": "The Epstein-Barr virus (EBV) primarily infects B lymphocytes by binding to the CD21 molecule (also known as CR2, the complement receptor 2) on the B cell surface."
},
{
"id": 12,
"question": "Measurement of CRP levels can be used for all of the following except:",
"options": [
"monitoring drug therapy with anti-inflammatory agents",
"tracking the normal progress of wound healing in postsurgery patients",
"diagnosis of a specific bacterial infection",
"monitoring the activity of disorders such as rheumatoid arthritis"
],
"correctAnswerIndex": 2,
"rationalization": "C-reactive protein (CRP) is an acute-phase reactant that increases non-specifically in response to inflammation, infection (bacterial or viral), and tissue injury. While elevated CRP suggests inflammation often seen in bacterial infections, it cannot diagnose a specific bacterial infection; culture or specific molecular/serological tests are needed for that. It is useful for monitoring inflammation, disease activity (like RA), post-surgical recovery, and drug therapy effectiveness."
},
{
"id": 13,
"question": "Actively acquired immunity can be caused by all of the following, except:",
"options": [
"contracting the disease",
"contracting a subclinical case of the disease",
"injection with appropriate vaccine",
"injection with immune serum containing appropriate antibodies"
],
"correctAnswerIndex": 3,
"rationalization": "Active immunity requires the individual's immune system to actively respond to an antigen (from disease, subclinical exposure, or vaccination). Injecting pre-formed antibodies provides passive immunity, not active immunity."
},
{
"id": 14,
"question": "A major advantage of passive immunization compared to active immunization is that:",
"options": [
"antibody is available more quickly",
"it provides long-term immunity",
"IgM antibody is the primary type made",
"it is administered orally"
],
"correctAnswerIndex": 0,
"rationalization": "Passive immunization provides immediate protection because pre-formed antibodies are directly administered. Active immunization requires the body to mount its own response, which takes days to weeks to develop protective antibody levels. Passive immunity is short-lived, typically involves IgG, and is usually given via injection."
},
{
"id": 15,
"question": "The enzyme which fragments antibody molecule into 2 Fab fragments and 1 Fc fragment:",
"options": [
"Ficin",
"Pepsin",
"Papain",
"Trypsin"
],
"correctAnswerIndex": 1,
"rationalization": "Pepsin cleaves below the hinge region, producing 1 F(ab')\u2082 fragment (with two antigen-binding sites) and degraded Fc pieces."
},
{
"id": 16,
"question": "The disappearance of HBsAg and HBeAg, persistence of anti-HBs, often anti-HBe:",
"options": [
"acute HBV infection",
"chronic HBV infection",
"recovery phase",
"vaccinated individual"
],
"correctAnswerIndex": 2,
"rationalization": "This serological profile indicates recovery from Hepatitis B infection and the development of immunity. HBsAg (surface antigen) and HBeAg (e antigen, marker of infectivity) become undetectable. Anti-HBs (antibody to surface antigen) appears and confers immunity. Anti-HBe (antibody to e antigen) also typically appears during seroconversion."
},
{
"id": 17,
"question": "A 12-year old girl presented to her doctor complaining of headache, stiff neck, fever, and lethargy. A week earlier she had swam in a warm-water spring. Motile amoeba measuring 10-30 um with a large central karyosome surrounded by a halo were seen in the CSF. These are likely:",
"options": [
"Entamoeba histolytica trophozoites",
"Acanthamoeba spp. trophozoites",
"Iodamoeba butschlii trophozoites",
"Naegleria fowleri trophozoites"
],
"correctAnswerIndex": 3,
"rationalization": "This clinical scenario (swimming in warm fresh water, symptoms of meningitis) and CSF amoeba morphology (size, motility, single nucleus with large central karyosome and peripheral halo) are characteristic of Naegleria fowleri, the causative agent of Primary Amebic Meningoencephalitis (PAM)."
},
{
"id": 18,
"question": "Complement is inactivated at:",
"options": [
"37\u00b0C for 30 minutes",
"37\u00b0C for 60 minutes",
"56\u00b0C for 60 minutes",
"56\u00b0C for 30 minutes"
],
"correctAnswerIndex": 3,
"rationalization": "Heating serum at 56\u00b0C for 30 minutes is the standard procedure to inactivate the complement system, primarily by denaturing heat-labile components like C1, C2, and Factor B. This is often done for serological tests where complement activity could interfere."
},
{
"id": 19,
"question": "The tumor marker for urinary bladder cancer is:",
"options": [
"Calcitonin",
"Her2/Neu",
"NMP",
"Transitional epithelial cells"
],
"correctAnswerIndex": 2,
"rationalization": "NMP22 (Nuclear Matrix Protein 22) is a tumor marker approved for monitoring recurrence of bladder cancer and sometimes used alongside cytology for detection. Calcitonin is for medullary thyroid cancer, Her2/Neu for breast cancer. While transitional epithelial cells are involved, they aren't the marker itself."
},
{
"id": 20,
"question": "Serum sickness: type of hypersensitivity",
"options": [
"type I",
"type II",
"type III",
"type IV"
],
"correctAnswerIndex": 2,
"rationalization": "Serum sickness is a classic example of Type III hypersensitivity. It's caused by the formation of immune complexes (antigen-antibody) in the circulation, which deposit in tissues (like blood vessels, joints, kidneys) and activate complement, leading to inflammation and tissue damage."
},
{
"id": 21,
"question": "Monoclonal antibodies are produced by the fusion of:",
"options": [
"spleen cells",
"myeloma cells",
"lymphoma cells",
"A & B",
"A & C"
],
"correctAnswerIndex": 4,
"rationalization": "Monoclonal antibodies are produced by hybridoma technology, which involves fusing antibody-producing B cells (typically harvested from the spleen of an immunized animal) with immortal myeloma cells (cancerous plasma cells). The resulting hybridoma cells are immortal and produce large quantities of a single specific antibody."
},
{
"id": 22,
"question": "Which complement component is found in both the classical and alternative pathways?",
"options": [
"C1",
"C4",
"Factor D",
"C3"
],
"correctAnswerIndex": 3,
"rationalization": "Both the classical pathway (activated by antibody-antigen complexes) and the alternative pathway (activated directly by microbial surfaces) converge at the activation of C3. C3 cleavage into C3a and C3b is a central step leading to the formation of the membrane attack complex and opsonization. C1 and C4 are unique to the classical (and lectin) pathway; Factor D is unique to the alternative pathway."
},
{
"id": 23,
"question": "The serum of an individual who received all doses of HepB vaccine should contain what antibody?",
"options": [
"anti-HBc",
"anti-HBe",
"anti-HBs",
"None"
],
"correctAnswerIndex": 2,
"rationalization": "Successful vaccination against Hepatitis B virus (HBV) induces the production of protective antibodies against the Hepatitis B surface antigen (HBsAg). This antibody is anti-HBs. Anti-HBc indicates past or current infection, not vaccination. Anti-HBe appears during infection recovery."
},
{
"id": 24,
"question": "Type of immunity involved in question number 23:",
"options": [
"natural passive",
"artificial active",
"natural active",
"artificial passive"
],
"correctAnswerIndex": 3,
"rationalization": "Vaccination involves administering an antigen (HBsAg in the HepB vaccine) to stimulate the recipient's immune system to actively produce its own protective antibodies (anti-HBs) and memory cells. It's artificial (via injection) and active (body's own response)."
},
{
"id": 25,
"question": "Antibody involved in myasthenia gravis",
"options": [
"anti-acetylcholine receptor antibody",
"anti-thyroid antibody",
"anti-islet cell antibody",
"anti-nuclear antibody"
],
"correctAnswerIndex": 0,
"rationalization": "Myasthenia gravis is an autoimmune disorder where antibodies are produced against acetylcholine receptors (AChR) at the neuromuscular junction, impairing nerve impulse transmission and causing muscle weakness."
},
{
"id": 26,
"question": "Metchnikoff first described which of the following:",
"options": [
"phagocytosis",
"humoral immunity",
"vaccination",
"agglutination"
],
"correctAnswerIndex": 0,
"rationalization": "Elie Metchnikoff is credited with the discovery and description of phagocytosis ('cell eating') by observing specialized cells (phagocytes) engulfing foreign particles, a key component of cellular immunity."
},
{
"id": 27,
"question": "HLA associated with ankylosing spondylitis:",
"options": [
"HLA-DR3",
"HLA-B27",
"HLA-DR4",
"HLA-B8"
],
"correctAnswerIndex": 1,
"rationalization": "There is a very strong association between the HLA-B27 allele and ankylosing spondylitis, an inflammatory arthritis primarily affecting the spine and sacroiliac joints."
},
{
"id": 28,
"question": "Immunoglobulin/s containing the J chain:",
"options": [
"IgM",
"Secretory IgA",
"A & B",
"IgG"
],
"correctAnswerIndex": 2,
"rationalization": "The J (joining) chain is a polypeptide that links immunoglobulin monomers together to form polymers. It is found in pentameric IgM and dimeric secretory IgA."
},
{
"id": 29,
"question": "The IgG subclass that is most effective binder of the complement:",
"options": [
"IgG1",
"IgG2",
"IgG3",
"IgG4"
],
"correctAnswerIndex": 2,
"rationalization": "Among the IgG subclasses, IgG3 is generally the most effective at activating the classical complement pathway, followed by IgG1, then IgG2. IgG4 does not typically activate complement."
},
{
"id": 30,
"question": "Which of the following is used to detect allergen-specific IgE?",
"options": [
"RIST",
"RAST",
"CRP",
"IEP"
],
"correctAnswerIndex": 1,
"rationalization": "RAST (Radioallergosorbent test) is a classic method, though largely replaced by similar non-radioactive methods (like ImmunoCAP), used to measure allergen-specific IgE antibodies in a patient's serum to help identify allergies. RIST (Radioimmunosorbent test) measures total IgE."
},
{
"id": 31,
"question": "C1q, C1r, C1s are bound together by what element?",
"options": [
"magnesium",
"calcium",
"potassium",
"sodium"
],
"correctAnswerIndex": 1,
"rationalization": "The C1 complex of the classical complement pathway consists of one C1q molecule and two molecules each of C1r and C1s. Calcium ions (Ca++) are required to hold this complex together (C1q-C1r2-C1s2). Magnesium (Mg++) is required later for C3 convertase formation."
},
{
"id": 32,
"question": "Complement component with strong chemotactic factor and strong anaphylatoxin:",
"options": [
"C3a",
"C5a",
"C3b",
"A & B"
],
"correctAnswerIndex": 3,
"rationalization": "Both C3a and C5a are anaphylatoxins (cause mast cell degranulation and histamine release) and chemotactic factors (attract neutrophils and other inflammatory cells). However, C5a is significantly more potent in both activities, particularly as a chemotactic agent for neutrophils. C3b is primarily an opsonin."
},
{
"id": 33,
"question": "Diagnostic marker for familial medullary thyroid carcinoma:",
"options": [
"calcitonin",
"thyroglobulin",
"TSH",
"T3"
],
"correctAnswerIndex": 0,
"rationalization": "Medullary thyroid carcinoma (MTC) is a cancer of the parafollicular cells (C cells) of the thyroid, which produce calcitonin. Elevated calcitonin levels are a key diagnostic and monitoring marker for MTC, including familial forms associated with MEN syndromes."
},
{
"id": 34,
"question": "Tests to differentiate Streptococcus pneumoniae and Viridans Streptococci: I. Taxo A II. Bacitracin III. Taxo P IV. Optochin",
"options": [
"I, II",
"III, IV",
"I, III",
"II, IV"
],
"correctAnswerIndex": 1,
"rationalization": "Streptococcus pneumoniae is susceptible to optochin (Taxo P), while viridans group streptococci are resistant. Bacitracin (Taxo A) is used to differentiate Group A Strep (susceptible) from other beta-hemolytic streptococci. The key differentiating test listed is Optochin (IV). If Taxo P (III) is indeed Optochin, then only one test is relevant, making the Roman numeral options problematic unless interpreted differently. Standard differentiation relies heavily on Optochin susceptibility and bile solubility (not listed). Assuming 'Taxo P' and 'Optochin' are both referring to Optochin, the answer points to Optochin being the key differentiator here. Correction based on standard tests: Optochin (Taxo P) is the primary test. Bile solubility is confirmatory. Bacitracin (Taxo A) is irrelevant here. The question format is confusing. If we must choose from the options, and assuming Taxo P = Optochin, then IV alone would be correct, but that's not an option. If III=Taxo P and IV=Optochin (redundant), option B (III, IV) is chosen, implying both refer to the same test needed."
},
{
"id": 35,
"question": "Predominant type of antibody found in the serum of neonates born after full-term gestation:",
"options": [
"infant IgM",
"infant IgG",
"maternal IgM",
"maternal IgG"
],
"correctAnswerIndex": 3,
"rationalization": "IgG is the only immunoglobulin class that can cross the placenta from mother to fetus. Therefore, at birth, a full-term neonate's serum contains significant levels of maternal IgG, providing passive immunity. The infant starts producing its own IgM shortly after birth, followed by IgG and IgA later."
},
{
"id": 36,
"question": "How does the secondary humoral immune response differ from the primary response?",
"options": [
"IgM antibody is higher",
"response has a longer lag time",
"antibody production lasts for a shorter period",
"antibody production is higher"
],
"correctAnswerIndex": 3,
"rationalization": "The secondary (anamnestic) immune response, upon re-exposure to an antigen, is faster, stronger (higher antibody titers, mainly IgG), and longer-lasting than the primary response. The lag phase is shorter, and IgG is the predominant antibody class (though some IgM is still produced initially)."
},
{
"id": 37,
"question": "He discovered complement as a heat labile component in the natural serum; described the phenomenon of complement fixation and its diagnostic possibilities:",
"options": [
"Edward Jenner",
"Jules Bordet",
"Robert Koch",
"Elie Metchnikoff"
],
"correctAnswerIndex": 1,
"rationalization": "Jules Bordet discovered the heat-labile component in serum (which he called 'alexine,' later renamed complement) and developed the complement fixation test, a significant diagnostic tool. Metchnikoff discovered phagocytosis, Jenner developed vaccination, Koch established postulates for infectious disease."
},
{
"id": 38,
"question": "A commonly used screening method for anti-HIV 1 detection:",
"options": [
"Western Blot",
"RT-PCR",
"ELISA",
"Complement Fixation"
],
"correctAnswerIndex": 2,
"rationalization": "ELISA (Enzyme-Linked Immunosorbent Assay) is the most common and widely used screening method for detecting antibodies to HIV-1 (and HIV-2). Positive screening tests require confirmation by more specific methods like Western blot or HIV RNA testing."
},
{
"id": 39,
"question": "HLA on red blood cells:",
"options": [
"Bennett-Goodspeed",
"HLA-B27",
"HLA-DR",
"HLA-DQ"
],
"correctAnswerIndex": 0,
"rationalization": "While most HLA antigens (Class I and II) are primarily on nucleated cells, some HLA-related antigens, part of the Bennett-Goodspeed (Bg) system (Bga, Bgb, Bgc), are weakly expressed remnants of HLA Class I antigens found on red blood cells. HLA-B27, HLA-DR etc., are not typically detected directly on RBCs by standard methods."
},
{
"id": 40,
"question": "The substance detected by RPR and VDRL:",
"options": [
"cardiolipin",
"reagin",
"treponemal antibody",
"nontreponemal antigen"
],
"correctAnswerIndex": 1,
"rationalization": "RPR and VDRL are non-treponemal tests that detect 'reagin' antibodies. Reagin is an antibody (primarily IgG and IgM) directed against cardiolipin, a lipid component released from host cells damaged by T. pallidum infection (and also present in other conditions)."
},
{
"id": 41,
"question": "Which of the following describes a direct immunofluorescence assay?",
"options": [
"conjugated patient antibody reacts with tissue antigen",
"patient antibody reacts with known antigen attached to solid phase",
"patient antibody reacts with tissue antigen and then is bound by conjugated anti-immunoglobulin",
"conjugated reagent antibody reacts with antigen to form complex"
],
"correctAnswerIndex": 3,
"rationalization": "In direct immunofluorescence (DIF), a fluorescently labeled antibody (conjugated reagent antibody) is used to directly detect the target antigen present in a patient's tissue or cells."
},
{
"id": 42,
"question": "The key structural difference that distinguishes immunoglobulin subclasses:",
"options": [
"number of domains",
"number of light chains",
"sequence of the constant region",
"sequence of the variable region"
],
"correctAnswerIndex": 0,
"rationalization": "Immunoglobulin subclasses (e.g., IgG1, IgG2, IgG3, IgG4) within a class (e.g., IgG) differ primarily in the amino acid sequences of their heavy chain constant regions. These differences affect properties like hinge region structure, number of interchain disulfide bonds, and effector functions (complement fixation, Fc receptor binding)."
},
{
"id": 43,
"question": "A haptenic determinant will react with:",
"options": [
"T cells but not B cells",
"both T cells and B cells",
"neither T cells nor B cells",
"antibody but not T cells"
],
"correctAnswerIndex": 3,
"rationalization": "Haptens are small molecules that are antigenic (can bind to antibodies) but not immunogenic on their own (cannot elicit an immune response unless bound to a larger carrier protein). B cells (producing antibodies) can recognize haptens directly (especially when part of a hapten-carrier complex). T cells typically recognize processed peptide antigens presented by MHC molecules, not small haptens directly."
},
{
"id": 44,
"question": "SCID is an immunodeficiency with:",
"options": [
"decreased or dysfunctional T cells",
"decreased or dysfunctional B cells",
"decreased or dysfunctional T and B cells",
"decreased or dysfunctional phagocytic cells"
],
"correctAnswerIndex": 2,
"rationalization": "Severe Combined Immunodeficiency (SCID) comprises a group of genetic disorders characterized by profound defects in both T lymphocyte and B lymphocyte development or function, leading to a severely compromised adaptive immune system."
},
{
"id": 45,
"question": "Which of the following is characteristic of B cells?",
"options": [
"phagocytosis is major function",
"secrete C5",
"contain surface immunoglobulins",
"participate in antibody-dependent cellular cytotoxicity"
],
"correctAnswerIndex": 2,
"rationalization": "Mature B lymphocytes are characterized by the presence of surface immunoglobulins (sIg), primarily IgM and IgD, which function as the B cell receptor (BCR) for antigen recognition. T cells lack sIg. While some B cells might have limited phagocytic capability, it's not their defining role. They do not secrete C5. They participate in ADCC via secreted antibody, but the cell itself doesn't typically carry out the killing like an NK cell."
},
{
"id": 46,
"question": "The first serological marker to appear in patients with acute hepatitis B virus infection:",
"options": [
"anti-HBc IgM",
"HBeAg",
"HBsAg",
"ALT"
],
"correctAnswerIndex": 2,
"rationalization": "Hepatitis B surface antigen (HBsAg) is the earliest detectable serological marker in acute HBV infection, appearing before symptoms and antibody responses (like anti-HBc or anti-HBs). HBeAg usually appears shortly after HBsAg. ALT elevation indicates liver damage but isn't a specific viral marker."
},
{
"id": 47,
"question": "The most common label in direct fluorescent antibody technique:",
"options": [
"alkaline phosphatase",
"horseradish peroxidase",
"calcofluor white",
"fluorescein isothiocyanate"
],
"correctAnswerIndex": 3,
"rationalization": "Fluorescein isothiocyanate (FITC) is a widely used green fluorescent dye conjugated to antibodies for use in direct and indirect immunofluorescence techniques due to its bright fluorescence and relatively good photostability. Enzyme labels like ALP and HRP are used in ELISA or immunohistochemistry. Calcofluor white is a stain for fungi."
},
{
"id": 48,
"question": "The visible serological reaction between soluble antigen and its specific antibody is:",
"options": [
"agglutination",
"precipitation",
"sensitization",
"opsonization"
],
"correctAnswerIndex": 0,
"rationalization": "When a soluble antigen reacts with its specific antibody (precipitin), under optimal conditions of concentration (zone of equivalence), they form large, insoluble lattice structures that become visible as a precipitate. Agglutination involves particulate antigens (like cells). Sensitization is the initial binding of antibody to antigen, which may not be visible. Opsonization is coating for phagocytosis."
},
{
"id": 49,
"question": "Cytokine that has distinct target specificity for the neutrophil:",
"options": [
"IL-1",
"IL-2",
"IL-6",
"IL-8"
],
"correctAnswerIndex": 3,
"rationalization": "Interleukin-8 (IL-8, also known as CXCL8) is a potent chemokine whose primary function is the recruitment and activation of neutrophils to sites of inflammation. While other cytokines like IL-1 and IL-6 can influence neutrophils indirectly or have broader effects, IL-8 is particularly specific for neutrophil chemotaxis."
},
{
"id": 50,
"question": "Which of the following is a serologic test for typhoid fever?",
"options": [
"Weil-Felix Test",
"ASO titer",
"Rose Waaler Test",
"Widal Test"
],
"correctAnswerIndex": 3,
"rationalization": "The Widal test is a classic agglutination test used to detect antibodies (agglutinins) against the O (somatic) and H (flagellar) antigens of Salmonella Typhi, the causative agent of typhoid fever. Its clinical utility is limited due to issues with sensitivity, specificity, and interpretation. Weil-Felix detects rickettsial antibodies. Rose Waaler is for rheumatoid factor."
},
{
"id": 51,
"question": "The following test orders for different patients have been received at the same time. Which test would you collect first?",
"options": [
"ASAP glucose in the cardiac unit",
"STAT glucose in the ER",
"Fasting glucose in the outpatient clinic",
"Routine glucose in the medical ward"
],
"correctAnswerIndex": 1,
"rationalization": "STAT orders take precedence over all others, especially those from the Emergency Room (ER) or Intensive Care Unit (ICU), as they indicate urgent medical need. Among STATs, glucose is often critical for patient management. ASAP means 'as soon as possible' but is less urgent than STAT. Fasting glucose can wait until the patient is fasting."
},
{
"id": 52,
"question": "You are asked to collect a blood specimen from an inpatient. The patient is not wearing an ID band. What is the best thing to do?",
"options": [
"Ask the patient to state his or her full name.",
"Ask the patient's nurse to put an ID band on the patient before you draw the specimen.",
"Identify the patient using the ID card on the door.",
"Refuse to draw the specimen and cancel the request."
],
"correctAnswerIndex": 1,
"rationalization": "Proper patient identification is paramount to prevent errors. Collection should not proceed without a positive ID band confirming the patient's identity against the requisition. Asking the patient's name is insufficient, and relying on a door card is unreliable. Refusing/canceling might be necessary if ID cannot be resolved, but the first step is to involve the nurse to correctly band the patient."
},
{
"id": 53,
"question": "The tourniquet should be released: I. As soon as blood flow is established. II. Before the needle is withdrawn from the arm. III. Within 2 minutes of application",
"options": [
"I only",
"I and II",
"I, II, III",
"I and III"
],
"correctAnswerIndex": 2,
"rationalization": "Standard phlebotomy procedure dictates releasing the tourniquet as soon as blood flow is established, *before* removing the needle, and *within one minute* of application to prevent hemoconcentration and discomfort. Option III (within 2 minutes) exceeds the recommended time. *Assuming the question intends to combine correct principles despite the flawed 2-minute option:* Release *as soon as flow is established* (I) and *before needle removal* (II) are correct principles. The 1-minute limit is also crucial. Since 'c' includes I and II, it's the best available choice despite the flawed timing in III, or perhaps III meant <1 min. *Correction:* Release within 1 minute. Release as soon as flow established. Release before needle removal. Options are poorly constructed. Best practice is release within 1 min AND before needle removal. Option c: I, II, III. If we must choose, and knowing I and II are correct principles, 'c' might be the intended answer, assuming III is either flawed or meant <1 min. Let's choose C based on I and II being correct actions."
},
{
"id": 54,
"question": "Which type of patient is most likely to have an arteriovenous fistula or graft?",
"options": [
"Arthritic",
"Chemotherapy",
"Dialysis",
"Diabetic"
],
"correctAnswerIndex": 2,
"rationalization": "Patients undergoing hemodialysis require reliable, long-term vascular access capable of handling high blood flow rates. An arteriovenous (AV) fistula (a surgical connection between an artery and a vein) or an AV graft (using synthetic material to connect an artery and vein) provides this access."
},
{
"id": 55,
"question": "What causes evacuated tubes to fill with blood automatically?",
"options": [
"Arterial pressure",
"Patient's blood pressure",
"Pressure from the tourniquet",
"Premeasured tube vacuum"
],
"correctAnswerIndex": 3,
"rationalization": "Evacuated blood collection tubes contain a precisely measured negative pressure (vacuum). When the needle punctures the stopper, this vacuum draws the required volume of blood into the tube."
},
{
"id": 56,
"question": "Which is the correct sequence of events after blood vessel injury?",
"options": [
"Fibrin clot formation, platelet aggregation, vasoconstriction",
"Platelet aggregation, vasoconstriction, fibrin clot formation",
"Vasoconstriction, platelet aggregation, fibrin clot formation",
"Vasoconstriction, fibrin clot formation, platelet aggregation"
],
"correctAnswerIndex": 1,
"rationalization": "Following vessel injury, the immediate response is vasoconstriction (narrowing of the vessel) to reduce blood flow. Platelets then adhere to the injured site and aggregate, forming a temporary platelet plug (primary hemostasis). Finally, the coagulation cascade is activated, leading to the formation of fibrin, which reinforces the platelet plug, forming a stable fibrin clot (secondary hemostasis)."
},
{
"id": 57,
"question": "Reverse isolation may be used for:",
"options": [
"a patient with measles",
"an adult patient with the flu",
"a patient with tuberculosis",
"a patient with severe burns"
],
"correctAnswerIndex": 3,
"rationalization": "Reverse isolation (protective isolation) is used to protect highly susceptible patients (immunocompromised) from infectious agents in the environment or from healthcare workers. Patients with severe burns have lost their protective skin barrier and are extremely vulnerable to infection. Patients with measles, flu, or TB require transmission-based precautions (airborne, droplet, contact) to prevent *them* from spreading infection to others."
},
{
"id": 58,
"question": "A national organization that develops guidelines and sets standards for laboratory procedures is the:",
"options": [
"CAP",
"CLSI",
"NAACLS",
"CLIA '88"
],
"correctAnswerIndex": 1,
"rationalization": "The Clinical and Laboratory Standards Institute (CLSI) is a global, nonprofit organization that develops and promotes best practices in clinical and laboratory testing through consensus-based standards and guidelines. CAP accredits labs, CLIA regulates labs, NAACLS accredits educational programs."
},
{
"id": 59,
"question": "Which of the following items is PPE?",
"options": [
"Biohazard bag",
"Countertop shield",
"Nonlatex gloves",
"Sharps container"
],
"correctAnswerIndex": 2,
"rationalization": "Personal Protective Equipment (PPE) includes items worn by individuals to protect themselves from hazards. Gloves, gowns, masks, respirators, and eye protection are common PPE. Biohazard bags and sharps containers are engineering/work practice controls for waste. Countertop shields are engineering controls."
},
{
"id": 60,
"question": "Which of the following examples of potential exposure to blood-borne pathogens involve a parenteral route of transmission?",
"options": [
"Eating lunch in the specimen processing area",
"Handling specimens without gloves on",
"Licking fingers while turning lab manual pages",
"Rubbing the eyes while processing specimens"
],
"correctAnswerIndex": 3,
"rationalization": "Parenteral exposure means entry through a route other than the digestive tract, typically involving a break in the skin or mucous membranes. Rubbing eyes (mucous membrane) with contaminated hands or gloves is a potential parenteral exposure route. The other options involve ingestion (oral route)."
},
{
"id": 61,
"question": "The bevel of the needle should be held ______ during a venipuncture.",
"options": [
"Downward",
"Upward",
"Sideways",
"Any direction is acceptable"
],
"correctAnswerIndex": 1,
"rationalization": "Inserting the venipuncture needle with the bevel facing upward allows for smooth entry into the vein, prevents the bevel from pressing against the vein wall (occluding flow), and facilitates blood flow into the needle."
},
{
"id": 62,
"question": "A hematoma can form if: i. Improper pressure is applied to a site after venipuncture. ii. The patient suddenly moves and the needle comes out of the vein. iii. The needle penetrates all the way through the vein.",
"options": [
"i only",
"i and ii",
"ii and iii",
"i, ii, iii"
],
"correctAnswerIndex": 3,
"rationalization": "A hematoma (bruise) forms when blood leaks out of the vein into the surrounding tissue. This can happen if: i) pressure is not applied adequately after needle removal, ii) the needle slips out of the vein (e.g., patient movement), or iii) the needle punctures through both walls of the vein (transfixation)."
},
{
"id": 63,
"question": "Which of the following area(s) is (are) acceptable for the collection of capillary blood from an infant?",
"options": [
"Posterior curve of the heel",
"Arch of the foot",
"Previous puncture sites",
"Medial or lateral plantar surface"
],
"correctAnswerIndex": 3,
"rationalization": "For infants under one year old, the recommended sites for capillary puncture are the medial and lateral portions of the plantar surface (bottom) of the heel. Puncturing the posterior curve, arch, or previous puncture sites increases the risk of nerve damage or hitting the calcaneus bone."
},
{
"id": 64,
"question": "If a patient adamantly refuses to have blood drawn, you should:",
"options": [
"restrain the patient and collect the specimen",
"notify the patient's nurse or physician",
"have the patient sign a waiver",
"document the refusal and continue with other patients"
],
"correctAnswerIndex": 1,
"rationalization": "Patients have the right to refuse medical procedures, including blood draws. If a patient refuses, the phlebotomist should not attempt to coerce or restrain them. The refusal should be documented, and the patient's nurse or physician must be notified so they can address the situation with the patient."
},
{
"id": 65,
"question": "What is the best approach to use on an 8-year-old child who needs to have blood drawn?",
"options": [
"Explain the draw in simple terms and ask for the child's cooperation.",
"Tell the child it won't hurt.",
"Restrain the child immediately.",
"Offer the child a bribe."
],
"correctAnswerIndex": 0,
"rationalization": "Engaging school-aged children (like an 8-year-old) by explaining the procedure honestly and simply, addressing their fears, and seeking their cooperation is the most effective approach. Restraint should be a last resort, bribery is unprofessional, and falsely claiming it won't hurt erodes trust."
},
{
"id": 66,
"question": "Which of the following situations can result in hemoconcentration?",
"options": [
"Leaving the tourniquet on over 1 minute",
"Drawing a large tube with a 23-gauge needle",
"Vigorously mixing the specimen",
"Partially filling a normal-draw tube"
],
"correctAnswerIndex": 0,
"rationalization": "Leaving the tourniquet on for longer than one minute obstructs venous return, causing fluid (plasma) to leak from the blood vessels into the tissues, leading to an artificial increase in the concentration of non-filterable analytes (like proteins, cells, potassium) \u2013 this is hemoconcentration. Partially filled tubes or vigorous mixing usually cause hemolysis or affect anticoagulant ratios. Drawing a large tube with a small needle might cause hemolysis."
},
{
"id": 67,
"question": "Veins that feel hard and cord-like when palpated may be:",
"options": [
"collapsed",
"fistulas",
"thrombosed",
"venules"
],
"correctAnswerIndex": 2,
"rationalization": "Thrombosed veins are occluded with clots and often feel hard, inflexible, and cord-like upon palpation. These veins should be avoided for venipuncture as they are difficult to puncture and yield poor samples. Collapsed veins are temporarily flat, fistulas are surgical connections, venules are too small."
},
{
"id": 68,
"question": "When the coagulation of fresh whole blood is prevented through the use of an anticoagulant, the straw-colored fluid that can be separated from the cellular elements is:",
"options": [
"serum",
"plasma",
"whole blood",
"autologous donation"
],
"correctAnswerIndex": 1,
"rationalization": "Plasma is the liquid component of blood that contains clotting factors because coagulation has been prevented by an anticoagulant. Serum is the liquid portion remaining *after* blood has clotted, so it lacks fibrinogen and other clotting factors consumed during clot formation."
},
{
"id": 69,
"question": "Peak levels of this analyte typically occur around 0800 hours.",
"options": [
"Bilirubin",
"Cortisol",
"Eosinophils",
"Glucose"
],
"correctAnswerIndex": 1,
"rationalization": "Cortisol exhibits significant diurnal variation, with levels typically peaking in the early morning (around 8 AM) and reaching a nadir late at night. Bilirubin, eosinophils, and glucose have different patterns or less pronounced diurnal rhythms."
},
{
"id": 70,
"question": "Tiny red spots that appear on a patient's arm when the tourniquet is applied are a sign that the:",
"options": [
"tourniquet is too tight",
"patient has leukemia",
"site may bleed excessively",
"patient is allergic to the tourniquet"
],
"correctAnswerIndex": 2,
"rationalization": "These tiny red spots are petechiae, which indicate capillary fragility or low platelet count. Their appearance suggests that the venipuncture site might bleed more than usual after the needle is removed, requiring prolonged pressure."
},
{
"id": 71,
"question": "The concentration of this substance is higher in capillary blood than in venous blood:",
"options": [
"Calcium",
"Potassium",
"Glucose",
"Total protein"
],
"correctAnswerIndex": 2,
"rationalization": "Capillary blood glucose levels are generally higher than venous blood glucose levels, especially in a non-fasting state, because arterial blood (which capillary blood approximates) delivers glucose to tissues where it is utilized before returning as venous blood. Potassium, calcium, and total protein are typically higher in venous blood. BUN is similar."
},
{
"id": 72,
"question": "If collected by capillary puncture, which test specimen is collected first?",
"options": [
"CBC",
"Glucose",
"Electrolytes",
"Bilirubin"
],
"correctAnswerIndex": 0,
"rationalization": "The standard order for capillary collection to minimize platelet clumping/clotting effects is: 1. Blood gas specimens (if applicable), 2. EDTA tubes (for hematology/CBC), 3. Other additive tubes, 4. Serum tubes. Therefore, CBC (EDTA tube) should be collected before Glucose (often fluoride/oxalate or serum) or Electrolytes (serum or heparin). The answer 'a' (CBC) fits this order."
},
{
"id": 73,
"question": "According to CLSI, a heel puncture lancet should puncture no deeper than:",
"options": [
"1.5 mm",
"1.8 mm",
"2.0 mm",
"3.0 mm"
],
"correctAnswerIndex": 3,
"rationalization": "To avoid hitting the calcaneus (heel bone) and causing osteomyelitis or bone injury in infants, CLSI guidelines recommend that heel puncture devices should not penetrate deeper than 2.0 mm."
},
{
"id": 74,
"question": "Capillary puncture is typically performed on adults when: i. Veins are inaccessible ii. The patient has thrombotic tendencies iii. Veins are reserved for IV therapy",
"options": [
"i only",
"i and ii",
"ii and iii",
"i, ii, iii"
],
"correctAnswerIndex": 3,
"rationalization": "Capillary puncture (fingerstick) is an alternative to venipuncture in adults when: i) veins are inaccessible or fragile (e.g., burns, obesity, chemotherapy patients, geriatric), ii) patients have thrombotic tendencies (venipuncture risk), or iii) veins must be preserved for therapy (like chemotherapy). It's also used for point-of-care testing."
},
{
"id": 75,
"question": "The proper collection of capillary blood includes: i. Wiping away the first drop of blood. ii. Occasionally wiping the site with gauze. iii. Avoiding the introduction of air bubbles",
"options": [
"i, ii",
"i, iii",
"ii, iii",
"i, ii, iii"
],
"correctAnswerIndex": 0,
"rationalization": "Proper capillary collection technique involves: i) Wiping away the first drop of blood (contains tissue fluid), ii) Occasionally wiping the site gently to prevent platelet buildup that could slow flow (but not squeezing excessively), and iii) Avoiding the introduction of air bubbles, especially into tubes for blood gas analysis or when using capillary collection devices where bubbles can interfere with volume or measurements. Therefore, i and ii are correct practices. (Note: iii is also correct, making i,ii,iii ideal, but based on the source text's selection, 'a' was chosen)."
},
{
"id": 76,
"question": "Creatinine is considered the substance of choice to measure endogenous renal clearance because:",
"options": [
"Its production rate is constant.",
"It is completely filtered by the glomeruli",
"Plasma levels are highly dependent upon diet.",
"Clearance does not differ between men and women."
],
"correctAnswerIndex": 1,
"rationalization": "Creatinine is used to estimate Glomerular Filtration Rate (GFR) because it's produced endogenously at a relatively constant rate (related to muscle mass, statement 'a' is partially true but less key than filtration), primarily filtered by the glomeruli, and undergoes only minimal tubular secretion (though this secretion becomes more significant in severe renal failure). Its plasma level is relatively stable compared to urea. Clearance differs slightly between sexes due to muscle mass differences."
},
{
"id": 77,
"question": "What is the appearance of Salmonella on Salmonella-Shigella Agar?",
"options": [
"Colorless",
"Colorless with black centers",
"Pink with black centers",
"Pink"
],
"correctAnswerIndex": 1,
"rationalization": "Salmonella-Shigella (SS) agar is selective and differential. It inhibits Gram-positives and many coliforms. *Salmonella* typically does not ferment lactose, so colonies appear colorless or transparent. Most *Salmonella* species produce hydrogen sulfide (H2S), which reacts with ferric citrate in the medium to produce a black precipitate in the center of the colonies. *Shigella* also doesn't ferment lactose (colorless) but doesn't produce H2S (no black center). Lactose fermenters (like E. coli) produce pink/red colonies."
},
{
"id": 78,
"question": "Correct Order of migration in Protein Electrophoresis:",
"options": [
"Albumin, Alpha-1 globulin, Alpha-2 macroglobulin, Beta Globulin, Gamma Globulin",
"Albumin, Alpha-1 globulin, Alpha-2 globulin, Beta Globulin, Gamma Globulin",
"Gamma Globulin, Beta Globulin, Alpha-2 macroglobulin, Alpha-1 globulin, Albumin",
"Albumin, Beta Globulin, Alpha-1 globulin, Alpha-2 macroglobulin, Gamma Globulin"
],
"correctAnswerIndex": 1,
"rationalization": "In serum protein electrophoresis at standard alkaline pH (around 8.6), proteins migrate based on their size and net negative charge towards the anode (+). Albumin is the most abundant, smallest, and most negatively charged, so it migrates fastest (furthest). It is followed in order by alpha-1, alpha-2, beta, and finally gamma globulins (which are least negatively charged and may even migrate towards the cathode via electroendosmosis)."
},
{
"id": 79,
"question": "Vector for African Sleeping Sickness",
"options": [
"Reduviid bug",
"Tsetse fly",
"Ticks",
"Sandfly"
],
"correctAnswerIndex": 1,
"rationalization": "African Trypanosomiasis (Sleeping Sickness), caused by Trypanosoma brucei, is transmitted through the bite of infected tsetse flies (genus Glossina). Reduviid bugs transmit Chagas disease, ticks transmit Lyme disease/RMSF, sandflies transmit Leishmaniasis."
},
{
"id": 80,
"question": "Which serum protein should be measured in a patient suspected of having Wilson's disease?",
"options": [
"Haptoglobin",
"Transferrin",
"Alpha-1 antitrypsin",
"Ceruloplasmin"
],
"correctAnswerIndex": 3,
"rationalization": "Wilson's disease is a genetic disorder of copper metabolism characterized by impaired copper excretion, leading to copper accumulation. Serum ceruloplasmin, the main copper-carrying protein, is typically decreased in patients with Wilson's disease due to impaired incorporation of copper into the protein during its synthesis."
},
{
"id": 81,
"question": "In statistics, this is used to determine whether there is a statistically significant difference between the standard deviations of two groups of data.",
"options": [
"Mean",
"Median",
"F-test",
"T-test"
],
"correctAnswerIndex": 3,
"rationalization": "T-test compares means (e.g., treatment effects, device efficacy) while accounting for variability in limited data, provided normality assumptions are met, ensuring statistically valid conclusions in resource-constrained or ethically sensitive research."
},
{
"id": 82,
"question": "Colonies are small- to medium-sized, opaque, shiny, nonhemolytic, pale beige or yellowish color, has a gliding motility... haze on the surface of the agar. What bacteria is being described?",
"options": [
"Haemophilus spp.",
"Capnocytophaga",
"Pasteurella spp.",
"Kingella spp."
],
"correctAnswerIndex": 1,
"rationalization": "This description, particularly the 'gliding motility' which manifests as outgrowths or a haze around colonies on agar, is characteristic of *Capnocytophaga* species. These are capnophilic (require CO2), facultative anaerobic Gram-negative bacilli often associated with the oral flora and opportunistic infections."
},
{
"id": 83,
"question": "Glucose is metabolized at room temperature at a rate of __ mg/dl/hour and at 4\u00b0C, the loss is approximately __ mg/dl/hour.",
"options": [
"2, 7",
"10, 5",
"5, 10",
"7, 2"
],
"correctAnswerIndex": 3,
"rationalization": "Glycolysis by blood cells continues after collection. At room temperature (approx. 20-25\u00b0C), glucose levels decrease by about 5-10 mg/dL per hour (7 mg/dL is a common estimate). Refrigeration (around 4\u00b0C) significantly slows this process down, with loss rates closer to 2 mg/dL per hour. Using an antiglycolytic agent like sodium fluoride is necessary to preserve glucose if testing is delayed. *Assuming 4\u00b0C based on context.*"
},
{
"id": 84,
"question": "Whole blood fasting glucose level is ___ than in serum or plasma.",
"options": [