-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathUPSC Star Data.json
4528 lines (4528 loc) · 169 KB
/
UPSC Star Data.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
{
"GSI": [
{
"Id": 1,
"Paper": "GS-I",
"Year": 2021,
"Question": "Evaluate the nature of the Bhakti literature and its contribution to Indian culture. (Answer in 150 words)",
"WordLimit": 150,
"Marks": 10
},
{
"Id": 2,
"Paper": "GS-I",
"Year": 2021,
"Question": "Trace the rise and growth of socio-religious reform movements with special reference to Young Bengal and Brahmo Samaj. (Answer in 150 words)",
"WordLimit": 150,
"Marks": 10
},
{
"Id": 3,
"Paper": "GS-I",
"Year": 2021,
"Question": "Assess the main administrative issues and socio-cultural problems in the integration process of Indian Princely States. (Answer in 150 words)",
"WordLimit": 150,
"Marks": 10
},
{
"Id": 4,
"Paper": "GS-I",
"Year": 2021,
"Question": "Examine the uniqueness of tribal knowledge system when compared with mainstream knowledge and cultural systems. (Answer in 150 words)",
"WordLimit": 150,
"Marks": 10
},
{
"Id": 5,
"Paper": "GS-I",
"Year": 2021,
"Question": "Examine the role of 'Gig Economy' in the process of empowerment of women in India. (Answer in 150 words)",
"WordLimit": 150,
"Marks": 10
},
{
"Id": 6,
"Paper": "GS-I",
"Year": 2021,
"Question": "To what extent did the role of the Moderates prepare a base for the wider freedom movement? Comment. (Answer in 250 words)",
"WordLimit": 250,
"Marks": 15
},
{
"Id": 7,
"Paper": "GS-I",
"Year": 2021,
"Question": "Bring out the constructive programmes of Mahatma Gandhi during Non-Cooperation Movement and Civil Disobedience Movement.",
"WordLimit": 250,
"Marks": 15
},
{
"Id": 8,
"Paper": "GS-I",
"Year": 2021,
"Question": "\"There arose a serious challenge to the Democratic State System between the two World Wars.\" Evaluate the statement. (Answer in 250 words)",
"WordLimit": 250,
"Marks": 15
},
{
"Id": 9,
"Paper": "GS-I",
"Year": 2021,
"Question": "What are the main socio-economic implications arising out of the development of IT industries in major cities of India? (Answer in 250 words)",
"WordLimit": 250,
"Marks": 15
},
{
"Id": 10,
"Paper": "GS-I",
"Year": 2021,
"Question": "Discuss the main objectives of Population Education and point out the measures to achieve them in India in detail. (Answer in 250 words)",
"WordLimit": 250,
"Marks": 15
},
{
"Id": 11,
"Paper": "GS-I",
"Year": 2021,
"Question": "What is Cryptocurrency? How does it affect global society? Has it been affecting Indian society also? (Answer in 250 words)",
"WordLimit": 250,
"Marks": 15
},
{
"Id": 12,
"Paper": "GS-I",
"Year": 2021,
"Question": "How does Indian society maintain continuity in traditional social values Enumerate the changes taking place in it. (Answer in 250 words)",
"WordLimit": 250,
"Marks": 15
},
{
"Id": 13,
"Paper": "GS-I",
"Year": 2021,
"Question": "Differentiate the causes of landslides in the Himalayan region and Western Ghats. (Answer in 150 words)",
"WordLimit": 150,
"Marks": 10
},
{
"Id": 14,
"Paper": "GS-I",
"Year": 2021,
"Question": "Despite India being one of the countries of the Gondwanaland, its mining industry contributes much less to its Gross Domestic Product (GDP) in percentage. Discuss. (Answer in 150 words)",
"WordLimit": 150,
"Marks": 10
},
{
"Id": 15,
"Paper": "GS-I",
"Year": 2021,
"Question": "What are the environmental implications of the reclamation of water bodies into urban land use? Explain with examples. (Answer in 150 words)",
"WordLimit": 150,
"Marks": 10
},
{
"Id": 16,
"Paper": "GS-I",
"Year": 2021,
"Question": "Mention the global occurrence of volcanic eruptions in 2021 and their impact on regional environment. (Answer in 150 words)",
"WordLimit": 150,
"Marks": 10
},
{
"Id": 17,
"Paper": "GS-I",
"Year": 2021,
"Question": "Why is India considered as a subcontinent? Elaborate your answer.",
"WordLimit": 150,
"Marks": 10
},
{
"Id": 18,
"Paper": "GS-I",
"Year": 2021,
"Question": "Briefly mention the alignment of major mountain ranges of the world and explain their impact on local weather conditions, with examples.",
"WordLimit": 250,
"Marks": 15
},
{
"Id": 19,
"Paper": "GS-I",
"Year": 2021,
"Question": "How do the melting of the Arctic ice and glaciers of the Antarctic differently affect the weather patterns and human activities on the Earth ? Explain.",
"WordLimit": 250,
"Marks": 15
},
{
"Id": 20,
"Paper": "GS-I",
"Year": 2021,
"Question": "Discuss the multi-dimensional implications of uneven distribution of mineral oil in the world. (Answer in 250 words)",
"WordLimit": 250,
"Marks": 15
},
{
"Id": 21,
"Paper": "GS-I",
"Year": 2021,
"Question": "The rock-cut architecture represents one Of the most important sources of our knowledge of early Indian art and history. Discuss. (Answer in 150 words)",
"WordLimit": 150,
"Marks": 10
},
{
"Id": 22,
"Paper": "GS-I",
"Year": 2021,
"Question": "Pala period is the most significant phase in the history of Buddhism in India. Enumerate. (Answer in 150 words)",
"WordLimit": 150,
"Marks": 10
},
{
"Id": 23,
"Paper": "GS-I",
"Year": 2021,
"Question": "Evaluate the policies of Lord Curzon and their long term implications on the national movement. (Answer in 150 words)",
"WordLimit": 150,
"Marks": 10
},
{
"Id": 24,
"Paper": "GS-I",
"Year": 2021,
"Question": "Has caste lost its relevance in Understanding the multi-cultural Indian Society? Elaborate your answer with illustrations. (Answer in 150 words)",
"WordLimit": 150,
"Marks": 10
},
{
"Id": 25,
"Paper": "GS-I",
"Year": 2021,
"Question": "COVID-19 pandemic accelerated class inequalities and poverty in India. Comment. (Answer in 150 words)",
"WordLimit": 150,
"Marks": 10
},
{
"Id": 26,
"Paper": "GS-I",
"Year": 2021,
"Question": "DO you agree that regionalism in India appears to be a consequence Of rising cultural assertiveness? Argue. (Answer in 150 words)",
"WordLimit": 250,
"Marks": 15
},
{
"Id": 27,
"Paper": "GS-I",
"Year": 2021,
"Question": "Indian philosophy and tradition played a significant role in conceiving and shaping the monuments and their art in India. Discuss. (Answer in 250 words)",
"WordLimit": 250,
"Marks": 15
},
{
"Id": 28,
"Paper": "GS-I",
"Year": 2021,
"Question": "Persian literary sources of Medieval India reflect the spirit of the age. Comment.",
"WordLimit": 250,
"Marks": 15
},
{
"Id": 29,
"Paper": "GS-I",
"Year": 2020,
"Question": "Since the decade Of the 1920s, the national movement acquired various ideological strands and thereby expanded its social base. Discuss. (Answer in 250 words)",
"WordLimit": 150,
"Marks": 10
},
{
"Id": 30,
"Paper": "GS-I",
"Year": 2020,
"Question": "Account for the huge flooding Of million cities in India including the smart ones like Hyderabad and Pune. Suggest lasting remedial measures. (Answer in 250 words)",
"WordLimit": 150,
"Marks": 10
},
{
"Id": 31,
"Paper": "GS-I",
"Year": 2020,
"Question": "Is diversity and pluralism in India under threat due to globalisation? Justify your answer. (Answer in 250 words)",
"WordLimit": 150,
"Marks": 10
},
{
"Id": 32,
"Paper": "GS-I",
"Year": 2020,
"Question": "Customs and traditions suppress reason leading to obscurantism. DO you agree? (Answer in 250 words)",
"WordLimit": 150,
"Marks": 10
},
{
"Id": 33,
"Paper": "GS-I",
"Year": 2020,
"Question": "How have digital initiatives in India contributed to the functioning Of the education system in the country? Elaborate on your answer. (Answer in 250 words)",
"WordLimit": 150,
"Marks": 10
},
{
"Id": 34,
"Paper": "GS-I",
"Year": 2020,
"Question": "Discuss the geophysical characteristics of Circum-Pacific Zone.",
"WordLimit": 150,
"Marks": 10
},
{
"Id": 35,
"Paper": "GS-I",
"Year": 2020,
"Question": "The process of desertification does not have climatic boundaries. Justify with examples.",
"WordLimit": 250,
"Marks": 15
},
{
"Id": 36,
"Paper": "GS-I",
"Year": 2020,
"Question": "How will the melting of Himalayan glaciers have a far-reaching impact on the water resources of India?",
"WordLimit": 250,
"Marks": 15
},
{
"Id": 37,
"Paper": "GS-I",
"Year": 2020,
"Question": "The interlinking of rivers can provide viable solutions to the multi-dimensional inter-related problems of droughts, floods and interrupted navigation. Critically examine.",
"WordLimit": 250,
"Marks": 15
},
{
"Id": 38,
"Paper": "GS-I",
"Year": 2020,
"Question": "India has immense potential of solar energy though there are regional variations in its development. Elaborate",
"WordLimit": 250,
"Marks": 15
},
{
"Id": 39,
"Paper": "GS-I",
"Year": 2020,
"Question": "Examine the status of forest resources of India and its resultant impact on climate change.",
"WordLimit": 250,
"Marks": 15
},
{
"Id": 40,
"Paper": "GS-I",
"Year": 2020,
"Question": "Account for the present location of iron and steel industries away from the source of raw material, by giving examples.",
"WordLimit": 250,
"Marks": 15
},
{
"Id": 41,
"Paper": "GS-I",
"Year": 2020,
"Question": "Account for the huge flooding of million cities in India including the smart ones like Hyderabad and Pune. Suggest lasting remedial measures.",
"WordLimit": 250,
"Marks": 15
},
{
"Id": 42,
"Paper": "GS-I",
"Year": 2020,
"Question": "Highlight the Central Asian and Greco-Bactrian elements in Gandhara art.",
"WordLimit": 150,
"Marks": 10
},
{
"Id": 43,
"Paper": "GS-I",
"Year": 2020,
"Question": "The 1857 Uprising was the culmination of the recurrent big and small local rebellions that had occurred in the preceding hundred years of British rule. Elucidate. (Answer in 150 words)",
"WordLimit": 150,
"Marks": 10
},
{
"Id": 44,
"Paper": "GS-I",
"Year": 2020,
"Question": "Examine the linkages between the nineteenth century's 'Indian Renaissance' and the emergence of national identity. (Answer in 150 words)",
"WordLimit": 150,
"Marks": 10
},
{
"Id": 45,
"Paper": "GS-I",
"Year": 2020,
"Question": "Can the strategy of regional resource-based manufacturing help in promoting employment in India ? (Answer in 150 words)",
"WordLimit": 250,
"Marks": 15
},
{
"Id": 46,
"Paper": "GS-I",
"Year": 2020,
"Question": "What makes the Indian society unique in sustaining its culture ? Discuss. (Answer in 150 Words)",
"WordLimit": 250,
"Marks": 15
},
{
"Id": 47,
"Paper": "GS-I",
"Year": 2020,
"Question": "\"Empowering women is the key to control population growth.\" Discuss. (Answer in 150 words)",
"WordLimit": 250,
"Marks": 15
},
{
"Id": 48,
"Paper": "GS-I",
"Year": 2020,
"Question": "What are the challenges to Our cultural practices in the name Of secularism ? (Answer in 150 words)",
"WordLimit": 150,
"Marks": 10
},
{
"Id": 49,
"Paper": "GS-I",
"Year": 2020,
"Question": "Many voices had strengthened and enriched the nationalist movement during the Gandhian phase. Elaborate. (Answer in 250 words)",
"WordLimit": 250,
"Marks": 15
},
{
"Id": 50,
"Paper": "GS-I",
"Year": 2020,
"Question": "Assess the role of British imperial power in complicating the process Of transfer of power during the 1940s. (Answer in 250 words)",
"WordLimit": 150,
"Marks": 10
},
{
"Id": 51,
"Paper": "GS-I",
"Year": 2020,
"Question": "Explain how the foundations of the modern world were laid b' the American and French Revolutions. (Answer in 250 words)",
"WordLimit": 150,
"Marks": 10
},
{
"Id": 52,
"Paper": "GS-I",
"Year": 2020,
"Question": "How is emcient and affordable urban mass transport key to the rapid economic development of India ? (Answer in 250 words)",
"WordLimit": 150,
"Marks": 10
},
{
"Id": 53,
"Paper": "GS-I",
"Year": 2020,
"Question": "Do we have cultural pockets of small India all over the nation ? Elaborate with examples. (Answer in 250 words)",
"WordLimit": 250,
"Marks": 15
},
{
"Id": 54,
"Paper": "GS-I",
"Year": 2020,
"Question": "What are the continued challenges for women in India against time and space ? (Answer in 250 words)",
"WordLimit": 250,
"Marks": 15
},
{
"Id": 55,
"Paper": "GS-I",
"Year": 2020,
"Question": "Are we losing our local identity for the global identity ? Discuss. (Answer in 250 words)",
"WordLimit": 250,
"Marks": 15
},
{
"Id": 56,
"Paper": "GS-I",
"Year": 2020,
"Question": "Assess the impact of global warming on coral life system with examples.",
"WordLimit": 150,
"Marks": 10
},
{
"Id": 57,
"Paper": "GS-I",
"Year": 2020,
"Question": "How do ocean currents and water masses differ in their impacts on marine life and the coastal environment? Give suitable examples?",
"WordLimit": 250,
"Marks": 15
},
{
"Id": 58,
"Paper": "GS-I",
"Year": 2019,
"Question": "Discuss the causes of depletion of mangroves and explain their importance in maintaining coastal ecology.",
"WordLimit": 150,
"Marks": 10
},
{
"Id": 59,
"Paper": "GS-I",
"Year": 2019,
"Question": "How can the mountain ecosystem be restored from the negative impact of development initiatives and tourism?",
"WordLimit": 150,
"Marks": 10
},
{
"Id": 60,
"Paper": "GS-I",
"Year": 2019,
"Question": "What is water stress? How and why does it differ regionally in India?",
"WordLimit": 150,
"Marks": 10
},
{
"Id": 61,
"Paper": "GS-I",
"Year": 2019,
"Question": "Empowering women is the key to control population growth. Discuss",
"WordLimit": 150,
"Marks": 10
},
{
"Id": 62,
"Paper": "GS-I",
"Year": 2019,
"Question": "What are the continued challenges for women in India against time and space?",
"WordLimit": 150,
"Marks": 10
},
{
"Id": 63,
"Paper": "GS-I",
"Year": 2019,
"Question": "Discuss the factors for localization of agro-based food processing industries of North-West India.",
"WordLimit": 150,
"Marks": 10
},
{
"Id": 64,
"Paper": "GS-I",
"Year": 2019,
"Question": "How is efficient and affordable urban mass transport key to the rapid economic development of India?",
"WordLimit": 150,
"Marks": 10
},
{
"Id": 65,
"Paper": "GS-I",
"Year": 2019,
"Question": "Safeguarding the Indian art heritage is the need of the moment. Discuss.",
"WordLimit": 250,
"Marks": 15
},
{
"Id": 66,
"Paper": "GS-I",
"Year": 2019,
"Question": "Assess the importance of the accounts of the Chinese and Arab travellers in the reconstruction of the history Of India. (Answer in 150 words)",
"WordLimit": 250,
"Marks": 15
},
{
"Id": 67,
"Paper": "GS-I",
"Year": 2019,
"Question": "Throw light on the significance of the thoughts of Mahatma Gandhi in the present times. (Answer in 150 words)",
"WordLimit": 250,
"Marks": 15
},
{
"Id": 68,
"Paper": "GS-I",
"Year": 2019,
"Question": "\"Caste system is assuming new identities and associational forms. Hence, caste system cannot be eradicated in India.\" Comment. (Answer in 150 words)",
"WordLimit": 250,
"Marks": 15
},
{
"Id": 69,
"Paper": "GS-I",
"Year": 2019,
"Question": "Despite implementation Of various programmes for eradication Of poverty by the government in India, poverty is still existing.' Explain by giving reasons.",
"WordLimit": 250,
"Marks": 15
},
{
"Id": 70,
"Paper": "GS-I",
"Year": 2019,
"Question": "How the Indian concept of secularism is different from the western model of secularism? Discuss. (Answer in 150 words)",
"WordLimit": 250,
"Marks": 15
},
{
"Id": 71,
"Paper": "GS-I",
"Year": 2019,
"Question": "The Bhakti movement received a remarkable re-orientation With the advent Of Sri Chaitanya Mahaprabhu- Discuss. (Answer in 250 words)",
"WordLimit": 250,
"Marks": 15
},
{
"Id": 72,
"Paper": "GS-I",
"Year": 2019,
"Question": "Discuss whether formation of new states in recent times is beneficial or not for the economy of India. (Answer in 250 words)",
"WordLimit": 150,
"Marks": 10
},
{
"Id": 73,
"Paper": "GS-I",
"Year": 2019,
"Question": "Why indentured labour Was taken by the British from India to Other colonies? Have they been able to preserve their cultural identity over there? (Answer in 250 words)",
"WordLimit": 250,
"Marks": 15
},
{
"Id": 74,
"Paper": "GS-I",
"Year": 2019,
"Question": "Mention core strategies for the transformation Of aspirational districts in India and explain the nature of convergence, collaboration and competition for its success.",
"WordLimit": 150,
"Marks": 10
},
{
"Id": 75,
"Paper": "GS-I",
"Year": 2019,
"Question": "Women's movement in India has not addressed the issues of women of lower social strata.' Substantiate your view. (Answer in 250 words)",
"WordLimit": 250,
"Marks": 15
},
{
"Id": 76,
"Paper": "GS-I",
"Year": 2019,
"Question": "Globalization is generally said to promote cultural homogenization but due to this cultural specificities appear to be strengthened in the Indian Society.' Elucidate.",
"WordLimit": 250,
"Marks": 15
},
{
"Id": 77,
"Paper": "GS-I",
"Year": 2019,
"Question": "Communalism arises either due to power struggle or relative deprivation.' Argue by giving suitable illustrations. (Answer in 250 words)",
"WordLimit": 150,
"Marks": 10
},
{
"Id": 78,
"Paper": "GS-I",
"Year": 2019,
"Question": "Why is India taking keen interest in resources of Artic region?",
"WordLimit": 250,
"Marks": 15
},
{
"Id": 79,
"Paper": "GS-I",
"Year": 2019,
"Question": "Why is Indian Regional Navigational Satellite System (IRNSS) needed? How does it help in navigation?",
"WordLimit": 150,
"Marks": 10
},
{
"Id": 80,
"Paper": "GS-I",
"Year": 2019,
"Question": "Define mantle plume and explain its role in plate tectonics.",
"WordLimit": 250,
"Marks": 15
},
{
"Id": 81,
"Paper": "GS-I",
"Year": 2019,
"Question": "What are the consequences of spreading of Dead Zones on marine ecosystem?",
"WordLimit": 150,
"Marks": 10
},
{
"Id": 82,
"Paper": "GS-I",
"Year": 2019,
"Question": "Women's movement in India has not addressed the issue of women of lower social strata. Substantiate your view.",
"WordLimit": 250,
"Marks": 15
},
{
"Id": 83,
"Paper": "GS-I",
"Year": 2019,
"Question": "Define blue revolution, explain the problems and strategies for pisciculture development in India.",
"WordLimit": 150,
"Marks": 10
},
{
"Id": 84,
"Paper": "GS-I",
"Year": 2019,
"Question": "What is the significance of Industrial Corridors in India? Identify industrial corridors, explain their main characteristics.",
"WordLimit": 250,
"Marks": 15
},
{
"Id": 85,
"Paper": "GS-I",
"Year": 2019,
"Question": "“The ideal solution of depleting ground water resources in India is water harvesting system.” How can it be made effective in urban areas?",
"WordLimit": 250,
"Marks": 15
},
{
"Id": 86,
"Paper": "GS-I",
"Year": 2019,
"Question": "How do you justify the view that the level of excellence of the Gupta numismatic art is not at all noticeable in later times ? (150 words)",
"WordLimit": 150,
"Marks": 10
},
{
"Id": 87,
"Paper": "GS-I",
"Year": 2019,
"Question": "Clarify how mid-eighteenth century India was beset with the spectre of a fragmented polity. (150 words)",
"WordLimit": 250,
"Marks": 15
},
{
"Id": 88,
"Paper": "GS-I",
"Year": 2019,
"Question": "Why did the 'Moderates' fail to carry conviction with the nation about their proclaimed ideology and political goals by the end of the nineteenth century ? (150 words)",
"WordLimit": 150,
"Marks": 10
},
{
"Id": 89,
"Paper": "GS-I",
"Year": 2019,
"Question": "What problems were germane to the decolonization process in the Malay Peninsula ? (150 words)",
"WordLimit": 250,
"Marks": 15
},
{
"Id": 90,
"Paper": "GS-I",
"Year": 2018,
"Question": "In the context of the diversity of India, can it be said that the regions form cultural units rather than the States ? Give reasons with examples for your viewpoint. (150 words)",
"WordLimit": 150,
"Marks": 10
},
{
"Id": 91,
"Paper": "GS-I",
"Year": 2018,
"Question": "What are the two major legal initiatives by the State since Independence, addressing discrimination against Scheduled Tribes (STs) ? (150 words)",
"WordLimit": 150,
"Marks": 10
},
{
"Id": 92,
"Paper": "GS-I",
"Year": 2018,
"Question": "The spirit of tolerance and love is not only an interesting feature of Indian Society from very early times, but it is also playing an important part at the present. Elaborate. (250 words)",
"WordLimit": 150,
"Marks": 10
},
{
"Id": 93,
"Paper": "GS-I",
"Year": 2018,
"Question": "Examine how the decline of traditional artisanal industry in colonial India crippled the rural economy. (250 words)",
"WordLimit": 150,
"Marks": 10
},
{
"Id": 94,
"Paper": "GS-I",
"Year": 2018,
"Question": "Highlight the importance of the new objectives that got added to the vision of Indian independence since the twenties of the last century. (250 words)",
"WordLimit": 150,
"Marks": 10
},
{
"Id": 95,
"Paper": "GS-I",
"Year": 2018,
"Question": "The women's questions arose in modern India as a part of the 19 century reform movement. What were the major issues and debates concerning women in that period ? (250 words)",
"WordLimit": 150,
"Marks": 10
},
{
"Id": 96,
"Paper": "GS-I",
"Year": 2018,
"Question": "Distinguish betwæn religiousness/religiosity and communalism giving one example of how the former has got transformed into the latter in independent India. (250 words)",
"WordLimit": 250,
"Marks": 15
},
{
"Id": 97,
"Paper": "GS-I",
"Year": 2018,
"Question": "\"The growth of cities as I.T. hubs has opened up new avenues of employment, but has also created new problems.\" Substantiat.e this statement with examples. (250 words)",
"WordLimit": 250,
"Marks": 15
},
{
"Id": 98,
"Paper": "GS-I",
"Year": 2018,
"Question": "How does the Juno Mission of NASA help to understand the origin and evolution of the Earth?",
"WordLimit": 250,
"Marks": 15
},
{
"Id": 99,
"Paper": "GS-I",
"Year": 2018,
"Question": "In spite of adverse environmental impact, coal mining is still inevitable for development.” Discuss.",
"WordLimit": 250,
"Marks": 15
},
{
"Id": 100,
"Paper": "GS-I",
"Year": 2018,
"Question": "Mention the advantages of the cultivation of pulse because of which the year 2016 was declared as the International Year of Pulses by the United Nations.",
"WordLimit": 250,
"Marks": 15
},
{
"Id": 101,
"Paper": "GS-I",
"Year": 2018,
"Question": "How does the cryosphere affect global climate?",
"WordLimit": 250,
"Marks": 15
},
{
"Id": 102,
"Paper": "GS-I",
"Year": 2018,
"Question": "Account for variations in oceanic salinity and discuss its multi-dimensional effects.",
"WordLimit": 250,
"Marks": 15
},
{
"Id": 103,
"Paper": "GS-I",
"Year": 2018,
"Question": "In what way can flood be converted into a sustainable source of irrigation and all-weather inland navigation in India?",
"WordLimit": 150,
"Marks": 10
},
{
"Id": 104,
"Paper": "GS-I",
"Year": 2018,
"Question": "What characteristics can be assigned to monsoon climate that succeeds in feeding more than 50 percent of the won population residing in Monsoon Asia?",
"WordLimit": 150,
"Marks": 10
},
{
"Id": 105,
"Paper": "GS-I",
"Year": 2018,
"Question": "Petroleum refineries are not necessarily located nearer to crude oil producing areas, particularly in many of the developing countries. Explain its implications.",
"WordLimit": 150,
"Marks": 10
},
{
"Id": 106,
"Paper": "GS-I",
"Year": 2018,
"Question": "The growth of cities as I.T. hubs has opened up new avenues employment but has also created new problems. Substantiate this statement with examples. Urbanization",
"WordLimit": 150,
"Marks": 10
},
{
"Id": 107,
"Paper": "GS-I",
"Year": 2018,
"Question": "Early Buddhist Stupa-art, while depicting folk motifs and narratives successfully expounds Buddhist ideals. Elucidate.",
"WordLimit": 250,
"Marks": 15
},
{
"Id": 108,
"Paper": "GS-I",
"Year": 2018,
"Question": "Krishnadeva Raya, the King of Vijayanagar, was not only an accomplished scholar himself but was also a great patron of learning and literature. Discuss.",
"WordLimit": 250,
"Marks": 15
},
{
"Id": 109,
"Paper": "GS-I",
"Year": 2018,
"Question": "Explain how the Uprising of 1857 constitutes an important watershed in the evolution of British policies towards colonial India.",
"WordLimit": 250,
"Marks": 15
},
{
"Id": 110,
"Paper": "GS-I",
"Year": 2018,
"Question": "Discuss the role of women in the freedom struggle especially during the Gandhian phase.",
"WordLimit": 250,
"Marks": 15
},
{
"Id": 111,
"Paper": "GS-I",
"Year": 2018,
"Question": "Highlight the differences in the approach of Subhash Chandra Bose and Mahatma Gandhi in the struggle for freedom.",
"WordLimit": 150,
"Marks": 10
},
{
"Id": 112,
"Paper": "GS-I",
"Year": 2018,
"Question": "Has the formation Of linguistic States strengthened the cause of Indian Unity?",
"WordLimit": 150,
"Marks": 10
},
{
"Id": 113,
"Paper": "GS-I",
"Year": 2018,
"Question": "The anti-colonial struggles in West Africa were led by the new elite of Western-educated Africans. Examine.",
"WordLimit": 150,
"Marks": 10
},
{
"Id": 114,
"Paper": "GS-I",
"Year": 2018,
"Question": "To what extent globalization has influenctxl the core Of cultural diversity in India? Explain.",
"WordLimit": 150,
"Marks": 10
},
{
"Id": 115,
"Paper": "GS-I",
"Year": 2018,
"Question": "\"An essential condition to eradicate poverty is to liberate the poor from the process of deprivation.\" Substantiate this statement with suitable examples.",
"WordLimit": 250,
"Marks": 15
},
{
"Id": 116,
"Paper": "GS-I",
"Year": 2018,
"Question": "Why are the tribals in India referred to as the Scheduled Tribes? Indicate the major provisions enshrined in the Constitution of India for their upliftment.",
"WordLimit": 250,
"Marks": 15
},
{
"Id": 117,
"Paper": "GS-I",
"Year": 2018,
"Question": "With a brief background of quality of urban life in India, introduce the objectives and of the 'Smart City Programme'.",
"WordLimit": 250,
"Marks": 15
},
{
"Id": 118,
"Paper": "GS-I",
"Year": 2018,
"Question": "What is the basis of regionalism? Is it that unequal distribution of benefits of development on regional basis eventually promotes regionalism? Substantiate your answer.",
"WordLimit": 250,
"Marks": 15
},
{
"Id": 119,
"Paper": "GS-I",
"Year": 2017,
"Question": "“The Himalayas are highly prone to landslides.” Discuss the causes and suggest suitable measures of mitigation.",
"WordLimit": 150,
"Marks": 10
},
{
"Id": 120,
"Paper": "GS-I",
"Year": 2017,
"Question": "Discuss the concept of air mass and explain its role in macro-climatic changes.",
"WordLimit": 150,
"Marks": 10
},
{
"Id": 121,
"Paper": "GS-I",
"Year": 2017,
"Question": "With a brief background of quality of urban life in India, introduce the objectives and strategy of the ‘Smart City Programme’.",
"WordLimit": 150,
"Marks": 10
},
{
"Id": 122,
"Paper": "GS-I",
"Year": 2017,
"Question": "Major cities of India are becoming more vulnerable to flood conditions. Discuss.",
"WordLimit": 150,
"Marks": 10
},
{
"Id": 123,
"Paper": "GS-I",
"Year": 2017,
"Question": "The ancient civilization in Indian sub-continent differed from those of Egypt, Mesopotamia and Greece in that its culture and traditions have been preserved without a breakdown to the present day. Comment.",
"WordLimit": 150,
"Marks": 10
},
{
"Id": 124,
"Paper": "GS-I",
"Year": 2017,
"Question": "Mesolithic rock cut architecture of India not only reflects the cultural life of the times but also a fine aesthetic sense comparable to modern painting. Critically evaluate this comment.",
"WordLimit": 150,
"Marks": 10
},
{
"Id": 125,
"Paper": "GS-I",
"Year": 2017,
"Question": "How different would have Eren the achievement of Indian independence without Mahatma Gandhi ? Discuss.",
"WordLimit": 250,