-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquestions.json
9588 lines (9588 loc) · 284 KB
/
questions.json
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
{
"1.1": {
"fillUps": [
{
"id": 1,
"type": "fillUps",
"question": "Name the place of pilgrimage where this battle took place.",
"correctAnswers": [
"kurukshetra"
]
},
{
"id": 2,
"type": "fillUps",
"question": "Gita-Mahatmya: One should read Bhagavad- gétä very _________ with the help of a person who is a devotee of _________ and try to understand it without _________ interpretations.",
"correctAnswers": [
"scrutinizingly",
"Sri Krishna",
"personally motivated"
]
},
{
"id": 3,
"type": "fillUps",
"question": "Perfect theistic science: The Bhagavad Gita is the perfect theistic science because it is _________ spoken by the Supreme Personality of Godhead, Lord Sri Krishna .",
"correctAnswers": [
"directly"
]
},
{
"id": 4,
"type": "fillUps",
"question": "Dhrtarastra’s fear: Dhrtarastra became very fearful about the _________ of the holy place on the outcome of the _________ , because he knew very well that the holy place would influence the _________ favourably.Dhrtarastra did not want a _________ between his sons and the Pandavas.",
"correctAnswers": [
"influence",
"battle",
"Pandavas",
"compromise"
]
},
{
"id": 5,
"type": "fillUps",
"question": "Saïjaya’s vision: Saïjaya was a student of _________ , and therefore, by the mercy of _________ , Saïjaya was able to _________ the Battlefield of Kurukshetra even while he was in the room of Dhrtarastra .",
"correctAnswers": [
"vyasa",
"vyasa",
"envision"
]
},
{
"id": 6,
"type": "fillUps",
"question": "Example of paddy field: As in the paddy field the unnecessary plants are taken out, so it is expected from the very beginning of these topics that in the religious field of _________ where the father of religion, _________ _________ _________ , was present, the unwanted plants like _________ and others would be wiped out and the thoroughly religious persons, headed by _________ , would be established by the _________ .",
"correctAnswers": [
"Kurukshetra",
"Sri Krishna",
"Duryodhana",
"Yudhisthria",
"Lord"
]
}
]
},
"1.2": {
"fillUps": [
{
"id": 1,
"type": "fillUps",
"question": "Duryodhana’s diplomacy: Duryodhana, after seeing the military force of the _________ , at once went to the commander-in-chief, _________ , to inform him of the real position, because Duryodhana felt fear on seeing the military arrangement of the _________ .To cover up his fear in a _________ way, Duryodhana went to _________ .",
"correctAnswers": [
"Pandavas",
"Dronacharya",
"Pandavas",
"diplomatic",
"Dronacharya"
]
},
{
"id": 2,
"type": "fillUps",
"question": "Akñauhiëé : A solid phalanx of 21,870 chariots, 21,870 _________ , 65,610 _________ and 109,350 infantry is called an _________ .",
"correctAnswers": [
"elephants",
"cavalry",
"akshauhini"
]
}
]
},
"1.6": {
"fillUps": [
{
"id": 1,
"type": "fillUps",
"question": "Saubhadrah is the son of _________ .",
"correctAnswers": [
"Subhadra"
]
}
]
},
"1.8": {
"fillUps": [
{
"id": 1,
"type": "fillUps",
"question": "Saumadatti is also known as _________ .",
"correctAnswers": [
"Bhurisrava"
]
},
{
"id": 2,
"type": "fillUps",
"question": "Saumadatti is the son of _________ .",
"correctAnswers": [
"Somadatta"
]
}
]
},
"1.9": {
"mcq": [
{
"id": 1,
"type": "mcq",
"question": "As described in the text book, the following warriors are fighting on the side of the Pandavas or Kauravas. Jayadratha ",
"options": [
"Pandavas",
"Kauravas"
],
"correctOption": 1
},
{
"id": 2,
"type": "mcq",
"question": "As described in the text book, the following warriors are fighting on the side of the Pandavas or Kauravas. Krpa ",
"options": [
"Pandavas",
"Kauravas"
],
"correctOption": 1
},
{
"id": 3,
"type": "mcq",
"question": "As described in the text book, the following warriors are fighting on the side of the Pandavas or Kauravas. Yuyudhäna ",
"options": [
"Pandavas",
"Kauravas"
],
"correctOption": 0
},
{
"id": 4,
"type": "mcq",
"question": "As described in the text book, the following warriors are fighting on the side of the Pandavas or Kauravas. Uttamaujä ",
"options": [
"Pandavas",
"Kauravas"
],
"correctOption": 0
},
{
"id": 5,
"type": "mcq",
"question": "As described in the text book, the following warriors are fighting on the side of the Pandavas or Kauravas. Bhurisravä ",
"options": [
"Pandavas",
"Kauravas"
],
"correctOption": 1
},
{
"id": 6,
"type": "mcq",
"question": "As described in the text book, the following warriors are fighting on the side of the Pandavas or Kauravas. Käsiräja ",
"options": [
"Pandavas",
"Kauravas"
],
"correctOption": 0
},
{
"id": 7,
"type": "mcq",
"question": "As described in the text book, the following warriors are fighting on the side of the Pandavas or Kauravas. Bhishma",
"options": [
"Pandavas",
"Kauravas"
],
"correctOption": 1
},
{
"id": 8,
"type": "mcq",
"question": "As described in the text book, the following warriors are fighting on the side of the Pandavas or Kauravas. Virata ",
"options": [
"Pandavas",
"Kauravas"
],
"correctOption": 0
}
]
},
"1.10": {
"fillUps": [
{
"id": 1,
"type": "fillUps",
"question": "Kaurava army was perfectly protected by _________ _________ , whereas the Pandavas were carefully protected by _________ .",
"correctAnswers": [
"Grandfather ",
"Bhéñma",
"Bhéma"
]
}
]
},
"1.19": {
"fillUps": [
{
"id": 1,
"type": "fillUps",
"question": "The hearts of the sons of Dhrtarastra were shattered by the sounds vibrated by the Pandavas' party. This is due to the Pandavas and their _________ _________ .",
"correctAnswers": [
"confidence in Lord ",
"Krishna"
]
},
{
"id": 2,
"type": "fillUps",
"question": "Devotee is fearless: One who takes shelter of the _________ has nothing to fear, even in the midst of the greatest _________ .",
"correctAnswers": [
"Supreme Lord",
"calamity"
]
}
]
},
"1.21-22": {
"fillUps": [
{
"id": 1,
"type": "fillUps",
"question": "Significance of addressing Krishna as Achyuta: The relationship between the _________ and His _________ is very sweet and _________ . The servitor is always ready to render service to the Lord, and, similarly, the Lord is always seeking an opportunity to _________ . He takes greater pleasure in His pure devotee's assuming the advantageous postion of ordering Him than He does in being the _________ . As master, everyone is under His orders, and no one is above Him to order Him. But when he finds that a pure devotee is ordering Him, He obtains transcendental pleasure, although He is the _________ master of all circumstances.",
"correctAnswers": [
"Lord",
"servitor",
"transcendental",
"render some service to the devotee",
"giver of orders",
"infallible"
]
}
]
},
"1.24": {
"fillUps": [
{
"id": 1,
"type": "fillUps",
"question": "The word ‘ bhärata ’ refers to the descendant of _________ .",
"correctAnswers": [
"Bharata"
]
},
{
"id": 2,
"type": "fillUps",
"question": "Samädhi : A devotee of Krishna can conquer both _________ and _________ simply by _________ of Krishna constantly. This is called Krishna consciousness, or _________ .",
"correctAnswers": [
"sleep",
"ignorance",
"thinking",
"samädhi"
]
},
{
"id": 3,
"type": "fillUps",
"question": "Guòäkeça : _________ is called Guòäkeça because he conquered both sleep and ignorance due to his friendship with _________ .",
"correctAnswers": [
"Arjuna",
"Krishna"
]
}
]
},
"1.28": {
"fillUps": [
{
"id": 1,
"type": "fillUps",
"question": "A devotee has all good qualities: On seeing his relatives on the enemy side, the symptoms displayed by Arjuna were not due to _________ but to his _________ , a characteristic of a pure devotee of the Lord. ",
"correctAnswers": [
"weakness",
"softheartedness"
]
}
]
},
"1.31": {
"fillUps": [
{
"id": 1,
"type": "fillUps",
"question": "Analogy of a person who is not hungry: Arjuna is reluctant even to kill his enemies, let alone his relatives. He thought that by killing his kinsmen there would be no happiness in his life, and therefore he was not willing to fight, just as _________ .",
"correctAnswers": [
"a person who does not feel hunger is not inclined to cook"
]
}
]
},
"1.32-35": {
"fillUps": [
{
"id": 1,
"type": "fillUps",
"question": "Arjuna was not prepared to fight with Kauravas even in exchange for the _________ , let alone this earth.",
"correctAnswers": [
"three worlds"
]
}
]
},
"1.40": {
"fillUps": [
{
"id": 1,
"type": "fillUps",
"question": "According to Cäëakya Paëòit , women are generally not very intelligent and therefore not _________ .",
"correctAnswers": [
"trustworthy"
]
}
]
},
"1.42": {
"fillUps": [
{
"id": 1,
"type": "fillUps",
"question": "Breaking tradition: The breaking of the _________ _________ tradition by irresponsible leaders of society brings about chaos in that society, and consequently people forget the aim of life— _________ .",
"correctAnswers": [
"sanätana",
"dharma",
"Viñëu"
]
}
]
},
"1.43": {
"fillUps": [
{
"id": 1,
"type": "fillUps",
"question": "Präyaçcitta : One who is always engaged in _________ activities must utilize the process of _________ called the präyaçcitta .",
"correctAnswers": [
"sinful",
"ablution"
]
}
]
},
"1.44": {
"fillUps": [
{
"id": 1,
"type": "fillUps",
"question": "Driven by _________ , one may be inclined to such sinful acts as the killing of one's own brother, father, or mother.",
"correctAnswers": [
"selfish motives"
]
}
]
},
"1.45": {
"fillUps": [
{
"id": 1,
"type": "fillUps",
"question": "All the symptoms that Arjuna exhibits in this chapter are due to _________ resulting from his being a great devotee of the Lord.",
"correctAnswers": [
"softheartedness"
]
}
]
},
"2.1": {
"fillUps": [
{
"id": 1,
"type": "fillUps",
"question": "Krishna is addressed as Madhusudana which means He is killer of the _________ demon . Arjuna wanted Krishna to kill the demon of _________ that had overtaken him in the _________ .",
"correctAnswers": [
"Madhu",
"misunderstanding",
"discharge of his duty"
]
},
{
"id": 2,
"type": "fillUps",
"question": "A man fallen in the ocean of nescience cannot be saved simply by rescuing his outward dress—the _________ . One who does not know this and laments for the outward dress is called a _________ , or one who laments unnecessarily.",
"correctAnswers": [
"gross material body",
"çüdra"
]
},
{
"id": 3,
"type": "fillUps",
"question": "This chapter instructs us in self-realization by an analytical study of the _________ and the _________ , as explained by the supreme authority, _________ .",
"correctAnswers": [
"material body",
"spirit soul",
"Lord Sri Krishna"
]
}
]
},
"2.2": {
"fillUps": [
{
"id": 1,
"type": "fillUps",
"question": "Absolute Truth is realized in three phases of understanding, namely _________ or the _________ ; _________ , or the _________ ; and _________ , or the _________ .",
"correctAnswers": [
"Brahman",
"impersonal all-pervasive spirit",
"Paramätmä",
"localized aspect of the Supreme within the heart of all living entities",
"Bhagavän",
"Supreme Personality of Godhead, Lord Krishna"
]
},
{
"id": 2,
"type": "fillUps",
"question": "These three divine aspects of the Absolute Truth can be explained by the example of the sun, which also has three different aspects, namely the _________ , the _________ and the _________ .",
"correctAnswers": [
"sunshine",
"sun's surface",
"sun planet itself"
]
},
{
"id": 3,
"type": "fillUps",
"question": "As explained by Parashara Muni, t he Supreme Personality who possesses all _________ , all _________ , all _________ , all _________ , all _________ and all _________ is called Bhagavän.",
"correctAnswers": [
"riches",
"strength",
"fame",
"beauty",
"knowledge",
"renunciation"
]
},
{
"id": 4,
"type": "fillUps",
"question": "The word äryan is applicable to persons who know the _________ and have a civilization based on _________ .",
"correctAnswers": [
"value of life",
"spiritual realization"
]
}
]
},
"2.3": {
"fillUps": [
{
"id": 1,
"type": "fillUps",
"question": "Krishna tells Arjuna “Do not yield to this _________ . It does not be fit you. Give up such petty _________ and arise .”",
"correctAnswers": [
"degrading impotence",
"weakness of heart"
]
}
]
},
"2.4": {
"fillUps": [
{
"id": 1,
"type": "fillUps",
"question": "Arjuna is particularly thinking that he cannot kill respectable superiors like grandfather _________ and teacher _________ , who are always worshipable . Would Krishna ever attack his own grandfather _________ or His teacher _________ ? These were some of the arguments of Arjuna to Krishna.",
"correctAnswers": [
"Bhisma",
"Dronacharya",
"Ugrasena",
"Sandipani Muni"
]
}
]
},
"2.7": {
"fillUps": [
{
"id": 1,
"type": "fillUps",
"question": "Arjuna is confused about his duty because of _________ . He is asking Krishna to _________ him in what is _________ for him. Even though Arjuna is Krishna’s friend, he wants to stop friendly talks. He voluntarily becomes Krishna’s _________ and _________ to Krishna.",
"correctAnswers": [
"miserly weakness",
"instruct",
"best",
"disciple",
"surrenders"
]
}
]
},
"2.8": {
"fillUps": [
{
"id": 1,
"type": "fillUps",
"question": "The four fundamental problems of material existence are _________ , _________ , _________ and _________ . These problems cannot be counteracted by accumulation of wealth and economic development. T hey c an be solved only by consult ingany one of the following three:",
"correctAnswers": [
"birth",
"old age",
"disease",
"death"
]
}
]
},
"2.11": {
"fillUps": [
{
"id": 1,
"type": "fillUps",
"question": "One who is learned does not lament for any condition of the body either _________ or _________ .",
"correctAnswers": [
"living",
"dead"
]
}
]
},
"2.12": {
"fillUps": [
{
"id": 1,
"type": "fillUps",
"question": "The individuality of all is confirmed in 2.12 for all the three phases of time namely _________ , _________ and _________ as well as for all three persons namely first person – _________ , second person – _________ and third person – _________ .",
"correctAnswers": [
"past",
"present",
"future",
"Krishna",
"Arjuna",
"the kings"
]
},
{
"id": 2,
"type": "fillUps",
"question": "The supreme authority _________ does not support the Mayavadi theory which states that after _________ the individual soul will merge into the _________ and lose its _________ .",
"correctAnswers": [
"Lord Krishna",
"liberation",
"impersonal Brahman",
"individuality"
]
}
]
},
"2.13": {
"fillUps": [
{
"id": 1,
"type": "fillUps",
"question": "A dhira or most sober man is defined in 2.13 as a man who has perfect knowledge of the constitution of the _________ , the _________ , and nature—both _________ and _________ . Such a dhira is not deluded by change of _________ .",
"correctAnswers": [
"individual soul",
"Supersoul",
"material",
"spiritual",
"bodies"
]
}
]
},
"2.14": {
"fillUps": [
{
"id": 1,
"type": "fillUps",
"question": "T he nonpermanent appearance of happiness and distress, and their disappearance in due course, are like the appearance and disappearance of _________ .",
"correctAnswers": [
"winter and summer seasons"
]
}
]
},
"2.16": {
"fillUps": [
{
"id": 1,
"type": "fillUps",
"question": "As explained in 2.16, i n the Vedänta-sütras, as well as in the Çrémad-Bhägavatam, the Supreme has been accepted as the origin of all _________ .",
"correctAnswers": [
"emanations"
]
},
{
"id": 2,
"type": "fillUps",
"question": "The living entities are always subordinate to the Supreme Lord , which is impossible to understand under the spell of _________ , and to drive away such _________ the Lord teaches the _________ for the enlightenment of all living entities for all time.",
"correctAnswers": [
"ignorance",
"ignorance",
"Bhagavad-gita"
]
}
]
},
"2.17": {
"fillUps": [
{
"id": 1,
"type": "fillUps",
"question": "C onsciousness is not due to any amount of material combination, but due to the _________ .",
"correctAnswers": [
"spirit soul"
]
},
{
"id": 2,
"type": "fillUps",
"question": "According to the Mundaka Upanishad as explained in 2.17, t he soul is _________ in size and can be perceived by _________ . This sou l is flo ating in the five kinds of air - _________ , _________ , _________ , _________ and _________ . It is situated within the _________ , and spreads its influence all over the _________ of the embodied living entities. When the soul is purified from the contamination of the five kinds of _________ , its spiritual influence is exhibited.",
"correctAnswers": [
"atomic",
"perfect intelligence",
"präëa",
"apäna",
"vyäna",
"samäna",
"udäna",
"heart",
"body",
"material air"
]
}
]
},
"2.18": {
"fillUps": [
{
"id": 1,
"type": "fillUps",
"question": "T here was no cause of lamentation for Arjuna because the living entity can not be _________ a nd the material body cannot be _________ .",
"correctAnswers": [
"killed",
"saved"
]
}
]
},
"2.20": {
"fillUps": [
{
"id": 1,
"type": "fillUps",
"question": "Even if one does not find the soul within the heart, where he is situated, one can still understand the presence of the soul simply by the presence of _________ .",
"correctAnswers": [
"consciousness"
]
},
{
"id": 2,
"type": "fillUps",
"question": "According to Katha Upanishad, b oth the types of soul are situated on the same tree of the _________ within the same _________ of the living being, and only one who has become free from all _________ as well as _________ can, by the grace of the Supreme, understand the glories of the soul .",
"correctAnswers": [
"body",
"heart",
"material desires",
"lamentations"
]
},
{
"id": 3,
"type": "fillUps",
"question": " _________ is the fountain head of both the types of souls.",
"correctAnswers": [
"Krishna"
]
},
{
"id": 4,
"type": "fillUps",
"question": "_________ is forgetful of his real nature; therefore he requires to be enlightened by _________ , or by His bona fide representative – the _________ .",
"correctAnswers": [
"Arjuna",
"Krishna",
"spiritual master"
]
}
]
},
"2.21": {
"fillUps": [
{
"id": 1,
"type": "fillUps",
"question": "W hen Krishna orders fighting, it must be concluded that violence is for _________ .",
"correctAnswers": [
"supreme justice"
]
}
]
},
"2.22": {
"fillUps": [
{
"id": 1,
"type": "fillUps",
"question": "ference of the _________ soul to another body is made possible by the grace of the _________ soul .",
"correctAnswers": [
"atomic individual",
"Super"
]
},
{
"id": 2,
"type": "fillUps",
"question": "Krishna is the _________ bird, and Arjuna is the _________ bird. Although they are friends, one is the _________ and the other is the _________ .",
"correctAnswers": [
"witnessing",
"eating",
"master",
"servant"
]
}
]
},
"2.23": {
"fillUps": [
{
"id": 1,
"type": "fillUps",
"question": "In the Varaha Purana the living entities are described as _________ of the Supreme.",
"correctAnswers": [
"separated parts and parcels"
]
}
]
},
"2.25": {
"fillUps": [
{
"id": 1,
"type": "fillUps",
"question": "As far as the soul's existence is concerned, no one can establish his existence experimentally beyond the proof of _________ .There are many things we have to accept solely on grounds of superior _________ .There is no other source of understanding the identity of the father except by the authority of the _________ .",
"correctAnswers": [
"çruti",
"authority",
"mother"
]
},
{
"id": 2,
"type": "fillUps",
"question": "The Supreme Soul is infinite, and the atomic soul is _________ . Therefore, the in dividual soul, being unchangeable, can never become equal to the _________ soul, or the Supreme Personality of Godhead. This concept is repeated in the Vedas in different ways just to confirm the stability of the conception of the soul.",
"correctAnswers": [
"infinitesimal",
"infinite"
]
}
]
},
"2.27": {
"fillUps": [
{
"id": 1,
"type": "fillUps",
"question": "The Battle of Kurukshetra, being the _________ , was an inevitable event, and to fight for the right cause is the duty of a kñatriya.",
"correctAnswers": [
"will of the Supreme"
]
}
]
},
"2.29": {
"fillUps": [
{
"id": 1,
"type": "fillUps",
"question": "Some _________ on the soul as amazing, some _________ the soul as amazing, and some _________ of the soul as amazing, while others, even after _________ about the soul, cannot understand him at all.",
"correctAnswers": [
"look",
"describe",
"hear",
"hearing"
]
},
{
"id": 2,
"type": "fillUps",
"question": "Some people who are inclined to hear about the soul may be attending lectures in good association, but owing to ignorance, they are misguided by acceptance of the _________ and the _________ as one without distinction of _________ .",
"correctAnswers": [
"Supersoul ",
"atomic soul",
"magnitude"
]
}
]
},
"2.39": {
"fillUps": [
{
"id": 1,
"type": "fillUps",
"question": "Sankhya as described in this chapter means analytical description of _________ and _________ .",
"correctAnswers": [
"body",
"soul"
]
},
{
"id": 2,
"type": "fillUps",
"question": "Lord Krishna's säìkhya and Lord Kapila's säìkhya, as described in the Bhägavatam are one and the same. They are all _________ -yoga.",
"correctAnswers": [
"bhakti"
]
}
]
},
"2.45": {
"fillUps": [
{
"id": 1,
"type": "fillUps",
"question": "The Vedas deal mostly with _________ activities to gradually elevate the general public from the field of sense gratification to a position on the _________ plane.",
"correctAnswers": [
"fruitive",
"transcendental"
]
},
{
"id": 2,
"type": "fillUps",
"question": "Arjuna, as a student and friend of Lord Krishna, is advised to raise himself to thecendental position of _________ philosophy where, in the beginning, there is _________ -jijïäsä, or questions on the _________ .",
"correctAnswers": [
"Vedänta",
"brahma",
"Supremecendence"
]
},
{
"id": 3,
"type": "fillUps",
"question": "When the activities for sense gratification, namely the _________ -käëòa chapter, are finished, then the chance for spiritual realization is offered in the form of the _________ , which are part of different Vedas .",
"correctAnswers": [
"karma",
"Upaniñads"
]
},
{
"id": 4,
"type": "fillUps",
"question": "T he _________ is a part of the fifth Veda, namely the _________ .",
"correctAnswers": [
"Bhagavad-gétä",
"Mahäbhärata"
]
}
]
},
"2.46": {
"fillUps": [
{
"id": 1,
"type": "fillUps",
"question": "According to the recommendation of Lord Chaitanya, the best purpose of Vedic wisdom is served by _________ .",
"correctAnswers": [
"inoffensively chanting the holy name of the Lord"
]
}
]
},
"2.47": {
"fillUps": [
{
"id": 1,
"type": "fillUps",
"question": "The three subdivisions of prescribed duties are _________ , _________ and _________ .",
"correctAnswers": [
"routine work",
"emergency work",
"desired activities"
]
}
]
},
"2.48": {
"fillUps": [
{
"id": 1,
"type": "fillUps",
"question": "Yoga means to concentrate the _________ upon the _________ by controlling the ever-disturbing _________ .",
"correctAnswers": [
"mind",
"Supreme",
"senses"
]
},
{
"id": 2,
"type": "fillUps",
"question": "It is said in the Viñëu Puraëa that in the varëäçrama-dharma, the whole aim is to satisfy _________ .",
"correctAnswers": [
"Viñëu"
]
}
]
},
"2.50": {
"fillUps": [
{
"id": 1,
"type": "fillUps",
"question": "One's ignorance can be removed by the instruction of the Bhagavad-gétä which teaches one to _________ in all respects and become liberated from the chained victimization of _________ , birth after birth.",
"correctAnswers": [
"surrender unto Lord Sri Krishna",
"action and reaction"
]
},
{
"id": 2,
"type": "fillUps",
"question": "Arjuna is therefore advised to act in _________ consciousness, the purifying process of resultant _________ .",
"correctAnswers": [
"Krishna",
"action"
]
},
{
"id": 3,
"type": "fillUps",
"question": "A man engaged in devotional service rids himself of both _________ and _________ actions even in this life. Therefore strive for yoga, w hich is the _________ .",
"correctAnswers": [
"good",
"bad",
"art of all work"
]
}
]
},
"2.51": {
"fillUps": [
{
"id": 1,
"type": "fillUps",
"question": "In verse number 51, Lord Krishna states that the wise who engage in devotional service free themselves from the cycle of birth and death and attain the state beyond all miseries . Srila Prabhupada quotes a verse from the Srimad Bhagavatam to explain this point. In this verse the lotus feet of the Lord is compared to a _________ . The Lord is described as shelter of the _________ and also described as the giver of _________ . The material world is compared to an _________ . Crossing the material world becomes easy because the material world shrinks to the size of _________ . The material world is described also as a place where there is _________ at every step . On the other hand the state beyond all miseries is described as _________ or _________ .",
"correctAnswers": [
"boat",
"cosmic manifestation",
"mukti",
"ocean",
"a calf’s hoofprint",
"misery",
"Vaikuntha",
"param padam"
]
}
]
},
"2.52": {
"fillUps": [
{
"id": 1,
"type": "fillUps",
"question": "In verse number 52, intelligence passing out of the dense forest of delusion means to _________ . To become indifferent to all that has been heard and all that is to heard means to become indifferent to _________ .",
"correctAnswers": [
"engage in devotional service of the Lord",
"rituals of the Vedas"
]
},
{
"id": 2,
"type": "fillUps",
"question": "The great devotee and acharya Srila Madhavendra Puri says that ever since he has taken to the devotional service of _________ Lord Krishna, who is described as _________ and also described as _________ , he is unable to do four Vedic rituals: i) _________ ; ii) _________ ; iii) _________ ; iv) _________ _________ . This is because devotional service is sufficient to purify him from all sinful bondage, which is the ultimate goal of the four rituals mentioned herein.",
"correctAnswers": [
"remembering",
"great descendant of the Yadu dynasty",
"enemy of Kamsa",
"offer prayers three times a day",
"take the prescribed ritualistic bath",
"offer ritualistic respects to the demigods",
"offer ",
"ritualistic respects to the forefathers"
]