-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
1462 lines (1256 loc) · 53 KB
/
script.js
File metadata and controls
1462 lines (1256 loc) · 53 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
$(document).ready( function(){
$("#ran1").click( function() {
jPrompt(' For glycoproteins most commonly used probe is?'
, '', 'GAMMA', function(r) {
if (r=="lectin"){var x = document.getElementById('ran1');
x.style.background = 'green';
x.style.color="white";}
else{var x = document.getElementById('ran1');
x.style.background = 'red';
x.style.color="white";}
});
});
});
$(document).ready( function() {
$("#ran2").click( function() {
jPrompt(' When is the World Water Day celebrated?', '', 'ALPHA', function(r) {
if (r=="22 march"){var x = document.getElementById('ran2');
x.style.background = 'green';
x.style.color="white";}
else{var x = document.getElementById('ran2');
x.style.background = 'red';
x.style.color="white";}
});
});
});
$(document).ready( function() {
$("#ran3").click( function() {
jPrompt('Who hailed Darwin’s book ‘The Origin of Species’ as ‘a veritable Whitworth gun in the armoury of liberalism.’',
'', 'BETA', function(r) {
if (r=="huxley"){var x = document.getElementById('ran3');
x.style.background = 'green';
x.style.color="white";}
else{var x = document.getElementById('ran3');
x.style.background = 'red';
x.style.color="white";}
});
});
});
$(document).ready( function() {
$("#ran4").click( function() {
jPrompt('Name the foot disease caused by Actinomadura madurae?', '', 'ALPHA', function(r) {
if (r=="mycetoma"){var x = document.getElementById('ran4');
x.style.background = 'green';
x.style.color="white";}
else{var x = document.getElementById('ran4');
x.style.background = 'red';
x.style.color="white";}
});
});
});
$(document).ready( function() {
$("#ran5").click( function() {
jPrompt('Purine with an amine (NH2) group on the 6th carbon is called?', '', 'BETA', function(r) {
if (r=="adenine"){var x = document.getElementById('ran5');
x.style.background = 'green';
x.style.color="white";}
else{var x = document.getElementById('ran5');
x.style.background = 'red';
x.style.color="white";}
});
});
});
$(document).ready( function() {
$("#ran6").click( function() {
jPrompt(' Hirudin is a protein that prevents blood clotting. Its gene was chemically synthesized and was transferred into X where hirudin accumulates in Y. It is extracted and purified and used as medicine. Identify X.'
, '', 'BETA', function(r) {
if (r=="brassica napus and seeds"){var x = document.getElementById('ran6');
x.style.background = 'green';
x.style.color="white";}
else{var x = document.getElementById('ran6');
x.style.background = 'red';
x.style.color="white";}
});
});
});
$(document).ready( function() {
$("#ran7").click( function() {
jPrompt('X was a Scottish biologist and pharmacologist. He discovered the enzyme Lysozyme in 1923. He got a Nobel Prize in 1948 with Howard Florey and Ernst Boris Chain. A very important discovery of X saved many lives in World War 2. Identify X.'
, '', 'ALPHA', function(r) {
if (r=="alexander flemming"){var x = document.getElementById('ran7');
x.style.background = 'green';
x.style.color="white";}
else{var x = document.getElementById('ran7');
x.style.background = 'red';
x.style.color="white";}
});
});
});
$(document).ready( function() {
$("#ran8").click( function() {
jPrompt('Small organelle present in the cytoplasm of many cells, which contains the reducing enzyme catalase and usually some oxidases, is called?',
'', 'BETA', function(r) {
if (r=="peroxisomes"||r=="microbodies"){var x = document.getElementById('ran8');
x.style.background = 'green';
x.style.color="white";}
else{var x = document.getElementById('ran8');
x.style.background = 'red';
x.style.color="white";}
});
});
});
$(document).ready( function() {
$("#ran9").click( function() {
jPrompt(' What is the process of removal of gonads called?', '', 'BETA', function(r) {
if (r=="orchiectomy (Males) and oophorectomy (Females)"){var x = document.getElementById('ran9');
x.style.background = 'green';
x.style.color="white";}
else{var x = document.getElementById('ran9');
x.style.background = 'red';
x.style.color="white";}
});
});
});
$(document).ready( function() {
$("#ran10").click( function() {
jPrompt('Benjamin Franklin and Thomas Malthus talked about X in their respective books. This term is also the name of the third chapter in ‘The Origin of Species’. Identify X.',
'', 'GAMMA', function(r) {
if (r=="clothing"){var x = document.getElementById('ran10');
x.style.background = 'green';
x.style.color="white";}
else{var x = document.getElementById('ran10');
x.style.background = 'red';
x.style.color="white";}
});
});
});
$(document).ready( function() {
$("#ran11").click( function() {
jPrompt('In Flavr Savr Tomato, expression of a native tomato gene has been blocked. This gene produces enzyme X which promotes softening of fruit. Identify X.', '', 'BETA', function(r) {
if (r=="polygalacturonase"){var x = document.getElementById('ran11');
x.style.background = 'green';
x.style.color="white";}
else{var x = document.getElementById('ran11');
x.style.background = 'red';
x.style.color="white";}
});
});
});
$(document).ready( function() {
$("#ran12").click( function() {
jPrompt('X was one of the 20th century\'s leading evolutionary biologists. He was also a renowned taxonomist, tropical explorer, ornithologist, philosopher of biology, and historian of science. His work contributed to the conceptual revolution that led to the modern evolutionary synthesis of Mendelian genetics, systematics, andDarwinian evolution, and to the development of the biological species concept.', '', 'GAMMA', function(r) {
if (r=="ernst mayr"){var x = document.getElementById('ran12');
x.style.background = 'green';
x.style.color="white";}
else{var x = document.getElementById('ran12');
x.style.background = 'red';
x.style.color="white";}
});
});
});
$(document).ready( function() {
$("#ran13").click( function() {
jPrompt('What is the name of the process of calculating a tree’s age by counting its rings?', '', 'ALPHA', function(r) {
if (r=="dendrochronology"){var x = document.getElementById('ran13');
x.style.background = 'green';
x.style.color="white";}
else{var x = document.getElementById('ran13');
x.style.background = 'red';
x.style.color="white";}
});
});
});
$(document).ready( function() {
$("#ran14").click( function() {
jPrompt('When is World Ozone Day celebrated?', '', 'GAMMA', function(r) {
if (r=="16 september"){var x = document.getElementById('ran14');
x.style.background = 'green';
x.style.color="white";}
else{var x = document.getElementById('ran14');
x.style.background = 'red';
x.style.color="white";}
});
});
});
$(document).ready( function() {
$("#ran15").click( function() {
jPrompt('What is the name of homo sapiens\'s next generation?', '', 'BETA', function(r) {
if (r=="homo sapiens futuris"){var x = document.getElementById('ran15');
x.style.background = 'green';
x.style.color="white";}
else{var x = document.getElementById('ran15');
x.style.background = 'red';
x.style.color="white";}
});
});
});
$(document).ready( function() {
$("#ran16").click( function() {
jPrompt('Taste Blindness is the inability to taste certain substances. It is due to an autosomal recessive trait. Substance X has the unusual property that it either tastes very bitter or is virtually tasteless, depending on the genetic makeup of the taster. Identify X.', '', 'GAMMA', function(r) {
if (r=="phenylthiocarbamide"||r=="PTC"){var x = document.getElementById('ran16');
x.style.background = 'green';
x.style.color="white";}
else{var x = document.getElementById('ran16');
x.style.background = 'red';
x.style.color="white";}
});
});
});
$(document).ready( function() {
$("#ran17").click( function() {
jPrompt('X is a village in Assam where every year birds commit mass suicide. Identify X.',
'', 'beta', function(r) {
if (r=="jatinga"){var x = document.getElementById('ran17');
x.style.background = 'green';
x.style.color="white";}
else{var x = document.getElementById('ran17');
x.style.background = 'red';
x.style.color="white";}
});
});
});
$(document).ready( function() {
$("#ran18").click( function() {
jPrompt(' What is the other name for Vitamin K1?', '', 'ALPHA', function(r) {
if (r=="phylloquinone"){var x = document.getElementById('ran18');
x.style.background = 'green';
x.style.color="white";}
else{var x = document.getElementById('ran18');
x.style.background = 'red';
x.style.color="white";}
});
});
});
$(document).ready( function() {
$("#ran19").click( function() {
jPrompt('Break bone fever is caused by which organism?', '', 'GAMMA', function(r) {
if (r=="aedes aegypti"){var x = document.getElementById('ran19');
x.style.background = 'green';
x.style.color="white";}
else{var x = document.getElementById('ran19');
x.style.background = 'red';
x.style.color="white";}
});
});
});
$(document).ready( function() {
$("#ran20").click( function() {
jPrompt('Avena curvature test is a bioassay for examining the activity of?',
'', 'BETA', function(r) {
if (r=="auxins"){var x = document.getElementById('ran20');
x.style.background = 'green';
x.style.color="white";}
else{var x = document.getElementById('ran20');
x.style.background = 'red';
x.style.color="white";}
});
});
});
$(document).ready( function() {
$("#ran21").click( function() {
jPrompt('X was a protein domain which played a major role in limiting our brain size. According to researchers, it\’s abundance relates to our brain size. While we have 270 of them, mice only have 1. Name the protein domain.',
'', 'GAMMA', function(r) {
if (r=="DUF1220"){var x = document.getElementById('ran21');
x.style.background = 'green';
x.style.color="white";}
else{var x = document.getElementById('ran21');
x.style.background = 'red';
x.style.color="white";}
});
});
});
$(document).ready( function() {
$("#ran22").click( function() {
jPrompt(' Actinomycin D is an inhibitor of which process?'
, '', 'ALPHA', function(r) {
if (r=="transcription"){var x = document.getElementById('ran22');
x.style.background = 'green';
x.style.color="white";}
else{var x = document.getElementById('ran22');
x.style.background = 'red';
x.style.color="white";}
});
});
});
$(document).ready( function() {
$("#ran23").click( function() {
jPrompt('X was a Czech anatomist and physiologist. He was best known for coining the term \'Protoplasm\'. He is the father of famous painter Karel Purkyne. He is also known for discovering a class of neurons in the cerebrum. Identify X.'
, '', 'BETA', function(r) {
if (r=="purkinje"){var x = document.getElementById('ran23');
x.style.background = 'green';
x.style.color="white";}
else{var x = document.getElementById('ran23');
x.style.background = 'red';
x.style.color="white";}
});
});
});
$(document).ready( function() {
$("#ran24").click( function() {
jPrompt('Birds of colder areas have narrow and acuminate wings while those of warmer areas have broader wings. Identify the rule which governs this phenomena.',
'', 'BETA', function(r) {
if (r=="renschs rule"){var x = document.getElementById('ran24');
x.style.background = 'green';
x.style.color="white";}
else{var x = document.getElementById('ran24');
x.style.background = 'red';
x.style.color="white";}
});
});
});
$(document).ready( function() {
$("#ran25").click( function() {
jPrompt('A hormone X stimulates release of bile from the gall bladder and causes the pancreas to release digestive enzymes. It is synthesized by I-cells in the mucosal epithelium of the small intestine and secreted in the duodenum. Identify X.:'
, '', 'GAMMA', function(r) {
if (r=="cholecystokinin"||r=="CCK"||r=="pancreozymin"){var x = document.getElementById('ran25');
x.style.background = 'green';
x.style.color="white";}
else{var x = document.getElementById('ran25');
x.style.background = 'red';
x.style.color="white";}
});
});
});
$(document).ready( function() {
$("#ran26").click( function() {
jPrompt('Rudolf Jakob Camerarius made a very important discovery in the course of 3 years, during 1691 to 1694. Name the discovery.',
'', 'BETA', function(r) {
if (r=="sexes in plants"){var x = document.getElementById('ran26');
x.style.background = 'green';
x.style.color="white";}
else{var x = document.getElementById('ran26');
x.style.background = 'red';
x.style.color="white";}
});
});
});
$(document).ready( function() {
$("#ran27").click( function() {
jPrompt('Koplik\’s spots are characteristic feature of which disease?', '', 'BETA', function(r) {
if (r=="measles"){var x = document.getElementById('ran27');
x.style.background = 'green';
x.style.color="white";}
else{var x = document.getElementById('ran27');
x.style.background = 'red';
x.style.color="white";}
});
});
});
$(document).ready( function() {
$("#ran28").click( function() {
jPrompt(' Golden rice is a transgenic variety of rice (Oryza sativa) which contains good quantities of X (provitamin A). X is a principal source of vitamin A. Identify X.'
, '', 'ALPHA', function(r) {
if (r=="beta-carotene"){var x = document.getElementById('ran28');
x.style.background = 'green';
x.style.color="white";}
else{var x = document.getElementById('ran28');
x.style.background = 'red';
x.style.color="white";}
});
});
});
$(document).ready( function() {
$("#ran29").click( function() {
jPrompt('A clearly demarcated unit of environment showing uniformity of principle habitat conditions is called?',
'', 'BETA', function(r) {
if (r=="biotope"){var x = document.getElementById('ran29');
x.style.background = 'green';
x.style.color="white";}
else{var x = document.getElementById('ran29');
x.style.background = 'red';
x.style.color="white";}
});
});
});
$(document).ready( function() {
$("#ran30").click( function() {
jPrompt(' Which metal ion is specifically bound by vitamin B12?', '', 'BETA', function(r) {
if (r=="cobalt"){var x = document.getElementById('ran30');
x.style.background = 'green';
x.style.color="white";}
else{var x = document.getElementById('ran30');
x.style.background = 'red';
x.style.color="white";}
});
});
});
$(document).ready( function() {
$("#ran31").click( function() {
jPrompt('Name any one organelle involved in Photorespiration.', '', 'BETA', function(r) {
if (r=="mitochondria peroxisomes"||r=="microbodies chloroplast"){var x = document.getElementById('ran31');
x.style.background = 'green';
x.style.color="white";}
else{var x = document.getElementById('ran31');
x.style.background = 'red';
x.style.color="white";}
});
});
});
$(document).ready( function() {
$("#ran32").click( function() {
jPrompt('X supplies blood to the diaphragm. Identify X.', '', 'BETA', function(r) {
if (r=="phrenic artery"){var x = document.getElementById('ran32');
x.style.background = 'green';
x.style.color="white";}
else{var x = document.getElementById('ran32');
x.style.background = 'red';
x.style.color="white";}
});
});
});
$(document).ready( function() {
$("#ran33").click( function() {
jPrompt(' The p53 protein normally promotes which process?', '', 'ALPHA', function(r) {
if (r=="apoptosis"){var x = document.getElementById('ran33');
x.style.background = 'green';
x.style.color="white";}
else{var x = document.getElementById('ran33');
x.style.background = 'red';
x.style.color="white";}
});
});
});
$(document).ready( function() {
$("#ran34").click( function() {
jPrompt('Transgenic Tobacco plants contain a gene X which provides them with enhanced levels of insect resistance. X has anti-metabolic activity to insect pests of the orders Lepidoptera, Coleoptera and Orthoptera. Identify X.'
, '', 'GAMMA', function(r) {
if (r=="cowpea trypsin inhibitor"||r=="CPTI"){var x = document.getElementById('ran34');
x.style.background = 'green';
x.style.color="white";}
else{var x = document.getElementById('ran34');
x.style.background = 'red';
x.style.color="white";}
});
});
});
$(document).ready( function() {
$("#ran35").click( function() {
jPrompt('Syphilis is caused by which organism?', '', 'BETA', function(r) {
if (r=="treponema pallidum"){var x = document.getElementById('ran35');
x.style.background = 'green';
x.style.color="white";}
else{var x = document.getElementById('ran35');
x.style.background = 'red';
x.style.color="white";}
});
});
});
$(document).ready( function() {
$("#ran36").click( function() {
jPrompt('Cell ageing can be stopped by increasing the activity of _____: which also prevents DNA loss?',
'', 'ALPHA', function(r) {
if (r=="telomeres"){var x = document.getElementById('ran36');
x.style.background = 'green';
x.style.color="white";}
else{var x = document.getElementById('ran36');
x.style.background = 'red';
x.style.color="white";}
});
});
});
$(document).ready( function() {
$("#ran37").click( function() {
jPrompt('X (22 September 1800 – 10 September 1884) was an English botanist, characterised by Duane Isely as "the premier systematic botanist of the nineteenth century". Most of us might have read about his claim to fame, or atleast heard it. Identify X.',
'', 'GAMMA', function(r) {
if (r=="george bentham"){var x = document.getElementById('ran37');
x.style.background = 'green';
x.style.color="white";}
else{var x = document.getElementById('ran37');
x.style.background = 'red';
x.style.color="white";}
});
});
});
$(document).ready( function() {
$("#ran38").click( function() {
jPrompt('Who synthesized Doctrine of Spontaneous Generation?', '', 'BETA', function(r) {
if (r=="aristotle"){var x = document.getElementById('ran38');
x.style.background = 'green';
x.style.color="white";}
else{var x = document.getElementById('ran38');
x.style.background = 'red';
x.style.color="white";}
});
});
});
$(document).ready( function() {
$("#ran39").click( function() {
jPrompt('X was a German physician and pioneering microbiologist. As the founder of modern bacteriology, he is known for his role in identifying the specific causative agents of tuberculosis, cholera, and anthrax and for giving experimental support for the concept of infectious disease. Name X.',
'', 'BETA', function(r) {
if (r=="robert koch"){var x = document.getElementById('ran39');
x.style.background = 'green';
x.style.color="white";}
else{var x = document.getElementById('ran39');
x.style.background = 'red';
x.style.color="white";}
});
});
});
$(document).ready( function() {
$("#ran40").click( function() {
jPrompt(' What makes hot chilli peppers spicy?', '', 'GAMMA', function(r) {
if (r=="capsaicin"){var x = document.getElementById('ran40');
x.style.background = 'green';
x.style.color="white";}
else{var x = document.getElementById('ran40');
x.style.background = 'red';
x.style.color="white";}
});
});
});
$(document).ready( function() {
$("#ran41").click( function() {
jPrompt('Which is the main glycoprotein in Mucus?',
'', 'BETA', function(r) {
if (r=="mucin"){var x = document.getElementById('ran41');
x.style.background = 'green';
x.style.color="white";}
else{var x = document.getElementById('ran41');
x.style.background = 'red';
x.style.color="white";}
});
});
});
$(document).ready( function() {
$("#ran42").click( function() {
jPrompt('Stain used to discover Mitochondria is?', '', 'BETA', function(r) {
if (r=="janus green"){var x = document.getElementById('ran42');
x.style.background = 'green';
x.style.color="white";}
else{var x = document.getElementById('ran42');
x.style.background = 'red';
x.style.color="white";}
});
});
});
$(document).ready( function() {
$("#ran43").click( function() {
jPrompt('West Nile virus is commonly transmitted to humans, horses and other animals via?'
, '', 'GAMMA', function(r) {
if (r=="mosquitoes"){var x = document.getElementById('ran43');
x.style.background = 'green';
x.style.color="white";}
else{var x = document.getElementById('ran43');
x.style.background = 'red';
x.style.color="white";}
});
});
});
$(document).ready( function() {
$("#ran44").click( function() {
jPrompt('Who first gave the idea of primitive evolution?', '', 'BETA', function(r) {
if (r=="anaximander"){var x = document.getElementById('ran44');
x.style.background = 'green';
x.style.color="white";}
else{var x = document.getElementById('ran44');
x.style.background = 'red';
x.style.color="white";}
});
});
});
$(document).ready( function() {
$("#ran45").click( function() {
jPrompt('Which Indian state has largest number of salt lakes?', '', 'ALPHA', function(r) {
if (r=="gujarat"){var x = document.getElementById('ran45');
x.style.background = 'green';
x.style.color="white";}
else{var x = document.getElementById('ran45');
x.style.background = 'red';
x.style.color="white";}
});
});
});
$(document).ready( function() {
$("#ran46").click( function() {
jPrompt('X was a Greek native of Eresos in Lesbos, was the successor to Aristotle in the Peripatetic school. He came to Athens at a young age and initially studied in Plato\'s school. After Plato\'s death, he attached himself to Aristotle. Aristotle took to <b>X</b> his writings and designated him as his successor at the Lyceum. Name X.', '', 'GAMMA', function(r) {
if (r=="theophrastus"){var x = document.getElementById('ran46');
x.style.background = 'green';
x.style.color="white";}
else{var x = document.getElementById('ran46');
x.style.background = 'red';
x.style.color="white";}
});
});
});
$(document).ready( function() {
$("#ran47").click( function() {
jPrompt('To understand the structure of RNA Polymerase, researchers employed which technique to view this enzyme?'
, '', 'BETA', function(r) {
if (r=="x ray crystallography"){var x = document.getElementById('ran47');
x.style.background = 'green';
x.style.color="white";}
else{var x = document.getElementById('ran47');
x.style.background = 'red';
x.style.color="white";}
});
});
});
$(document).ready( function() {
$("#ran48").click( function() {
jPrompt('______ % of Spherosomes is lipid?', '', 'BETA', function(r) {
if (r=="98%"){var x = document.getElementById('ran48');
x.style.background = 'green';
x.style.color="white";}
else{var x = document.getElementById('ran48');
x.style.background = 'red';
x.style.color="white";}
});
});
});
$(document).ready( function() {
$("#ran49").click( function() {
jPrompt('Pst I is a type II recognition enzyme whose recognition site is present on the cloning vector pBR322. Identify the source of this enzyme.'
, '', 'ALPHA', function(r) {
if (r=="providencia stuartii"){var x = document.getElementById('ran49');
x.style.background = 'green';
x.style.color="white";}
else{var x = document.getElementById('ran49');
x.style.background = 'red';
x.style.color="white";}
});
});
});
$(document).ready( function() {
$("#ran50").click( function() {
jPrompt('Kernel colour in wheat is an example of which kind of inheritance?'
, '', 'BETA', function(r) {
if (r=="polygenic inheritance"){var x = document.getElementById('ran50');
x.style.background = 'green';
x.style.color="white";}
else{var x = document.getElementById('ran50');
x.style.background = 'red';
x.style.color="white";}
});
});
});
$(document).ready( function() {
$("#ran51").click( function() {
jPrompt('X was an English philosopher, architect and polymath.He is known for mainly one discovery which led to creation of a new branch of biology. Identify X', '', 'ALPHA', function(r) {
if (r=="robert hooke"){var x = document.getElementById('ran51');
x.style.background = 'green';
x.style.color="white";}
else{var x = document.getElementById('ran51');
x.style.background = 'red';
x.style.color="white";}
});
});
});
$(document).ready( function() {
$("#ran52").click( function() {
jPrompt('As DNA is unique to an individual, we can use DNA fingerprinting to match genetic information with the person it came from. RFLP cuts out genes which are likely to be differentiating factors using restriction enzymes. Expand RFLP.'
, '', 'GAMMA', function(r) {
if (r=="restriction fragment length polymorphism"){var x = document.getElementById('ran52');
x.style.background = 'green';
x.style.color="white";}
else{var x = document.getElementById('ran52');
x.style.background = 'red';
x.style.color="white";}
});
});
});
$(document).ready( function() {
$("#ran53").click( function() {
jPrompt('Taylor conducted the experiments to prove semiconservative mode of chromosome replication on?', '', 'BETA', function(r) {
if (r=="vicia faba"){var x = document.getElementById('ran53');
x.style.background = 'green';
x.style.color="white";}
else{var x = document.getElementById('ran53');
x.style.background = 'red';
x.style.color="white";}
});
});
});
$(document).ready( function() {
$("#ran54").click( function() {
jPrompt(' Stiffening of the joints and muscles of a body a few hours after death, usually lasting from one to four days.'
, '', 'BETA', function(r) {
if (r=="rigor mortis"){var x = document.getElementById('ran54');
x.style.background = 'green';
x.style.color="white";}
else{var x = document.getElementById('ran54');
x.style.background = 'red';
x.style.color="white";}
});
});
});
$(document).ready( function() {
$("#ran55").click( function() {
jPrompt('The nodules of Medicago italica contain the nitrogen fixing bacterium X. The plant provides the bacteria with nutrients and an anaerobic environment, and the bacteria fix nitrogen for the plant. Name X.',
'', 'GAMMA', function(r) {
if (r=="sinorhizobium meliloti"){var x = document.getElementById('ran55');
x.style.background = 'green';
x.style.color="white";}
else{var x = document.getElementById('ran55');
x.style.background = 'red';
x.style.color="white";}
});
});
});
$(document).ready( function() {
$("#ran56").click( function() {
jPrompt('Enterobius vermicularis affects caecum and vermiform appendix. What is its common name?'
, '', 'ALPHA', function(r) {
if (r=="pinworm"){var x = document.getElementById('ran56');
x.style.background = 'green';
x.style.color="white";}
else{var x = document.getElementById('ran56');
x.style.background = 'red';
x.style.color="white";}
});
});
});
$(document).ready( function() {
$("#ran57").click( function() {
jPrompt('Which invention of early humans caused a major evolution in primitive louses?', '', 'BETA', function(r) {
if (r=="clothing"){var x = document.getElementById('ran57');
x.style.background = 'green';
x.style.color="white";}
else{var x = document.getElementById('ran57');
x.style.background = 'red';
x.style.color="white";}
});
});
});
$(document).ready( function() {
$("#ran58").click( function() {
jPrompt(' Who gave 3D model of tRNA?', '', 'GAMMA', function(r) {
if (r=="s.h. kim"){var x = document.getElementById('ran58');
x.style.background = 'green';
x.style.color="white";}
else{var x = document.getElementById('ran58');
x.style.background = 'red';
x.style.color="white";}
});
});
});
$(document).ready( function() {
$("#ran59").click( function() {
jPrompt('A tree found in Africa can store 1,000 to 120,000 liters of water in its swollen trunk. It was made famous by the baboon in THE LION KING. Give its name.',
'', 'BETA', function(r) {
if (r=="baobab tree"){var x = document.getElementById('ran59');
x.style.background = 'green';
x.style.color="white";}
else{var x = document.getElementById('ran59');
x.style.background = 'red';
x.style.color="white";}
});
});
});
$(document).ready( function() {
$("#ran60").click( function() {
jPrompt('X is metabolic pathway that results in the generation of glucose from non-carbohydrate carbon substrates such as lactate, glycerol, and glucogenic amino acids. It takes place in Liver and to some extent in the cortex of Kidney. Identify X.',
'', 'BETA', function(r) {
if (r=="gluconeogenesis"||r=="GNG"){var x = document.getElementById('ran60');
x.style.background = 'green';
x.style.color="white";}
else{var x = document.getElementById('ran60');
x.style.background = 'red';
x.style.color="white";}
});
});
});
$(document).ready( function() {
$("#ran61").click( function() {
jPrompt('Increase in uric acid in blood causes?'
, '', 'BETA', function(r) {
if (r=="gout"){var x = document.getElementById('ran61');
x.style.background = 'green';
x.style.color="white";}
else{var x = document.getElementById('ran61');
x.style.background = 'red';
x.style.color="white";}
});
});
});
$(document).ready( function() {
$("#ran62").click( function() {
jPrompt('How many checkpoints exist in cell cycle?', '', 'ALPHA', function(r) {
if (r=="3"){var x = document.getElementById('ran62');
x.style.background = 'green';
x.style.color="white";}
else{var x = document.getElementById('ran62');
x.style.background = 'red';
x.style.color="white";}
});
});
});
$(document).ready( function() {
$("#ran63").click( function() {
jPrompt('Process that involves mixing of foreign DNA with charged substances like Calcium phosphate, cationic liposomes or DEAE dextran and overlaying on recipient host cells so that they take up the DNA is called?', '', 'BETA', function(r) {
if (r=="transfection"){var x = document.getElementById('ran63');
x.style.background = 'green';
x.style.color="white";}
else{var x = document.getElementById('ran63');
x.style.background = 'red';
x.style.color="white";}
});
});
});
$(document).ready( function() {
$("#ran64").click( function() {
jPrompt('Deficiency of Niacin causes which disease?', '', 'ALPHA', function(r) {
if (r=="pellagra"){var x = document.getElementById('ran64');
x.style.background = 'green';
x.style.color="white";}
else{var x = document.getElementById('ran64');
x.style.background = 'red';
x.style.color="white";}
});
});
});
$(document).ready( function() {
$("#ran65").click( function() {
jPrompt('X was a physician, physiologist, philosopher, and professor, known today as one of the founding figures of modern psychology. X, who noted psychology as a science apart from biology and philosophy, was the first person to ever call himself a psychologist.'
, '', 'BETA', function(r) {
if (r=="wilhelm wundt"){var x = document.getElementById('ran65');
x.style.background = 'green';
x.style.color="white";}
else{var x = document.getElementById('ran65');
x.style.background = 'red';
x.style.color="white";}
});
});
});
$(document).ready( function() {
$("#ran66").click( function() {
jPrompt('Connect: Aaron Finch, Archipelago de Colon, Auxins.', '', 'ALPHA', function(r) {
if (r=="charles darwin"){var x = document.getElementById('ran66');
x.style.background = 'green';
x.style.color="white";}
else{var x = document.getElementById('ran66');
x.style.background = 'red';
x.style.color="white";}
});
});
});
$(document).ready( function() {
$("#ran67").click( function() {
jPrompt('Which is the major nerve supply to the gastrointestinal tract that controls GI tract motility?'
, '', 'GAMMA', function(r) {
if (r=="auerbachs (myenteric) plexus"){var x = document.getElementById('ran67');
x.style.background = 'green';
x.style.color="white";}
else{var x = document.getElementById('ran67');
x.style.background = 'red';
x.style.color="white";}
});
});
});
$(document).ready( function() {
$("#ran68").click( function() {
jPrompt('A regulatory subunit present in Maturation Promoting Factors (MPF) is called?'
, '', 'BETA', function(r) {
if (r=="cyclin"){var x = document.getElementById('ran68');
x.style.background = 'green';
x.style.color="white";}
else{var x = document.getElementById('ran68');
x.style.background = 'red';
x.style.color="white";}
});
});
});
$(document).ready( function() {
$("#ran69").click( function() {
jPrompt('Y-shaped Model (Double Channel Model) of energy flow is given by?',
'', 'GAMMA', function(r) {
if (r=="h.t. odum"){var x = document.getElementById('ran69');
x.style.background = 'green';