-
Notifications
You must be signed in to change notification settings - Fork 98
/
Copy pathCollege_data.csv
We can't make this file beautiful and searchable because it's too large.
6789 lines (6789 loc) · 645 KB
/
College_data.csv
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
College_Name,State,Stream,UG_fee,PG_fee,Rating,Academic,Accommodation,Faculty,Infrastructure,Placement,Social_Life
Indian Institute of Technology Madras ,Tamil nadu,Engineering,"75,116","23,070",8.7,9,7.9,8.7,8.8,8.8,9
"College of Engineering, Anna University ",Tamil nadu,Engineering,"50,000","50,000",8.4,8.7,7.7,8.1,8.7,8.3,8.7
"NIT Trichy, Tiruchirappalli ",Tamil nadu,Engineering,"1,49,250","99,250",8.5,8.6,7.8,8.2,8.7,8.8,8.7
Vellore Institute of Technology ,Tamil nadu,Engineering,"1,98,000","1,83,000",8.3,8.3,8,7.8,8.9,8.5,8.5
"SRM Engineering College, Kanchipuram ",Tamil nadu,Engineering,"2,60,000","1,70,000",7.2,6.5,6.6,6.9,7.6,7.1,8.3
SSN College of Engineering ,Tamil nadu,Engineering,"50,000","50,000",8.6,8.9,7.6,8.7,9.1,8.3,8.8
"SASTRA University, Thanjavur ",Tamil nadu,Engineering,"1,67,000","1,57,000",8.1,8.5,7,8.2,8.3,8.7,8.1
P.S.G College of Technology ,Tamil nadu,Engineering,"87,000","1,54,000",9,9.2,8.7,8.9,9,9.1,8.8
Thiagarajar College of Engineering ,Tamil nadu,Engineering,"50,000","50,000",8.6,8.9,7.9,8.6,8.6,8.7,8.6
Coimbatore Institute of Technology ,Tamil nadu,Engineering,"23,670","1,32,710",8,8.5,6.8,8.2,7.4,8.4,8.5
Karunya Institute of Technology and Sciences ,Tamil nadu,Engineering,"2,13,500","1,21,500",7.9,7.9,7.9,7.9,8.5,7.5,7.4
Kumaraguru College of Technology ,Tamil nadu,Engineering,"50,000","50,000",8.2,8.3,7.6,8,8.8,7.9,8.5
"VEL Tech, Chennai ",Tamil nadu,Engineering,"50,000",--,8.2,8.5,8.5,8.1,7.8,8.3,8.1
"Mepco Schlenk Engineering College, Sivakasi ",Tamil nadu,Engineering,"1,34,000","1,04,150",8.1,8.5,8.1,8.3,8.6,7.9,7
Government College of Technology ,Tamil nadu,Engineering,"9,180","10,110",8.1,8.4,7.1,8.3,8,8,8.8
Hindustan Institute of Technology and Science ,Tamil nadu,Engineering,"2,29,500","1,25,500",7.6,7.8,6.9,7.8,7.9,6.9,8
Sri Krishna College of Engineering and Technology ,Tamil nadu,Engineering,"50,000","50,000",8.1,8.2,7.4,8.2,9,8.2,7.7
Kongu Engineering College ,Tamil nadu,Engineering,"60,000","65,000",8.3,8.3,7.7,8.3,8.9,8.3,8.3
Bannari Amman Institute of Technology ,Tamil nadu,Engineering,"60,000","35,000",8.3,8.2,8.1,8,9.1,8.1,8.2
"Sona College of Technology, Salem ",Tamil nadu,Engineering,"2,00,000","2,29,000",8.1,8.5,7.3,8.3,8.3,7.9,8.5
Tamil Nadu Veterinary and Animal Sciences University ,Tamil nadu,Engineering,"21,415","33,325",8.3,8.4,8,8.4,8.2,8.2,8.4
"St. Joseph College Of Engineering, Kanchipuram ",Tamil nadu,Engineering,"60,000","65,000",8,7,--,--,9,8,--
Saveetha Engineering College ,Tamil nadu,Engineering,"85,000","60,000",8,8.1,7.3,8.1,8.6,7.7,7.9
"Sri Sairam Engineering College, Chennai ",Tamil nadu,Engineering,"50,000","25,000",7.7,8.4,7.3,7.9,8.2,7.9,6.7
B.S. Abdur Rahman Crescent Institute of Science ,Tamil nadu,Engineering,"85,000","40,000",8.2,8.4,7.8,8.3,8.7,7.7,8.2
Sri Ramakrishna Engineering College ,Tamil nadu,Engineering,"55,000","60,000",8.1,8.4,7.7,8,8.3,8.3,8
Rajalakshmi Engineering College ,Tamil nadu,Engineering,"50,000","50,000",7.8,8.1,6.3,8.1,8,8.3,7.7
Sri Venkateswara College of Engineering ,Tamil nadu,Engineering,"65,000","60,000",8.2,8.4,7.4,8.4,8.6,8.1,8
IIT Bombay ,Maharashtra,Engineering,"2,28,000","32,000",8.9,9.3,7.9,8.7,8.9,9.1,9.2
Institute of Chemical Technology ,Maharashtra,Engineering,"85,350","70,750",8.7,9.1,8.1,8.9,8.7,8.4,9.1
Visvesvaraya National Institute of Technology ,Maharashtra,Engineering,"1,49,200","93,600",8.1,8.3,7.5,8,8.4,7.7,8.7
College of Engineering ,Maharashtra,Engineering,"40,500","64,500",8.6,8.7,8.2,8.1,8.5,8.7,9.1
Defence Institute of Advanced Technology ,Maharashtra,Engineering,"1,53,600","45,000",8.8,9,8.6,8.8,9,8.6,8.6
National Institute of Industrial Engineering ,Maharashtra,Engineering,"5,98,000","1,04,000",9,9,9,9,9,9.3,8.6
Army Institute of Technology ,Maharashtra,Engineering,"1,80,197","1,20,560",8.3,8,8.5,7.6,7.9,8.7,9
Bharati Vidyapeeth Deemed University ,Maharashtra,Engineering,"1,20,000","50,000",7.8,8.1,6.8,7.9,8.1,7.7,8.2
Veermata Jijabai Technological Institute ,Maharashtra,Engineering,"84,051","83,734",7.9,8.2,7.2,7.8,7.1,8.7,8.4
GH Raisoni College of Engineering ,Maharashtra,Engineering,"5,60,000","1,32,000",8.4,8.5,8,8.4,8.5,8,8.8
Mukesh Patel School of Technology Management and ,Maharashtra,Engineering,"4,52,000","5,01,500",8.2,8.1,8,7.8,8.7,8.1,8.3
Sardar Patel Institute of Technology ,Maharashtra,Engineering,"1,70,000","1,68,000",8.1,8.4,6.9,7.9,8.3,9.1,8.1
Shri Ramdeobaba College of Engineering and Management ,Maharashtra,Engineering,"1,45,000","1,25,000",8.1,8.3,7.6,8,7.9,8.3,8.2
Rashtrasant Tukadoji Maharaj Nagpur University ,Maharashtra,Engineering,"33,600","60,000",7.5,8,7.2,7.7,7.9,6.9,7.4
Yeshwantrao Chavan College of Engineering ,Maharashtra,Engineering,"1,51,801","1,53,328",7.6,7.7,7,7.6,8.2,7.2,7.6
Walchand College of Engineering ,Maharashtra,Engineering,"84,935","96,550",8.3,8.4,7.3,8.3,8.4,8.8,8.4
MIT World Peace University ,Maharashtra,Engineering,"3,10,000","1,90,000",8,8.1,7,8,8.5,7.7,8.4
Vishwakarma Institute of Information Technology ,Maharashtra,Engineering,"1,64,000","78,000",7.8,8.2,6.8,8.1,7.4,8,8.1
Ramrao Adik Institute of Technology ,Maharashtra,Engineering,"3,25,000","1,50,000",8.6,8.2,8,8.1,9,8.7,9.3
Sardar Patel College of Engineering ,Maharashtra,Engineering,"1,70,000","1,68,000",8,8.3,7.2,7.9,8,8.1,8.2
K. J. Somaiya College of Engineering ,Maharashtra,Engineering,"2,86,000","1,96,800",8.2,8.2,8,7.7,8.7,8,8.5
Pimpri Chinchwad College of Engineering ,Maharashtra,Engineering,"1,38,559","1,07,687",8.1,8.7,7.6,8.1,7.9,8.6,7.5
"MKSSS's Cummins College of Engineering for Women, ",Maharashtra,Engineering,"1,80,836","1,55,200",8.3,8.3,8,8.1,7.8,9,8.6
Dwarkadas J Sanghvi College of Engineering ,Maharashtra,Engineering,"1,94,000","1,39,000",8.2,8.2,7.7,8.2,8.4,8.3,8.2
Thakur College of Engineering and Technology ,Maharashtra,Engineering,"1,47,500","1,36,931",8.2,8.1,8,7.9,9.1,7.9,8.4
SVKM's Narsee Monjee Institute of Management Studies ,Maharashtra,Engineering,"3,02,000",--,8.2,8.5,6.8,8.6,8.3,8.3,8.7
"Amity University, Mumbai ",Maharashtra,Engineering,"2,22,000","1,50,000",8.1,7.9,7.6,8.2,8.4,7.8,8.6
"Vishwakarma Institute of Technology, Pune ",Maharashtra,Engineering,"1,79,895","88,765",7.5,8.1,6.5,7.9,6.5,7.8,8.4
Indian Institute of Information Technology ,Maharashtra,Engineering,"2,34,500","1,00,500",7.8,8.2,7.5,8,7.2,8.4,7.5
Tata Institute of Social Sciences ,Maharashtra,Engineering,--,--,8.6,9,8.1,8.9,8.6,8.4,8.6
Indian Institute of Technology ,Uttar pradesh,Engineering,"2,15,600","2,14,050",8.9,9.1,8.4,8.7,9.3,8.9,9.1
Indian Institute of Technology ,Uttar pradesh,Engineering,"84,981","36,815",8.5,8.5,8.2,8.1,7.6,9.1,9.2
"Amity University, Noida ",Uttar pradesh,Engineering,"3,11,000","1,40,000",8.2,8,7.9,8.1,8.9,7.6,8.7
Aligarh Muslim University ,Uttar pradesh,Engineering,"2,69,445","4,30,970",8.3,8.8,7.9,8.5,8.8,7.2,8.6
MNNIT Allahabad ,Uttar pradesh,Engineering,"84,666","1,18,000",8,8.4,7.3,7.8,7.1,8.9,8.2
Jaypee Institute of Information Technology University ,Uttar pradesh,Engineering,"2,36,500","1,20,000",7.8,7.8,7.7,7.3,8.2,7.8,7.7
Indian Institute of Information Technology ,Uttar pradesh,Engineering,"1,04,000","2,80,400",8.3,8.4,7.4,7.6,9,9.2,8.1
"Dayalbagh Educational Institute Faculty of Engineering, Agra ",Uttar pradesh,Engineering,"51,300","26,500",8,8.3,7.1,8.5,8.1,8.2,8
Sharda University ,Uttar pradesh,Engineering,"1,63,770","97,850",7.9,7.7,7.6,7.9,8.6,6.9,8.6
Galgotias University ,Uttar pradesh,Engineering,"1,59,000","45,000",7.6,7.9,6.9,7.9,7.5,7.7,7.8
"Bennett University, Greater Noida ",Uttar pradesh,Engineering,"3,50,000","60,000",8.6,8.5,7.9,8.8,9.2,8.3,8.6
Shiv Nadar University ,Uttar pradesh,Engineering,"2,00,000","1,60,000",9,8.8,8.7,8.8,9.6,8.5,9.4
"Integral University, Lucknow ",Uttar pradesh,Engineering,"1,40,000","80,000",7.4,7.6,7.3,7.4,8,6.5,7.4
J.S. University ,Uttar pradesh,Engineering,"47,500","13,500",8.5,8.5,7.8,8.7,9,8.2,8.6
"GLA University, Mathura ",Uttar pradesh,Engineering,"1,78,000","75,000",8.2,8.2,7.9,8.3,8.3,8.2,8.1
Institute of Engineering and Technology ,Uttar pradesh,Engineering,"89,775","73,200",7.4,7.6,7.7,7,7.3,7,7.8
Sanskriti University ,Uttar pradesh,Engineering,"1,15,000","45,000",7,7.2,6.7,7,7.5,6.9,6.8
"Monad University, Hapur ",Uttar pradesh,Engineering,"1,51,000","35,500",8,7.6,7.4,8.5,8,8.2,8.1
Indian Institute of Information Technology ,Uttar pradesh,Engineering,"2,18,700","2,18,700",7.8,7.6,7.2,7.4,6.8,9.4,8.1
"IFTM University, Moradabad ",Uttar pradesh,Engineering,"1,07,000","75,000",7.8,7.9,7.5,8.1,8,6.8,8.3
"Shobhit University, Meerut ",Uttar pradesh,Engineering,"1,11,200","1,22,400",7.8,8.4,7.3,7.8,8.3,7,7.9
"Glocal University, Saharanpur ",Uttar pradesh,Engineering,"1,44,000","94,000",7.1,7.5,6.9,7,6.7,7.2,7.3
"Rama University, Kanpur ",Uttar pradesh,Engineering,"90,000","75,000",6.7,6.6,6.1,7.3,6.5,6.6,7.1
Noida Institute of Engineering and Technology ,Uttar pradesh,Engineering,"6,14,000","2,13,000",7.6,8.1,7.1,8,7.6,7.8,7.1
"ABES Engineering College, Ghaziabad ",Uttar pradesh,Engineering,"1,43,700","1,30,000",7.9,8.1,7.2,8.1,8.2,7.8,8
Bundelkhand Institute of Engineering & Technology ,Uttar pradesh,Engineering,"61,800","59,300",7.1,7.3,7,6.9,7.4,6.2,8
Harcourt Butler Technological University ,Uttar pradesh,Engineering,"1,35,000","83,300",7.3,7.5,6.9,7.4,6.5,7.8,7.8
Rajiv Gandhi Institute of Petroleum Technology ,Uttar pradesh,Engineering,"2,21,100","42,100",8.6,8.7,8.6,8.2,9.2,8.2,8.6
Indian Institute of Technology ,Delhi ncr,Engineering,"2,20,300","1,32,900",8.7,9,7.8,8.7,8.9,9,9
"Jamia Millia Islamia University-[JMI], New Delhi ",Delhi ncr,Engineering,"16,150","8,970",8,8.4,7.6,8.3,8.4,7.2,8.2
Delhi Technological University ,Delhi ncr,Engineering,"1,90,000","1,66,000",8.2,7.9,7.6,7.5,8.6,8.6,8.8
"Amity University, Noida ",Delhi ncr,Engineering,"3,11,000","1,40,000",8.2,8,7.9,8.1,8.9,7.6,8.7
Indraprastha Institute of Information Technology ,Delhi ncr,Engineering,"3,60,000","1,00,000",8.7,8.8,8.7,8.9,8.9,8.6,8.2
Guru Gobind Singh Indraprastha University ,Delhi ncr,Engineering,"1,17,200","23,000",7.8,8.1,7.5,8,8.1,6.9,8.1
Jaypee Institute of Information Technology University ,Delhi ncr,Engineering,"2,36,500","1,20,000",7.8,7.8,7.7,7.3,8.2,7.8,7.7
National Institute of Food Technology Entrepreneurship and ,Delhi ncr,Engineering,"1,71,550","1,52,950",8.1,8.5,7.1,6.9,9.4,8.5,7.9
"School of Engineering and Technology, NCU ",Delhi ncr,Engineering,"2,60,000","82,000",9,9,--,--,9,--,--
"J.C. Bose University Of Science And Technology, ",Delhi ncr,Engineering,"83,625","83,625",7.3,7.7,6.5,7.4,6.6,7.7,7.6
Indira Gandhi Delhi Technical University For Women ,Delhi ncr,Engineering,"88,000","33,000",7.6,7.7,7,7.6,6.9,8.3,7.9
Manav Rachna International Institute Of Research And ,Delhi ncr,Engineering,"1,81,500","1,16,000",7.2,7.1,6.7,6.5,8.4,6.5,7.8
Sharda University ,Delhi ncr,Engineering,"1,63,770","97,850",7.9,7.7,7.6,7.9,8.6,6.9,8.6
Galgotias University ,Delhi ncr,Engineering,"1,59,000","45,000",7.6,7.9,6.9,7.9,7.5,7.7,7.8
Netaji Subhas University of Technology ,Delhi ncr,Engineering,"1,90,000","1,20,000",7.8,7.9,7.1,7.6,7.6,8.9,7.9
Shiv Nadar University ,Delhi ncr,Engineering,"2,00,000","1,60,000",9,8.8,8.7,8.8,9.6,8.5,9.4
Manav Rachna International Institute of Research and ,Delhi ncr,Engineering,"1,81,500","1,65,000",7.5,7.4,7.3,7.5,8.3,6.6,7.6
National Institute of Technology ,Delhi ncr,Engineering,"96,866","1,98,500",6.8,7.3,6,7.1,6,7.6,6.8
"Gurugram University, Gurgaon ",Delhi ncr,Engineering,"40,000",--,8.2,8.6,7.4,8.4,8.6,8,8.1
Chhotu Ram Rural Institute Of Technology ,Delhi ncr,Engineering,"33,450","33,450",8.4,8.7,8.1,8.4,8.7,8.1,8.2
SunRise University ,Delhi ncr,Engineering,"72,200","32,200",8.1,8.1,7.3,8.7,8.1,7.9,8.4
"Monad University, Hapur ",Delhi ncr,Engineering,"1,51,000","35,500",8,7.6,7.4,8.5,8,8.2,8.1
"Amity University, Gurgaon ",Delhi ncr,Engineering,"2,30,000","1,56,000",7.7,7.8,7.1,7.6,8.6,7.1,8.1
"Shobhit University, Meerut ",Delhi ncr,Engineering,"1,11,200","1,22,400",7.8,8.4,7.3,7.8,8.3,7,7.9
Indraprastha Institute of Technology and Management ,Delhi ncr,Engineering,"1,25,000",--,8.3,8.3,8,8.7,7.8,8.7,8.5
Maharaja Agrasen Institute of Technology ,Delhi ncr,Engineering,"1,43,200",--,7.5,7.8,7.2,7.7,7.5,7.5,7.4
Maharaja Surajmal Institute of Technology ,Delhi ncr,Engineering,"1,35,300",--,7.3,7.9,6.7,7.5,6.8,7.7,7.1
Noida Institute of Engineering and Technology ,Delhi ncr,Engineering,"6,14,000","2,13,000",7.6,8.1,7.1,8,7.6,7.8,7.1
K L University ,Andhra pradesh,Engineering,"2,50,000","1,45,000",8.3,8.5,7.6,8.3,8.8,8.3,8.2
"Andhra University, College of Engineering ",Andhra pradesh,Engineering,"10,000","1,09,000",7.7,8.2,6.9,7.8,8,7.2,7.9
"Sri Venkateswara University College of Engineering, Tirupati ",Andhra pradesh,Engineering,"16,395","31,647",7.8,7.6,8.4,7.4,8.1,6.9,8.1
"Vignan’s Foundation for Science, Technology, and Research, ",Andhra pradesh,Engineering,"2,50,000","1,10,000",8.2,8.2,8.4,8.5,8.2,7.7,8.4
"JNTUK University College of Engineering, Kakinada, East ",Andhra pradesh,Engineering,"10,000","30,000",7.7,8,7.1,7.8,8.2,7,8.3
Sree Vidyanikethan Engineering College ,Andhra pradesh,Engineering,"2,80,000","76,850",8.5,8.4,8.5,8.3,8.8,8.4,8.6
G. Pulla Reddy Engineering College ,Andhra pradesh,Engineering,"80,000","80,000",8.3,8.5,7.7,8.5,8.5,8.2,8.4
Sri Venkateswara College of Engineering and Technology ,Andhra pradesh,Engineering,"89,350","75,000",7.9,8.3,7.9,8,8.2,7.3,7.5
Velagapudi Ramakrishna Siddhartha Engineering College ,Andhra pradesh,Engineering,"71,050","70,000",8.2,8.6,7.6,8.4,8.4,8.2,8.1
Shri Vishnu Engineering College for Women ,Andhra pradesh,Engineering,"95,000","55,000",8.8,8.7,8.6,8.5,9.3,8.8,9
"JNTUA College of Engineering, Ananthapur ",Andhra pradesh,Engineering,"25,000","38,750",7,7.1,7.3,6.7,7.5,6.3,7.3
Sagi Ramakrishnam Raju Engineering College ,Andhra pradesh,Engineering,"30,000","57,000",8.2,8.5,7.5,8.4,8.3,8.2,8.3
Gayatri Vidya Parishad College of Engineering ,Andhra pradesh,Engineering,"2,76,000","1,00,000",7.7,8.3,6.8,8,7.3,8.1,7.4
Jawaharlal Nehru Technological University ,Andhra pradesh,Engineering,"1,00,000",--,7.4,7.7,6.8,7.1,7.7,7.1,7.8
Indian Institute of Technology ,Andhra pradesh,Engineering,"16,950","78,218",8.6,9,8.1,8.8,8.7,8.2,8.9
Prasad V. Potluri Siddhartha Institute of Technology ,Andhra pradesh,Engineering,"2,80,000","1,40,000",7.9,8.1,7.3,8.1,8.1,7.9,7.8
Centurion University of Technology and Management ,Andhra pradesh,Engineering,"1,25,000","60,000",7.8,8,7.2,8.3,7.6,7.4,8.3
Aditya Engineering College ,Andhra pradesh,Engineering,"72,000","29,500",7.8,7.9,7.4,7.8,8.5,7.4,7.9
Bapatla Engineering College ,Andhra pradesh,Engineering,"75,000","90,000",7.5,7.8,7.3,7.7,8.2,6.5,7.7
Gudlavalleru Engineering College ,Andhra pradesh,Engineering,"81,600","74,850",8.2,8.5,7.7,8.4,8.7,7.5,8.1
Sri Venkateswara College of Engineering ,Andhra pradesh,Engineering,"80,000","75,000",8.3,8.3,8,8.1,9,7.8,8.5
Sri Vasavi Engineering College ,Andhra pradesh,Engineering,"1,89,000","60,850",7.9,8.1,7.4,8,8.3,7.6,7.8
Indian Institute of Information Technology Sri City ,Andhra pradesh,Engineering,"1,03,000","2,71,000",7,7.9,6.4,7.1,6.9,7.3,6.4
National Institute of Technology ,Andhra pradesh,Engineering,"1,87,500","1,00,000",7.2,7.9,6.6,7.5,6.9,6.9,7.2
"Rajiv Gandhi University of Knowledge Technologies -[RGUKT], ",Andhra pradesh,Engineering,"39,000","96,000",8.2,8.4,7.6,8.1,8.9,7.7,8.5
Raghu Engineering College ,Andhra pradesh,Engineering,"85,000","57,000",8.1,8.3,7.1,8.1,8.4,8.5,8
Indian Institute of Information Technology Design and ,Andhra pradesh,Engineering,"1,44,600","67,500",7.4,7.9,7.6,8,6.7,7.2,7.2
Rajeev Gandhi Memorial College of Engineering and ,Andhra pradesh,Engineering,"69,100","62,800",7.4,7.8,7.2,7.6,8,6.2,7.4
VIT University ,Andhra pradesh,Engineering,"1,98,000","1,93,000",8.2,8.3,7.9,8.3,8.1,8.4,8.1
National Institute of Technology ,Karnataka,Engineering,"1,52,730","1,00,355",8.4,8.7,7.2,8.2,8.4,8.9,8.9
Manipal Institute of Technology ,Karnataka,Engineering,"3,35,000","2,10,000",8.7,8.5,8.5,8.1,9.4,8.1,9.3
R V College of Engineering ,Karnataka,Engineering,"3,50,000","37,700",8.5,8.7,7.9,8.2,8.6,9,8.4
Ramaiah Institute of Technology ,Karnataka,Engineering,"86,226","96,570",8.4,8.5,7.8,8.3,8.7,8.3,8.6
International Institute of Information Technology ,Karnataka,Engineering,"1,64,000","3,24,000",8.7,9.2,8.5,9.1,8.8,8.9,7.6
BMS College of Engineering ,Karnataka,Engineering,"2,29,110","26,800",8.2,8.4,8,8,8,8.3,8.7
Siddaganga Institute of Technology ,Karnataka,Engineering,"79,475","92,975",7.8,8.1,7.2,7.7,8.1,8,7.6
New Horizon College of Engineering ,Karnataka,Engineering,"2,50,000","75,000",8,8,7.6,8.1,8.3,7.8,8.2
"Faculty of Engineering and Technology, Jain University ",Karnataka,Engineering,"1,97,500","85,000",8.1,8,7.9,8,8.3,7.7,8.5
Sri Jayachamarajendra College of Engineering ,Karnataka,Engineering,"4,75,000","1,40,000",8.3,8.4,7.6,7.8,8.5,8.7,8.6
Dayananda Sagar College of Engineering ,Karnataka,Engineering,"96,106","2,92,720",8,8,7.4,7.7,8.8,7.7,8.3
NMAM Institute of Technology ,Karnataka,Engineering,"1,63,000","83,220",7.9,8,7.5,8.2,8.1,7.5,7.9
Nitte Meenakshi Institute of Technology ,Karnataka,Engineering,"58,806","65,390",7.8,8.1,7.1,7.9,7.8,7.6,8.1
PES University ,Karnataka,Engineering,"3,40,000","2,00,000",8,8.5,7.7,8.1,8.1,8.1,7.6
BMS Institute of Technology and Management ,Karnataka,Engineering,"3,50,000",--,7.9,8.2,7.7,8,7.7,7.9,7.7
"KLE Technological University, Hubli ",Karnataka,Engineering,"15,000","40,000",8.4,8.5,7.6,8.2,9.1,8.4,8.4
Dr. Ambedkar Institute of Technology ,Karnataka,Engineering,"30,200","37,500",7.2,7.7,6.8,7.5,7.5,6.7,7.2
PES College of Engineering ,Karnataka,Engineering,"76,800","74,450",7.7,7.9,6.7,7.7,8.5,7.3,8
CMR Institute of Technology ,Karnataka,Engineering,"2,50,000","1,40,000",7.9,8.2,7.3,7.9,8.3,7.7,8
The National Institute of Engineering ,Karnataka,Engineering,"44,090","55,590",8.1,8.5,7.6,8.3,7.8,8.4,7.9
"Alliance College of Engineering and Design, Bangalore ",Karnataka,Engineering,"2,25,000","1,50,000",7.2,7.3,7.1,6.5,8.7,6.5,7.2
Basaveshwar Engineering College ,Karnataka,Engineering,"65,340","60,000",7.7,8.1,7.9,8.1,8.1,6.6,7.2
"Christ University, Bangalore ",Karnataka,Engineering,"1,70,000","35,000",8.3,8.5,7.4,8.2,8.9,8.1,8.8
Manipal Academy of Higher Education ,Karnataka,Engineering,"3,35,000","2,10,000",8.4,8.5,8.2,8.6,8.8,7.8,8.4
Indian Institute of Science ,Karnataka,Engineering,"29,200","35,200",9,9.6,8.5,9.4,9.5,8.4,8.4
"REVA University, Bangalore ",Karnataka,Engineering,"2,25,000","5,00,000",8.4,8.3,8.1,8.3,9.3,7.8,8.4
"Alliance University, Bangalore ",Karnataka,Engineering,"6,25,000","1,50,000",8,8.2,7.2,8.2,8.8,7.6,8
"Presidency University, Bangalore ",Karnataka,Engineering,"2,10,000","90,000",8.3,8.2,7.6,8.6,8.8,8.2,8.3
Indian Institute of Technology ,Telangana,Engineering,"2,22,995","5,00,895",8.5,8.7,8,8.7,8.5,8.3,8.6
National Institute of Technology ,Telangana,Engineering,"1,30,000","75,000",8.4,8.6,7.9,8.2,8.5,8.6,8.4
International Institute of Information Technology ,Telangana,Engineering,"3,00,000","1,50,000",8.3,9,8.2,8.5,7.8,9.2,6.9
Jawaharlal Nehru Technological University ,Telangana,Engineering,"12,500","18,000",8,8.3,7.7,7.8,8.3,7.6,8.3
"University College of Engineering, Osmania University ",Telangana,Engineering,"27,770","39,770",8.6,9,8.5,8.5,8.6,8.4,8.4
Chaitanya Bharathi Institute of Technology ,Telangana,Engineering,"1,34,000","1,51,600",8.2,8.5,7.1,8.4,8.3,8.6,8.5
Vallurupalli Nageswara Rao Vignana Jyothi Institute of ,Telangana,Engineering,"1,31,000","1,41,700",8.4,8.4,8.1,8.2,8.5,8.4,8.5
"CVR College of Engineering, Ibrahimpatnam, Rangareddi ",Telangana,Engineering,"1,21,650","72,500",8.3,8.6,8.1,8.5,8.2,8.6,7.7
Institute of Aeronautical Engineering ,Telangana,Engineering,"90,000","70,000",8.3,8.4,8.5,8.2,8.5,8,8.2
BV Raju Institute of Technology ,Telangana,Engineering,"1,20,000","70,000",8.5,8.6,8.2,8.3,8.9,8.4,8.7
Vardhaman College of Engineering ,Telangana,Engineering,"1,25,000","57,000",8.1,8.2,8.2,8.2,8.5,8.1,7.6
"Anurag University, Hyderabad ",Telangana,Engineering,"1,35,500","66,500",8.3,8.5,7.5,8.2,8.9,8,8.4
Vasavi College of Engineering ,Telangana,Engineering,"1,30,000","1,00,000",8,8.6,6.7,8.3,8,8.8,7.5
Gokaraju Rangaraju Institute of Engineering and Technology ,Telangana,Engineering,"1,22,000","75,000",8,8.3,7.3,7.9,8.5,8.1,7.6
Kakatiya Institute of Technology & Science ,Telangana,Engineering,"1,25,960","74,550",8.2,8.3,7.9,8.4,8.3,7.9,8.4
K L University ,Telangana,Engineering,"2,65,000","1,20,000",7.9,7.9,7.4,8.1,8.2,7.6,8.1
Birla Institute of Technology and Science ,Telangana,Engineering,"4,23,475","4,69,475",9,9,8.4,8.8,9.4,9.1,9.4
Mahatma Gandhi Institute of Technology ,Telangana,Engineering,"1,08,000",--,7.8,8.1,7.2,8.1,8.1,7.3,7.8
Malla Reddy Engineering College ,Telangana,Engineering,"1,03,000","57,000",7.4,7.7,7.1,7.4,7.8,7.1,7.5
Malla Reddy College of Engineering ,Telangana,Engineering,"72,000",--,7,7.5,7.2,7,6.8,6.5,7.2
Indian Institute of Chemical Technology ,Telangana,Engineering,--,--,7.7,7,7,8.3,8,7.7,7.9
Sreenidhi Institute of Science and Technology ,Telangana,Engineering,"5,20,000","2,10,000",7.6,7.8,6.9,7.5,7.8,7.7,7.6
"Mahindra University, Hyderabad ",Telangana,Engineering,"4,70,000","70,000",8.8,9.1,8.6,9,9.1,7.8,8.9
"St Martin's Engineering College, Secunderabad ",Telangana,Engineering,"80,000",--,7.7,7.9,6.8,7.8,7.9,7.7,8.2
MLR Institute of Technology ,Telangana,Engineering,"96,000","57,000",8.3,8.3,8.4,8.1,8.8,8,8.4
Keshav Memorial Institute of Technology ,Telangana,Engineering,"1,11,500",--,8.2,8.7,6.7,8.6,8.1,9,8.3
Vaagdevi College of Engineering ,Telangana,Engineering,"86,000",--,7.8,8,7.4,8,8,7.5,8
CMR Engineering College ,Telangana,Engineering,"75,000","57,000",8.8,8.9,8.4,8.7,9.2,9,8.4
"Matrusri Engineering College, Hyderabad ",Telangana,Engineering,"90,000",--,7,7.6,5.7,7.2,7.6,7,6.7
Indian Institute of Technology ,Madhya pradesh,Engineering,"2,28,700","50,800",8,8.4,7.6,8.1,7.7,7.8,8.4
Maulana Azad National Institute of Technology ,Madhya pradesh,Engineering,"64,939","1,04,275",7.8,7.8,7.5,7.5,7.6,8.1,8.5
Indian Institute of Information Technology Design and ,Madhya pradesh,Engineering,"1,37,580","71,000",7.9,8.2,7.5,8,8.1,7.5,8.3
Atal Bihari Vajpayee Indian Institute of Information ,Madhya pradesh,Engineering,"75,070","1,42,250",7.6,7.5,7,7.1,8.2,7.7,8
"VIT Bhopal University, Bhopal ",Madhya pradesh,Engineering,"1,98,000","1,93,000",7.9,8.6,7.7,8.4,7.1,8.1,7.4
"RKDF University, Bhopal ",Madhya pradesh,Engineering,"55,000","35,000",7.6,8,7,7.8,8,6.5,8.2
Awadhesh Pratap Singh University ,Madhya pradesh,Engineering,"40,000",--,7.1,7.9,6.5,8.1,7.2,5.3,7.3
"University Institute of Technology, Rajiv Gandhi Proudyogiki ",Madhya pradesh,Engineering,"23,920","62,735",6.9,7.2,6.5,6.6,7.6,6.3,6.9
Institute of Information Technology & Management ,Madhya pradesh,Engineering,"77,000","60,000",8.5,8.7,8,8.4,8.6,8.5,8.5
"Institute of Engineering and Technology, Devi Ahilya ",Madhya pradesh,Engineering,"82,961","71,100",7.7,7.9,6.6,7.3,7.4,8.4,8.4
Acropolis Institute of Technology & Research ,Madhya pradesh,Engineering,"75,100","25,500",7.8,7.9,7,7.8,7.8,8,8.1
"Indian Institute of Information Technology -[IIIT], Bhopal ",Madhya pradesh,Engineering,"1,79,500",--,6,6.4,5.3,6.1,6.5,5,6.8
Jaypee University of Engineering and Technology ,Madhya pradesh,Engineering,"1,89,500","96,500",7.9,7.8,7.9,7.5,8.9,7.4,7.6
Oriental University ,Madhya pradesh,Engineering,"65,000","30,000",7.2,7.5,6.7,7.2,7.7,7.1,7.1
"Amity University, Gwalior ",Madhya pradesh,Engineering,"1,64,000","64,000",8.6,8.8,8.5,8.4,9.3,8,8.3
AKS University ,Madhya pradesh,Engineering,"60,000","46,000",7.3,7.8,5.9,8.2,7.6,6.9,7.4
Jagran Lakecity University ,Madhya pradesh,Engineering,"1,15,000","75,000",8,8,7.9,7.8,8.6,7.4,8.1
Jabalpur Engineering College ,Madhya pradesh,Engineering,"22,300","10,000",7.2,7.5,6.4,7.4,6.9,7.4,7.3
"Swami Vivekanand University, Sagar ",Madhya pradesh,Engineering,"44,000","32,000",6.3,6.9,5,7,6.4,5.6,6.6
"Acropolis Group of Institutions, Indore ",Madhya pradesh,Engineering,"73,600","60,000",8.7,8.5,8.5,8.7,9,8.6,8.6
LNCT University ,Madhya pradesh,Engineering,"80,000","65,000",9,9,8.8,9.3,8.8,8.9,8.9
"Avantika University, Ujjain ",Madhya pradesh,Engineering,"2,22,500",--,9.1,9.3,8.5,9.3,8.5,9.5,9.2
Ujjain Engineering College ,Madhya pradesh,Engineering,"22,751","25,151",6.7,7.4,5.9,7.4,6.2,6.4,6.9
Shri Govindram Seksaria Institute of Technology and ,Madhya pradesh,Engineering,"75,550","1,18,425",7.4,8,6.7,7.7,7,7.5,7.2
Lakshmi Narain College of Technology ,Madhya pradesh,Engineering,"48,600","60,000",5.7,5.6,5.8,6.2,5.2,5.4,6.2
National Institute of Technology ,Kerala,Engineering,"53,797","27,405",8.1,8.4,7.9,7.7,8,8.1,8.2
Indian Institute of Space Science and Technology ,Kerala,Engineering,"1,42,400","87,400",8.1,8.9,7.8,8.5,8.6,7.7,7.2
"College of Engineering, Trivandrum ",Kerala,Engineering,"2,00,000","15,725",8.4,8.6,7.8,8,8.5,8.4,8.8
"Cochin University of Science and Technology, School ",Kerala,Engineering,"86,040","52,730",8.3,8.5,7.8,8.3,8.2,8.2,8.7
Baselios Thomas I Catholicose College of Engineering ,Kerala,Engineering,"85,000",--,7.4,7.5,8,8.5,7,6.5,7
Cochin University of Science and Technology ,Kerala,Engineering,"46,600","19,290",7.9,8.4,7.5,7.8,7.8,7.7,8.1
Indian Institute of Technology ,Kerala,Engineering,"35,850","2,22,350",8.6,9.2,7.7,9,8.6,8.7,8.6
APJ Abdul Kalam Technological University ,Kerala,Engineering,"29,000",--,7.8,8.1,6.9,8.2,8.1,7.5,8
Federal Institute of Science and Technology ,Kerala,Engineering,"75,100","87,050",8.1,8.3,7.5,8.3,8.8,8,7.8
"Indian Institute of Information Technology [IIIT], Kottayam ",Kerala,Engineering,"1,98,950",--,8.3,8.5,8.1,8.5,8.1,8.6,8.2
Government Engineering College ,Kerala,Engineering,"22,150","10,970",8.5,8.5,8,8.4,8.7,8.3,8.9
National Institute of Electronics & Information Technology ,Kerala,Engineering,"60,000","1,38,500",8.4,8.7,6.7,8.9,8.7,8.8,8.6
TKM College of Engineering ,Kerala,Engineering,"8,410","16,290",8.4,8.8,8.2,8.4,8.4,7.8,8.5
Amal Jyothi College of Engineering ,Kerala,Engineering,"1,00,000","96,000",7.6,7.9,7,7.9,9,6.9,7
Hindustan College of Engineering ,Kerala,Engineering,"50,000",--,8,8.3,7.6,8.1,8,8,7.9
Marian Engineering College ,Kerala,Engineering,"96,050","61,300",7.8,8.3,7.1,8.3,8.6,7.9,6.8
"Saintgits College of Engineering, Kottayam ",Kerala,Engineering,"75,000","1,71,900",8.3,8.4,7.9,8.6,8.8,7.8,8.1
Rajiv Gandhi Institute of Technology ,Kerala,Engineering,"22,000","22,000",7.9,8.3,7.3,8.1,8,7.4,8.4
Mangalam College of Engineering Ettumanoor ,Kerala,Engineering,"75,000","3,00,000",6.9,7,6.4,7.4,7.6,6.4,6.6
NSS College of Engineering ,Kerala,Engineering,"8,739","11,065",8.3,8.4,8,8.5,8,8.2,8.4
Sree Chitra Thirunal College of Engineering ,Kerala,Engineering,"62,668","75,041",8,8.6,6,8.3,7.5,8.3,9
"Thejus Engineering College, Thrissur ",Kerala,Engineering,"88,400","1,60,000",8,8.3,7.8,8.7,7.8,7.1,8.2
Mar Athanasius College of Engineering ,Kerala,Engineering,"8,225","21,950",8.4,8.5,8.2,8.2,8.8,8.1,8.5
St. Thomas College of Engineering and Technology- ,Kerala,Engineering,"58,150",--,8.3,8.4,7.9,8.6,8.5,7.8,8.3
"College of Engineering Thalassery, Kannur ",Kerala,Engineering,"38,250",--,7.2,7.8,6.3,7.8,7.5,6.6,7.3
"KMCT College of Engineering, Kozhikode ",Kerala,Engineering,"75,000",--,7.3,7.5,7.7,7.2,7.8,5.7,7.6
"MEA Engineering College- [MEAEC], Malappuram ",Kerala,Engineering,"75,000","60,000",8.2,8.1,8.6,8.3,8.7,6.6,8.7
Rajagiri School of Engineering & Technology ,Kerala,Engineering,"87,000","77,000",8.2,8.4,8,8.2,9,8.6,6.9
Sahrdaya College of Engineering ,Kerala,Engineering,"35,000","77,000",7.1,7.5,6.8,7.3,8.1,6.6,6.5
"Trinity College of Engineering, Trivendrum ",Kerala,Engineering,"75,000",--,6.8,7.6,6.4,7.3,6.7,6.1,6.5
Birla Institute of Technology and Science ,Rajasthan,Engineering,"4,45,475","4,45,475",8.9,8.8,8.2,8.8,9,9,9.3
Indian Institute of Technology ,Rajasthan,Engineering,"70,433","71,500",8.2,8,7.9,8.2,8.2,8,8.7
Malaviya National Institute of Technology ,Rajasthan,Engineering,"94,333","1,22,665",8.2,8.2,7.4,8,8.7,8.2,8.5
"Singhania University, Jhunjhunu ",Rajasthan,Engineering,"42,000","42,000",7.1,7.1,6.7,7.1,7.1,7,7.3
Jaipur National University ,Rajasthan,Engineering,"1,14,000","37,600",7.5,7.9,7,7.7,7.8,6.7,7.6
Manipal University ,Rajasthan,Engineering,"3,19,000","36,000",8.4,8.2,8.3,8.2,9.2,7.7,9
JECRC University ,Rajasthan,Engineering,"1,85,000","30,000",8.1,8.1,7.4,8.2,8.2,8.1,8.7
SunRise University ,Rajasthan,Engineering,"72,200","32,200",8.1,8.1,7.3,8.7,8.1,7.9,8.4
"OPJS University, Churu ",Rajasthan,Engineering,"71,200","76,200",7.2,7.1,7.6,7.6,7.7,6.3,6.8
"Banasthali Vidyapith, Jaipur ",Rajasthan,Engineering,"2,03,500","1,61,500",8.5,8.8,8.2,8.9,8.6,7.9,8.8
"Amity University, Jaipur ",Rajasthan,Engineering,"1,80,000","1,48,000",8,7.8,7.6,7.8,8.9,7.4,8.7
Suresh Gyan Vihar University ,Rajasthan,Engineering,"1,40,000","42,000",7.5,7.8,6.7,7.5,8.8,6.3,8
IIS (Deemed to be University) ,Rajasthan,Engineering,"99,300","25,500",8.3,8.6,8.5,8.6,8,7.9,8.4
Madhav University ,Rajasthan,Engineering,"70,000","13,000",7.8,7.9,7.5,8.2,7.9,7.3,7.8
"Jagannath University, Jaipur ",Rajasthan,Engineering,"1,14,000","1,80,000",7.3,7.1,6.7,7.9,7.7,6.9,7.4
Indian Institute of Information Technology ,Rajasthan,Engineering,"2,30,925",--,7.6,7.9,7.1,6.6,7.8,8,7.9
"Tantia University, Sriganganagar ",Rajasthan,Engineering,"30,000",--,8.6,8.8,8.4,9.3,8.8,7.1,9.1
"Pacific University, Udaipur ",Rajasthan,Engineering,"80,000","80,000",7.7,7.8,7.3,8.1,7.8,7.2,8
"Swami Keshvanand Institute of Technology, Management and ",Rajasthan,Engineering,"98,900","84,500",7.8,8.3,6.8,8.1,8.1,8,7.5
Maharana Pratap University of Agriculture and Technology ,Rajasthan,Engineering,"87,800","86,000",8,8.2,8,8,8.1,7.9,7.8
"Poornima College of Engineering, Jaipur ",Rajasthan,Engineering,"1,70,000","1,78,000",7.5,7.9,7.4,7.6,7.2,7.6,7.4
"Shridhar University, Pilani ",Rajasthan,Engineering,"99,300","61,300",6.7,6.2,6.6,6.5,6.5,7.3,6.8
"Jaipur Engineering College and Research Centre, Jaipur ",Rajasthan,Engineering,"92,000",--,7.7,7.9,6.6,7.5,7.3,8.1,8.5
Birla Institute of Technology ,Rajasthan,Engineering,"11,57,000",--,7.2,8.1,5.4,8.1,6.9,7.8,7.1
Institute of Advanced Studies in Education ,Rajasthan,Engineering,"79,400","64,000",8.2,8.9,8,8.3,8.4,7.5,7.9
National Institute of Technology ,Haryana,Engineering,"56,716","1,02,800",8.2,8,7.4,8.1,8.2,8.6,8.6
Panjab University ,Haryana,Engineering,"96,300","27,500",7.7,8.2,7.7,8,7.7,6.5,8.2
Punjab Engineering College University of Technology ,Haryana,Engineering,"96,750","93,500",8,7.9,7.3,7.6,7.7,8.4,9
National Institute of Food Technology Entrepreneurship and ,Haryana,Engineering,"1,71,550","1,52,950",8.1,8.5,7.1,6.9,9.4,8.5,7.9
"University Institute of Engineering, Chandigarh University ",Haryana,Engineering,"1,60,000","80,000",8.4,8.6,7.9,8.1,8.7,8.7,8.3
"School of Engineering and Technology, NCU ",Haryana,Engineering,"2,60,000","82,000",9,9,--,--,9,--,--
"J.C. Bose University Of Science And Technology, ",Haryana,Engineering,"83,625","83,625",7.3,7.7,6.5,7.4,6.6,7.7,7.6
Manav Rachna International Institute Of Research And ,Haryana,Engineering,"1,81,500","1,16,000",7.2,7.1,6.7,6.5,8.4,6.5,7.8
Manav Rachna International Institute of Research and ,Haryana,Engineering,"1,81,500","1,65,000",7.5,7.4,7.3,7.5,8.3,6.6,7.6
"Gurugram University, Gurgaon ",Haryana,Engineering,"40,000",--,8.2,8.6,7.4,8.4,8.6,8,8.1
"PDM University, Bahadurgarh, Bahadurgarh ",Haryana,Engineering,"1,00,200","41,200",7.4,7.1,7.6,7.4,7.5,7.1,7.7
"Amity University, Gurgaon ",Haryana,Engineering,"2,30,000","1,56,000",7.7,7.8,7.1,7.6,8.6,7.1,8.1
National Institute of Technical Teachers Training and ,Haryana,Engineering,"44,696","24,500",7.7,7.7,6.7,8.6,7.7,7.7,8
"IILM University, Gurgaon ",Haryana,Engineering,"3,30,000","4,30,000",8.4,8.2,7.4,8.5,8.6,8.6,8.8
"University Institute of Engineering and Technology -[UIET], ",Haryana,Engineering,"82,197","16,160",7.4,7.5,7.5,7.4,7,7,8.2
"Starex University, Gurgaon ",Haryana,Engineering,"80,000","40,000",8.8,9.1,9.1,8.7,8.6,8.5,8.7
Indian Institute of Information Technology ,Haryana,Engineering,"1,57,800",--,8.8,9.2,8.9,8.6,8.8,9.1,8.2
"SRM University Delhi NCR, Sonepat ",Haryana,Engineering,"2,72,000","1,67,250",7.8,8,7.5,7.9,8.1,7.6,7.9
"Lingaya's Vidyapeeth, Faridabad ",Haryana,Engineering,"1,34,500","84,500",7.8,8,7.5,8.1,7.7,7.3,8.1
Modern Vidya Niketan ,Haryana,Engineering,"1,35,000","95,000",7,7.2,6.4,7.7,7,6.8,6.8
Delhi Technical Campus ,Haryana,Engineering,"69,500",--,8.2,8.2,8.1,8.4,8,8.2,8.5
Chandigarh College of Engineering and Technology ,Haryana,Engineering,"64,240",--,6.9,7.2,6.4,7.1,6.9,6.5,7.3
Manav Rachna University ,Haryana,Engineering,"2,44,000","1,16,000",7.8,7.6,7.5,7.7,8.8,7.3,7.9
Seth Jai Parkash Mukand Lal Institute of ,Haryana,Engineering,"89,090",--,7.3,7.5,7.2,7.2,7.4,6.8,7.4
"Sushant University / Ansal University, Gurgaon ",Haryana,Engineering,"2,41,120","1,37,120",7.8,8,8,7.9,8.4,7,7.5
"University Institute of Engineering and Technology, Maharshi ",Haryana,Engineering,"74,288","84,288",7.2,7.1,7.5,6.6,8.6,5.7,7.7
St. Andrews Institute of Technology and Management ,Haryana,Engineering,"92,000",--,8.7,8.8,8.6,8.7,9,8.6,8.6
Indian Institute of Technology ,Gujarat,Engineering,"2,58,500","2,00,000",8.4,8.3,8.4,8.8,9.1,7.2,8.8
Sardar Vallabhbhai National Institute of Technology ,Gujarat,Engineering,"1,50,000","95,000",8,7.9,7.8,7.6,8.2,7.9,8.4
Dhirubhai Ambani Institute of Information and Communication ,Gujarat,Engineering,"1,54,000","1,97,000",8.7,8.8,8,8.4,8.7,9.2,8.8
"Institute of Technology, Nirma University, Ahmedabad ",Gujarat,Engineering,"1,97,200","2,64,000",8.3,8.3,7.9,8.3,8.9,8,8.3
"Faculty of Technology and Engineering, Maharaja Sayajirao ",Gujarat,Engineering,"7,640","8,340",8.1,8.4,6.6,8.5,8,8.3,8.8
Nirma University ,Gujarat,Engineering,"1,97,200","2,65,000",8.4,8.6,8,8.4,9.1,8.1,8.2
Pandit Deendayal Petroleum University [PDPU] / (Energy ,Gujarat,Engineering,"2,53,000","1,54,000",8.6,8.3,8.3,8.1,9.4,8.1,9.4
"Pandit Deendayal Petroleum University, School of Technology ",Gujarat,Engineering,"2,53,000","1,54,000",8.6,8.4,8.3,8.1,9.4,7.9,9.3
Central Institute of plastics engineering & Technology- ,Gujarat,Engineering,"65,000","77,000",7.5,7.6,6.8,7.5,7.9,7.5,7.5
Sardar Patel University ,Gujarat,Engineering,--,--,7.8,8.6,7,8.5,7.7,7.3,7.8
"CEPT University, Ahmedabad ",Gujarat,Engineering,"1,98,000","3,20,000",8.2,8.6,7.7,8.4,8.3,8.1,8
Ganpat University ,Gujarat,Engineering,"1,08,000","43,000",8.1,8.2,7.2,8.1,8.5,7.8,8.6
"Indus University, Ahmedabad ",Gujarat,Engineering,"96,000","1,26,000",7.5,7.9,7,7.7,7.8,6.8,7.9
Navrachana University ,Gujarat,Engineering,"1,14,000","1,12,000",7.7,7.7,7.4,8.2,8,7.2,7.8
Indian Institute of Information Technology Vadodara ,Gujarat,Engineering,"1,79,720","1,06,720",7.8,8.2,7.5,7.8,6.3,8.5,8.2
"Uka Tarsadia University, Bardoli ",Gujarat,Engineering,"94,000","44,000",8.1,7.8,7.9,8.2,9.4,6.9,8.3
"GSFC University, Vadodara ",Gujarat,Engineering,"1,21,250",--,8.1,8.8,6.4,8.7,8.5,7.9,8.4
"Auro University, Surat ",Gujarat,Engineering,"1,21,000",--,8.3,8.2,8.5,8.6,8.7,7.2,8.6
L.D. College of Engineering ,Gujarat,Engineering,"2,860","5,730",8.1,8.4,7.3,8.2,7.9,8.5,8.5
RK University ,Gujarat,Engineering,"76,500","50,000",8.5,9,7.9,8.6,9,7.8,8.5
Institute of Infrastructure Technology Research and Management ,Gujarat,Engineering,"29,100","89,500",7.6,8.3,7.3,8.4,7.9,6.9,6.5
Indian Institute of Information Technology ,Gujarat,Engineering,"1,47,000",--,7.9,8.4,8.5,7.8,7.5,6.5,8.4
"C. U. Shah University, Wadhwan ",Gujarat,Engineering,"77,800","1,03,800",7.7,7.6,7,8.2,7.8,7.4,7.9
"P.P. Savani University, Surat ",Gujarat,Engineering,"1,11,500","98,500",9.3,9.4,8.9,9.5,9.6,8.7,9.4
Vishwakarma Government Engineering College ,Gujarat,Engineering,"1,500","7,500",7.9,8.2,7.2,8.1,8.6,7.1,8.1
Dharmsinh Desai University ,Gujarat,Engineering,"1,52,000","1,40,000",7.7,8.5,7,8.3,7.1,8.1,6.9
Thapar Institute of Engineering and Technology ,Punjab,Engineering,"3,24,800","2,00,600",8.3,8,8.1,7.7,8.9,8.2,8.8
Indian Institute of Technology ,Punjab,Engineering,"2,19,800","39,970",8.5,8.5,8.1,8.2,9.1,8.4,8.9
Panjab University ,Punjab,Engineering,"96,300","27,500",7.7,8.2,7.7,8,7.7,6.5,8.2
Punjab Engineering College University of Technology ,Punjab,Engineering,"96,750","93,500",8,7.9,7.3,7.6,7.7,8.4,9
I.K. Gujral Punjab Technical University ,Punjab,Engineering,"88,750","83,150",8.1,8,7.4,8.7,8.3,7.7,8.7
Dr BR Ambedkar National Institute of Technology ,Punjab,Engineering,"6,76,000","2,28,000",7.9,8,7.7,7.6,8,8,8.3
"University Institute of Engineering, Chandigarh University ",Punjab,Engineering,"1,60,000","80,000",8.4,8.6,7.9,8.1,8.7,8.7,8.3
Sant Longowal Institute of Engineering and Technology ,Punjab,Engineering,"81,000","58,000",7.6,7.7,7.1,7.5,8.4,6.5,8.1
Chitkara University ,Punjab,Engineering,"6,66,000",--,8.5,8.4,7.7,8.5,8.9,8.7,8.7
Chandigarh Group of Colleges ,Punjab,Engineering,"94,000","95,000",8.1,8,7.4,8,8.3,8.6,8.4
"RIMT University, Gobindgarh ",Punjab,Engineering,"1,35,000","76,500",7.6,7.9,7.3,7.8,8,6.7,7.8
National Institute of Technical Teachers Training and ,Punjab,Engineering,"44,696","24,500",7.7,7.7,6.7,8.6,7.7,7.7,8
"Guru Kashi University, Bathinda ",Punjab,Engineering,"92,680","92,100",7.5,7.4,7.2,8,7.2,7.2,7.8
"University Institute of Engineering and Technology -[UIET], ",Punjab,Engineering,"82,197","16,160",7.4,7.5,7.5,7.4,7,7,8.2
"Rayat Bahra University, Mohali ",Punjab,Engineering,"1,00,000","40,000",7.7,7.8,7.4,8,7.7,7.4,7.6
"DAV University, Jalandhar ",Punjab,Engineering,"1,36,000","87,500",7.9,8.4,7,8.4,7,8,8.5
"Plaksha, Mohali ",Punjab,Engineering,"6,90,000","12,70,000",--,--,--,--,--,--,--
Chandigarh Engineering College ,Punjab,Engineering,"94,000","95,000",7.9,7.8,7.3,7.7,8.2,8.5,8
Sant Baba Bhag Singh University ,Punjab,Engineering,"82,500","1,03,300",8.5,9,8.2,8.6,8,8.5,8.6
Chandigarh College of Engineering and Technology ,Punjab,Engineering,"64,240",--,6.9,7.2,6.4,7.1,6.9,6.5,7.3
"Global Institute, Amritsar ",Punjab,Engineering,"3,18,000","1,25,000",8.3,8,8.2,8.7,8.8,7.9,8.3
"Maharaja Ranjit Singh Punjab Technical University, Bathinda ",Punjab,Engineering,"1,70,600","85,600",8.2,8.6,7.8,8.4,8.2,8.1,8.2
Amritsar College of Engineering and Technology ,Punjab,Engineering,"4,03,024","1,43,623",7.4,7.3,6.7,7.6,7.7,7.3,7.7
Guru Nanak Dev Engineering College ,Punjab,Engineering,"98,689","90,574",7.7,7.9,7.2,7.8,7.9,7.4,7.9
Sri Guru Granth Sahib World University ,Punjab,Engineering,"1,04,000","68,000",8.8,8.6,9,9,9.1,8.4,8.7
Baba Banda Singh Bahadur Engineering College ,Punjab,Engineering,"90,000","90,000",8.1,8.3,7.6,8.6,8.8,7,8
Indian Institute of Technology ,West bengal,Engineering,"82,070","2,31,500",8.5,8.8,7.2,8.2,8.9,8.8,9
Jadavpur University ,West bengal,Engineering,"2,400","24,000",8.4,9,7.6,8.5,8.1,8.4,9
Indian Institute of Engineering Science and Technology ,West bengal,Engineering,"70,000","81,500",8,8.3,7.7,7.9,7.9,7.5,8.4
National Institute of Technology ,West bengal,Engineering,"1,49,100","94,100",7.7,8,6.8,7.8,7.5,7.8,8.4
Institute of Engineering and Management ,West bengal,Engineering,"1,68,400",--,7.5,8.2,6.5,8,6.7,8.4,7.2
Heritage Institute of Technology ,West bengal,Engineering,"1,16,200","1,31,100",7.8,7.9,7,7.8,8.4,7.6,8.2
Maulana Abul Kalam Azad University of Technology ,West bengal,Engineering,"49,000","81,200",7.7,8.1,6.9,8,7.8,7.7,7.6
Narula Institute of Technology ,West bengal,Engineering,"1,29,800","1,22,600",8,8.5,7.2,8.2,8.3,7.8,8
Haldia Institute of Technology ,West bengal,Engineering,"1,16,350","1,04,600",7.8,7.9,7.2,7.5,8.5,7.2,8.3
"Amity University, Kolkata ",West bengal,Engineering,"2,07,000","1,58,000",8.2,8.1,7.7,8.4,8.8,7.4,8.5
"Techno India University, Kolkata ",West bengal,Engineering,"89,200","2,01,000",8,8.2,7.4,8.2,8.1,7.8,8.4
"Adamas University, Kolkata ",West bengal,Engineering,"1,72,800","1,34,850",8.2,8.3,7.5,8.5,9,7.8,7.8
Sister Nivedita University ,West bengal,Engineering,"1,49,500","1,49,500",8.2,8.2,7.6,8.9,7.9,7.8,8.7
Asansol Engineering College ,West bengal,Engineering,"1,34,068","1,08,100",7.8,8.1,7.2,7.8,8.4,7.6,7.7
University of Engineering and Management ,West bengal,Engineering,"1,61,200","1,50,000",8.1,8.6,7.2,8.5,7.9,8.8,7.7
JIS College of Engineering ,West bengal,Engineering,"1,29,800","1,22,600",7.9,8.1,7.2,8.4,8.1,7.8,8
Kalyani Government Engineering College ,West bengal,Engineering,"16,155","17,855",7.9,8.1,7.6,8,7.8,7.4,8.4
Indian Institute of Information Technology ,West bengal,Engineering,"17,120","2,02,020",6.8,7.6,6.4,7.2,6.1,7,6.5
The Neotia University ,West bengal,Engineering,"1,44,000","98,000",8.2,8.7,7.5,8.5,8.2,7.8,8.6
Bengal Institute of Technology ,West bengal,Engineering,--,--,7.4,7.9,6,7.5,7.1,7.7,8.2
Siliguri Institute of Technology ,West bengal,Engineering,"3,93,000","54,000",7.8,7.9,7.1,8,8.3,7.2,8.2
"University Institute of Technology, University Of Burdwan ",West bengal,Engineering,"71,200","26,000",6.5,7,5.9,7.2,6.6,5.4,6.6
Jalpaiguri Government Engineering College ,West bengal,Engineering,"14,877","51,916",7.8,7.8,7.9,7.8,7.4,7.3,8.8
"Techno India Salt Lake, Kolkata ",West bengal,Engineering,"4,83,800","2,73,000",7.5,7.9,6,7.8,7.5,7.6,8.3
Bengal College of Engineering and Technology ,West bengal,Engineering,"1,03,600","1,12,500",7.1,7.2,6.6,7.2,8,6.1,7.5
Dr. B.C. Roy Engineering College ,West bengal,Engineering,"1,08,980","1,19,000",7.7,7.9,7.3,7.7,8.1,7.2,7.8
Bengal College of Engineering ,West bengal,Engineering,"98,500",--,5.7,6.3,5.9,6,5.4,5.1,5.3
Seacom Skills University ,West bengal,Engineering,"82,000","80,000",7.5,8.4,6.4,8.9,7.4,6.7,7.3
National Institute of Technology ,Orissa,Engineering,"2,25,500","1,60,500",8.4,8.3,7.9,7.8,9.1,8.2,8.9
Indian Institute of Technology ,Orissa,Engineering,"2,28,676","2,33,884",7.8,8.1,8,8,7.8,7.8,7.2
Institute of Technical Education and Research ,Orissa,Engineering,"2,50,000","1,50,000",8.2,8.4,7.4,8.2,8.6,8.3,8
"C. V. Raman Global University, Bhubaneswar ",Orissa,Engineering,"1,19,000","97,000",7.6,7.9,7,7.5,8.2,7.5,7.6
Veer Surendra Sai University of Technology ,Orissa,Engineering,"91,280","91,140",7.9,8.2,7.7,7.9,7.4,7.7,8.4
Biju Patnaik University of Technology ,Orissa,Engineering,--,--,6.2,6.1,6.7,6.4,6.8,4.8,6.1
Centurion University of Technology and Management ,Orissa,Engineering,"1,00,000","40,000",8.1,8.3,7.6,8.5,8.4,7.4,8.5
International Institute of Information Technology ,Orissa,Engineering,"2,01,100","1,76,150",7.7,8,6.9,7.6,7.8,7.7,8.2
"Indira Gandhi Institute of Technology- [IGIT], Dhenkanal ",Orissa,Engineering,"34,500","34,500",7.8,8,8.3,7.9,7.7,6.7,8.4
Silicon Institute of Technology ,Orissa,Engineering,"6,00,000","2,70,000",7.7,8.5,7,8.1,7.3,7.7,7.5
Silicon Institute of Technology ,Orissa,Engineering,"3,80,000",--,7.7,8.3,7.4,7.9,8.8,6.6,7.4
Xavier University ,Orissa,Engineering,"3,08,000","2,17,000",8.2,8.7,7.8,8.4,9.2,6.8,8.4
Bhubaneswar Engineering College ,Orissa,Engineering,"2,52,000",--,7.5,7.2,7.5,7.7,7.7,7.3,7.8
College of Engineering ,Orissa,Engineering,"2,92,000","1,60,000",6.7,7.5,5.9,7,6.9,6,6.7
National Institute of Science and Technology ,Orissa,Engineering,"1,21,500","80,000",7.9,8.2,7.1,8.1,8.1,7.8,7.9
College of Engineering and Technology ,Orissa,Engineering,"2,35,000","1,22,000",7.7,8,7.6,7.6,7.1,7.9,8.1
Gandhi Institute for Technology ,Orissa,Engineering,"81,000","41,500",7.4,7.9,6.4,7.7,7.8,6.6,7.7
Orissa Engineering College ,Orissa,Engineering,"86,500",--,7.5,7.6,7,7.4,7.7,7.3,7.8
Parala Maharaja Engineering College ,Orissa,Engineering,"33,400","33,400",7.3,7.7,7.5,7.6,7.6,5.7,7.7
"CSIR-Institute of Minerals and Materials Technology -[CSIR-IMMT], ",Orissa,Engineering,--,--,7,6.3,5.3,7.8,7.3,7.3,7.7
GITA Autonomous College ,Orissa,Engineering,"1,08,000","91,300",8.7,9,8.3,8.9,8.8,8.3,8.6
"Seemanta Engineering College, Mayurbhanj ",Orissa,Engineering,"2,20,000","1,20,000",8,8.2,8,8.6,8.6,7,7.7
"Trident Academy of Technology, Bhubaneswar ",Orissa,Engineering,"1,08,300","72,000",8,8.3,7.5,8.3,8.1,7.9,7.9
"Government College of Engineering, Kendujhar ",Orissa,Engineering,"1,40,000",--,7,7.8,7.6,7.4,6.9,5.1,7.3
CIPET: Centre for Skilling and Technical Support ,Orissa,Engineering,"32,680","76,210",6.7,7,6.1,6.4,7.7,6.9,6.1
"Vignan Institute of Technology And Management, Berhampur ",Orissa,Engineering,"58,000",--,7.7,8.7,7.9,8.4,7.6,5.9,7.6
Krupajal Engineering College ,Orissa,Engineering,"72,000","79,000",6.3,6.6,6.3,6.5,6.9,4.9,6.5
Indian Institute of Technology ,Uttarakhand,Engineering,"2,21,700","23,250",8.4,8.5,7.6,7.9,9,8.6,8.9
"Graphic Era University, School of Engineering and ",Uttarakhand,Engineering,"2,36,400","1,21,000",8.2,8.3,7.7,8,8.6,8.8,8
"College of Technology, GB Pant University of ",Uttarakhand,Engineering,"65,344","46,244",7,7.1,6.7,6.9,7.3,6,7.7
University of Petroleum and Energy Studies ,Uttarakhand,Engineering,"16,04,500","5,57,250",8.1,8.1,7.8,7.9,8.6,7.7,8.2
"Doon University, Dehradun ",Uttarakhand,Engineering,"34,750",--,7.2,7.3,7,7.3,7.9,6.3,7.6
DIT University ,Uttarakhand,Engineering,"2,00,000","1,20,000",7.8,7.9,7.6,7.6,8.4,7.4,8
Graphic Era University ,Uttarakhand,Engineering,"3,23,400","92,900",8.3,8.2,7.9,8.4,8.6,8.1,8.4
Graphic Era Hill University ,Uttarakhand,Engineering,"2,75,600","79,600",8.1,7.9,7.8,8.1,8.4,7.7,8.4
"ICFAI University, Dehradun ",Uttarakhand,Engineering,"1,56,000","1,40,000",7.8,8.2,7.5,8.2,7.4,7.3,7.9
"MotherHood University, Roorkee ",Uttarakhand,Engineering,"71,650",--,8,8.3,7.9,7.6,8,8,8.3
Himgiri Zee University ,Uttarakhand,Engineering,"90,000","80,000",7.9,8.5,5.5,9,8,7.7,8.8
Swami Rama Himalayan University ,Uttarakhand,Engineering,"2,12,250","84,000",7,7.1,6.6,6.9,7.4,7.1,6.7
"Tula's Institute, Dehradun ",Uttarakhand,Engineering,"1,12,500","91,500",7.8,8,7.2,7.7,8.5,7.4,8.2
THDC Institute of Hydro Power Engineering and ,Uttarakhand,Engineering,"73,500",--,6.9,6.8,6.4,7.4,7.8,5.6,7.2
College of Engineering ,Uttarakhand,Engineering,"1,36,150","1,19,150",8.3,8.4,8.1,8.1,8.7,7.5,8.8
Shivalik College of Engineering ,Uttarakhand,Engineering,"1,01,400","46,400",7.2,7.1,7.1,7.3,7.2,7.1,7.3
Women Institute of Technology ,Uttarakhand,Engineering,"75,500",--,7.9,9,7.4,9,7.2,6.7,8.3
Indian Institute of Aeronautical Engineering ,Uttarakhand,Engineering,"3,00,000","3,00,000",8.3,7.5,8.5,8.5,9,8,8
Indira Gandhi National Forest Academy ,Uttarakhand,Engineering,"1,84,500",--,8.7,9,9,8,9,9,8
"Bipin Tripathi Kumaon Institute of Technology, Almora ",Uttarakhand,Engineering,"71,150","82,250",6.4,6.8,6.2,6.6,7.3,4.6,6.8
Govind Ballabh Pant Engineering College ,Uttarakhand,Engineering,"69,015","80,015",6.4,7.1,6,6.1,7.3,5.1,7
BFIT Group of Institutions ,Uttarakhand,Engineering,"35,000",--,7.5,7.7,7.1,7.7,7.6,7.1,8
Dev Bhoomi Institute of Technology ,Uttarakhand,Engineering,"1,19,700","92,000",7.2,7.1,6.5,7.5,7.4,7.5,7.2
Graphic Era Hill University Bhimtal Campus ,Uttarakhand,Engineering,"2,75,600","1,30,600",8.1,8.2,7.6,7.9,8.8,7.8,8
Indian Institute of Management ,Tamil nadu,Management,"11,90,000","10,00,000",8.8,8.7,8.8,9.1,8.9,8.7,8.8
"Department of Management Studies, IIT Madras ",Tamil nadu,Management,"11,200","11,25,000",9.1,9.2,9.1,9,9.2,9.1,8.7
"NIT Trichy, Tiruchirappalli ",Tamil nadu,Management,"97,250","49,250",8.5,8.6,7.8,8.2,8.7,8.8,8.7
"Great Lakes Institute of Management, Chennai ",Tamil nadu,Management,"16,01,000","16,01,000",8.7,8.8,8.7,9.2,9.1,8.1,8.2
Loyola Institute of Business Administration ,Tamil nadu,Management,"15,26,000","20,500",9,9.1,9,9,9,9,9.1
P.S.G College of Technology ,Tamil nadu,Management,"73,910","14,000",9,9.2,8.7,8.9,9,9.1,8.8
"Department of Management Studies, Anna University ",Tamil nadu,Management,"20,500",--,9.4,9.6,9.4,9.4,9.4,9.3,--
Vellore Institute of Technology ,Tamil nadu,Management,"57,000","3,51,500",8.3,8.3,8,7.8,8.9,8.5,8.5
Bharathidasan Institute of Management ,Tamil nadu,Management,"7,10,351",--,8.6,9,8.7,8.8,8,8.7,8.2
"School of Management, SRM IST, Kanchipuram ",Tamil nadu,Management,"1,10,000","3,60,000",9,8.9,9.1,9,9,9,--
"Amrita Vishwa Vidyapeetham, Coimbatore ",Tamil nadu,Management,"10,60,000","30,000",8.1,8.5,6.6,8.5,8.6,8.2,8
PSG Institute of Management ,Tamil nadu,Management,"8,00,000",--,8.7,8.8,8.2,9.2,8.5,8.3,9.3
Hindustan Institute of Technology and Science ,Tamil nadu,Management,"2,53,000","92,500",7.6,7.8,6.9,7.8,7.9,6.9,8
Bannari Amman Institute of Technology ,Tamil nadu,Management,"45,000",--,8.3,8.2,8.1,8,9.1,8.1,8.2
"Mepco Schlenk Engineering College, Sivakasi ",Tamil nadu,Management,"90,000",--,8.1,8.5,8.1,8.3,8.6,7.9,7
Kongu Engineering College ,Tamil nadu,Management,"50,000",--,8.3,8.3,7.7,8.3,8.9,8.3,8.3
Vel Tech Dr. RR & Dr. SR ,Tamil nadu,Management,"93,000","70,000",8.1,8.2,8.5,8,8.1,7.8,7.8
Bharath University ,Tamil nadu,Management,"40,000","1,00,000",7.6,7.9,7.1,8.1,7.6,7.8,7
Sairam Institute of Management Studies ,Tamil nadu,Management,"75,000",--,8.4,9,8,8,8,9,--
"PSNA College of Engineering and Technology, Dindigul ",Tamil nadu,Management,"35,000",--,8.3,8.5,8,8.5,8.8,8.1,8
"IIKM Business School, Chennai ",Tamil nadu,Management,"3,75,000",--,6.9,6.8,6.1,7.4,7,7.4,6.8
Vivekananda Institute of Management Studies ,Tamil nadu,Management,"2,00,000",--,7.5,7.8,6.5,7.8,7.8,7.3,7.5
GRG School of Management Studies ,Tamil nadu,Management,"40,000","40,000",9,9,9,9.3,9.3,8.3,9.3
"Sona School of Management, Salem ",Tamil nadu,Management,"1,70,000",--,8.1,8.2,7.4,8.2,8.3,8,8.2
DJ Academy for Managerial Excellence ,Tamil nadu,Management,"1,60,000",--,9.1,9,9,9,9.7,9.3,8.7
Sardar Vallabhbhai Patel International School of Textile ,Tamil nadu,Management,"1,46,000",--,8.2,7.5,8,9.3,7.5,8.5,8.3
"Karunya School of Management, Karunya University ",Tamil nadu,Management,"2,44,000","41,000",8.4,8.5,8.2,8.7,8.7,8.2,8
Coimbatore Institute of Management and Technology ,Tamil nadu,Management,"1,20,000","15,000",8.3,8.4,8,8.6,8.6,8,8.3
"ITM Business School, Chennai ",Tamil nadu,Management,"4,95,000",--,8.3,8.8,8.2,8,8.5,8,8.5
SNS College of Technology ,Tamil nadu,Management,"35,000",--,8.3,8.5,7.6,8.5,8.5,8.3,8.5
"Shailesh J. Mehta School of Management, IIT ",Maharashtra,Management,"6,91,100","25,800",8,8.3,7.9,8.5,8.5,8.4,6.6
SP Jain Institute of Management and Research ,Maharashtra,Management,"17,50,000","1,50,000",8.7,9,8.3,9,8.8,9,8.1
"Jamnalal Bajaj Institute of Management Studies -[JBIMS], ",Maharashtra,Management,"3,05,000",--,8.8,9.1,8.6,9.1,8.7,9.2,8.3
Symbiosis Institute of Business Management ,Maharashtra,Management,"9,80,000",--,8.8,8.7,8.8,8.8,9.1,8.9,8.3
Narsee Monjee Institute of Management Studies ,Maharashtra,Management,"6,02,000","3,02,000",8.1,8.4,7.6,8.5,8.1,7.9,8.2
Symbiosis Centre for Management and Human Resource ,Maharashtra,Management,"9,40,000","2,20,000",8,8,7.5,7.9,7.6,8.2,8.5
National Institute of Industrial Engineering ,Maharashtra,Management,"1,04,000","7,03,000",9,9,9,9,9,9.3,8.6
Prin. L. N. Welingkar Institute of Management ,Maharashtra,Management,"5,50,000","3,40,000",8,8.4,7.4,8.4,8.2,7.8,7.9
"Bharati Vidyapeeth University, Institute of Management and ",Maharashtra,Management,"2,25,000","1,00,000",8,8.4,7.5,8.5,8,7.7,7.9
"KJ Somaiya Institute of Management, Mumbai ",Maharashtra,Management,"8,17,290","3,32,455",8.3,8.3,7.9,8.2,8.7,7.9,8.5
Institute of Management Technology ,Maharashtra,Management,"6,42,000",--,8.6,8.4,8.6,8.5,9,7.9,8.9
"Sydenham Institute of Management Studies, Research & ",Maharashtra,Management,"1,38,000","16,000",8.9,9.1,8.8,9.1,8.6,9,8.5
Symbiosis Institute of International Business ,Maharashtra,Management,"7,90,000",--,8.4,8.4,7.9,8.5,8.7,8.1,8.9
Balaji Institute of Modern Management ,Maharashtra,Management,"4,80,000",--,8.2,8,8.2,8.9,8.2,8.1,7.9
SIES School of Business Studies ,Maharashtra,Management,"3,50,000",--,7.8,8.5,6.1,8.1,8.2,7.7,8.1
ITM Business School Kharghar ,Maharashtra,Management,"4,95,000",--,7.6,8.1,6.6,8.1,7.3,7.3,7.9
Symbiosis Institute of Operations Management ,Maharashtra,Management,"12,20,000","20,000",8.6,9.4,8.5,8.5,7.8,8.8,8.6
Symbiosis Institute of Digital and Telecom Management ,Maharashtra,Management,"6,60,000",--,8.9,8.9,8.7,8.9,9.1,8.8,8.7
Pune Institute of Business Management ,Maharashtra,Management,"7,95,000","2,00,000",7.4,7.6,6.8,8,7.1,7.9,6.7
Vaikunth Mehta National Institute of Co-Operative Management ,Maharashtra,Management,"40,000","22,000",7.8,7.7,7.6,7.7,7.7,8.1,7.8
N. L. Dalmia Institute of Management Studies ,Maharashtra,Management,"10,20,000",--,8.2,8.4,7.4,8.4,8.8,7.9,8.2
International School of Business and Media ,Maharashtra,Management,"6,85,000",--,8.2,8.3,7.3,8.3,8.2,8.1,9
Universal Business School ,Maharashtra,Management,"4,28,000","10,98,000",8.6,8.8,8.2,8.8,8.7,8.2,8.7
Balaji Institute of Management and Human Resource ,Maharashtra,Management,"5,30,000",--,8.8,8.8,8.6,9.2,9,8.7,8.6
IIEBM Indus Business School ,Maharashtra,Management,"4,10,000",--,6.6,7.5,6.9,6.3,7.4,6.3,5.2
DY Patil University's School of Management ,Maharashtra,Management,"1,20,000","4,20,000",6.9,7.1,6,7.6,7,6.2,7.3
Symbiosis Centre for Information Technology ,Maharashtra,Management,"6,20,000","1,53,000",8,8.3,8,7.5,8,7.9,8.2
Neville Wadia Institute of Management Studies and ,Maharashtra,Management,"1,70,000",--,6.7,6.5,6.1,7.2,6.8,6.9,6.8
Bharati Vidyapeeth Institute of Management Studies & ,Maharashtra,Management,"4,00,000",--,6.7,6.6,6.3,7.4,7.3,5.8,7
MIT College of Management ,Maharashtra,Management,"1,66,340","15,00,000",7.4,8.1,5.8,8.2,8.3,6.4,7.6
Indian Institute of Management ,Uttar pradesh,Management,"19,25,000","7,50,000",8.8,8.8,8.8,9,8.9,9,8.2
"Industrial and Management Engineering, IIT Kanpur- [IME ",Uttar pradesh,Management,"9,00,000","23,850",9.2,9.4,9.1,9.2,9.3,9.2,8.7
"Institute of Management Studies, Banaras Hindu University, ",Uttar pradesh,Management,"85,000","15,000",8.5,8.5,8,8.8,8.2,8.3,9
Amity Global Business School ,Uttar pradesh,Management,"2,70,000","4,00,000",8.5,8.6,7.4,8.8,9,8.4,8.7
Institute of Management Technology ,Uttar pradesh,Management,"1,27,000","4,80,000",8.6,8.7,8.4,8.4,8.8,8.2,8.9
"Amity University, Noida ",Uttar pradesh,Management,"4,00,000","3,44,000",8.2,8,7.9,8.1,8.9,7.6,8.7
Birla Institute of Management Technology ,Uttar pradesh,Management,"86,500","12,00,000",7.9,8,8.1,8.1,8.2,7.4,7.7
Aligarh Muslim University ,Uttar pradesh,Management,"17,395",--,8.3,8.8,7.9,8.5,8.8,7.2,8.6
"Jaipuria Institute of Management, Noida ",Uttar pradesh,Management,"5,35,000","1,50,000",8.4,8.6,7.8,8.7,8.4,8.1,8.6
"Jaipuria Institute of Management, Lucknow ",Uttar pradesh,Management,"5,25,000","1,50,000",8.9,8.9,8.8,9.1,9,8.9,8.5
Amity Business School ,Uttar pradesh,Management,"5,88,000",--,8.4,8.2,8,8.2,9,8.2,8.8
Institute of Management Studies ,Uttar pradesh,Management,"7,95,000",--,7.9,8.2,7.6,8.3,8.1,8,7.2
MNNIT Allahabad ,Uttar pradesh,Management,"82,000","91,000",8,8.4,7.3,7.8,7.1,8.9,8.2
GL Bajaj Institute of Management and Research ,Uttar pradesh,Management,"3,40,000","3,40,000",7.7,8.2,7.2,7.7,7.9,7.9,7.4
Institute of Technology and Science ,Uttar pradesh,Management,"3,00,000","1,15,800",8.2,8.6,7.5,8.3,8.6,7.9,8.1
Jaipuria School of Business ,Uttar pradesh,Management,"7,50,000",--,8.6,8.9,7.8,9,8.7,8.7,8.7
Ajay Kumar Garg Institute of Management ,Uttar pradesh,Management,"1,27,943",--,8.7,8.8,8,9.3,9.5,8.3,8
Shri Ram Murti Smarak International Business School ,Uttar pradesh,Management,"25,500","5,10,000",9.5,9.5,9.6,9.4,9.6,9.4,9.2
Institute of Management Studies ,Uttar pradesh,Management,"3,96,000","1,17,750",7.2,7.6,6.9,8,7,6.4,7.5
Sanskriti University ,Uttar pradesh,Management,"90,000","1,15,000",7,7.2,6.7,7,7.5,6.9,6.8
"Jaipuria Institute of Management, Ghaziabad ",Uttar pradesh,Management,"4,00,000",--,8.4,8.8,7.2,9.1,8.6,8.4,8.3
"Mangalayatan University, Institute of Business Management ",Uttar pradesh,Management,"75,000","1,35,000",8.1,9,7.7,8.3,8.3,7.8,7.7
Accurate Institute of Management and Technology ,Uttar pradesh,Management,"1,30,000",--,6.9,7.3,6.5,7.6,7.1,6.5,6.6
"Shobhit University, School of Business Studies, Meerut ",Uttar pradesh,Management,"56,200","1,31,200",9.2,9.3,9,9.3,9.3,9.3,--
Teerthanker Mahaveer Institute of Management and Technology ,Uttar pradesh,Management,"92,600","1,57,900",8,8.1,7.8,8,8.3,7.5,8.3
"Lloyd Business School, Greater Noida ",Uttar pradesh,Management,"2,60,000","35,000",7.9,7.9,7.6,8,8,7.9,7.9
Shri Ram Murti Smarak College of Engineering ,Uttar pradesh,Management,"1,34,982",--,7,7.3,6.9,6.8,7.3,6.3,7.3
Galgotias University School of Business ,Uttar pradesh,Management,"1,00,000","1,59,000",7.4,7.3,6.5,7.3,7.7,7.8,7.7
Institute of Business Management ,Uttar pradesh,Management,"1,35,000","2,26,000",8.5,8.7,8.4,8.6,8.7,8.3,8.2
"Greater Noida Institute Of Technology MBA Institute, ",Uttar pradesh,Management,"64,800","1,17,400",6.9,6.5,5.5,8,8,6.5,--
Department of Management Studies IIT Delhi ,Delhi ncr,Management,"4,80,000","63,900",9.1,9.2,8.8,9.5,9.2,9,8.9
Management Development Institute ,Delhi ncr,Management,"23,58,000","3,19,668",9,8.8,8.9,9,9.1,9.2,8.8
Indian Institute of Management ,Delhi ncr,Management,"5,05,000","1,30,000",8.5,8.7,8.6,8.4,8.4,8.6,8.2
International Management Institute ,Delhi ncr,Management,"8,69,500","2,47,000",8.4,8.8,8,8.8,8.2,8.4,7.9
Indian Institute of Foreign Trade ,Delhi ncr,Management,"5,10,000","8,85,000",8.7,8.7,8.4,9,8.4,8.9,8.5
"Jamia Millia Islamia University-[JMI], New Delhi ",Delhi ncr,Management,"40,600","50,000",8,8.4,7.6,8.3,8.4,7.2,8.2
"Department of Commerce, University of Delhi, New ",Delhi ncr,Management,"15,696","3,685",8.4,8.3,8.5,8.9,8.2,8.3,8
"University of Delhi, Faculty of Management Studies ",Delhi ncr,Management,"96,000","48,000",8.7,9.1,8.4,8.9,8.8,9.2,7.7
FORE School of Management ,Delhi ncr,Management,"15,98,000","1,20,000",7.8,8.4,7.1,8.5,7.6,7.9,7.4
Amity Global Business School ,Delhi ncr,Management,"2,70,000","4,00,000",8.5,8.6,7.4,8.8,9,8.4,8.7
Institute of Management Technology ,Delhi ncr,Management,"1,27,000","4,80,000",8.6,8.7,8.4,8.4,8.8,8.2,8.9
"Amity University, Noida ",Delhi ncr,Management,"4,00,000","3,44,000",8.2,8,7.9,8.1,8.9,7.6,8.7
Birla Institute of Management Technology ,Delhi ncr,Management,"86,500","12,00,000",7.9,8,8.1,8.1,8.2,7.4,7.7
"Jaipuria Institute of Management, Noida ",Delhi ncr,Management,"5,35,000","1,50,000",8.4,8.6,7.8,8.7,8.4,8.1,8.6
"University School of Management Studies, Guru Gobind ",Delhi ncr,Management,"70,000",--,8,8.2,7.4,8.2,8.4,7.8,8
Jagan Institute of Management Studies ,Delhi ncr,Management,"4,30,000","88,000",8.1,8.5,7.5,8.7,7.9,8,8.2
Lal Bahadur Shastri Institute of Management ,Delhi ncr,Management,"5,70,000","6,72,500",7.7,7.8,6.8,8.1,7.4,7.6,8.2
Amity Business School ,Delhi ncr,Management,"5,88,000",--,8.4,8.2,8,8.2,9,8.2,8.8
Asia Pacific Institute of Management ,Delhi ncr,Management,"9,65,000",--,7.3,7.6,6.5,8.2,7.4,7.1,7.1
"IILM Institute for Business & Management [IILM-IBM], ",Delhi ncr,Management,"1,15,000","1,15,000",6.5,6.4,5.7,6.3,6.3,7.3,6.8
"IILM Institute for Higher Education, New Delhi ",Delhi ncr,Management,"12,40,000","12,40,000",8.4,9,7,9,8.7,8.8,8
Institute of Management Studies ,Delhi ncr,Management,"7,95,000",--,7.9,8.2,7.6,8.3,8.1,8,7.2
"O.P. Jindal Global University, Jindal Global Business ",Delhi ncr,Management,"4,50,000","5,50,000",9.3,9.1,9.3,9.1,9.3,9.1,9.8
Fortune Institute of International Business ,Delhi ncr,Management,"8,90,000",--,8,8.3,6.8,8.6,8,7.9,8.3
Apeejay School of Management ,Delhi ncr,Management,"4,50,000",--,7.7,8.5,6.5,8.3,7.2,7.5,8
GL Bajaj Institute of Management and Research ,Delhi ncr,Management,"3,40,000","3,40,000",7.7,8.2,7.2,7.7,7.9,7.9,7.4
"Faculty of Management Studies, Manav Rachna International ",Delhi ncr,Management,"2,98,500","1,65,000",8.7,--,--,9,--,8,9
Institute of Technology and Science ,Delhi ncr,Management,"3,00,000","1,15,800",8.2,8.6,7.5,8.3,8.6,7.9,8.1
Jagannath International Management School ,Delhi ncr,Management,"7,95,000",--,8.4,8.9,7.3,9,8.2,8.5,8.5
JK Business School ,Delhi ncr,Management,"93,000","3,58,900",8.2,8.2,8.3,8.2,8.4,7.6,8.4
IFMR Graduate School of Business ,Andhra pradesh,Management,"7,18,000",--,8.2,8.3,8.1,8.4,8.3,8.5,7.8
K L University Business School ,Andhra pradesh,Management,"1,85,000","2,85,000",8.5,8.4,8.4,9,9.2,7.4,8.7
GITAM Institute of Management ,Andhra pradesh,Management,"2,10,000","3,96,000",8.5,8.6,7.3,8.8,9.2,8.4,8.7
K L University ,Andhra pradesh,Management,"2,85,000","1,85,000",8.3,8.5,7.6,8.3,8.8,8.3,8.2
"Krea University, Sri City ",Andhra pradesh,Management,"13,86,000",--,8.6,8.2,8.6,8.7,8.6,8.8,8.8
Indian Institute of Management Visakhapatnam ,Andhra pradesh,Management,"14,33,250","16,50,000",8.9,8.8,9,9,8.8,8.8,8.8
GEMS B School ,Andhra pradesh,Management,"2,50,000","3,60,000",9.1,9.5,8.5,9.5,9,9,9
VIT University ,Andhra pradesh,Management,"2,75,000","43,000",8.2,8.3,7.9,8.3,8.1,8.4,8.1
Sri Venkateswara University ,Andhra pradesh,Management,"23,200",--,8.1,7.9,8.3,8.2,7.9,7.7,8.4
"SRM University, Amaravathi ",Andhra pradesh,Management,"2,60,000","2,95,000",8.7,8.7,8.1,9.2,9.2,8.4,8.4
Indian Institute of Tourism and Travel Management ,Andhra pradesh,Management,"1,08,850","1,88,600",8.4,9.3,8.5,9,8.2,8,7.5
Integral Institute of Advanced Management ,Andhra pradesh,Management,"1,60,000",--,6.9,7.2,4.4,7.6,7.2,7.2,8
"Risali Institute of Management, Visakhapatnam ",Andhra pradesh,Management,--,--,8.4,8.2,8.3,8.3,8.8,8.4,8.4
"Sree Vidyanikethan Institute of Management, Tirupati ",Andhra pradesh,Management,"74,000",--,8.6,8.6,8.4,8.7,8.7,8.1,8.8
Accord Business School ,Andhra pradesh,Management,"45,000",--,--,--,--,--,--,--,--
VIT-AP School of Business ,Andhra pradesh,Management,"2,75,000","43,000",8.1,8.8,8.3,8.3,7.8,7.8,7.8
Nimra College of Business Management ,Andhra pradesh,Management,"34,000",--,7.5,9,5,9,--,--,--
"Wings Business School, Tirupati ",Andhra pradesh,Management,"50,000",--,6.8,6.6,7.2,6.5,6.5,6.9,7.1
Sun International Institute for Tourism & Management- ,Andhra pradesh,Management,"1,30,500","1,60,500",7.9,8.4,7.3,7.5,7.8,8.5,7.7
Satya Institute of Management Studies ,Andhra pradesh,Management,"41,100",--,--,--,--,--,--,--,--
Sanskrithi School of Business ,Andhra pradesh,Management,"31,500",--,8.5,7.5,5.5,--,--,--,--
Rajiv Gandhi Institute of Management and Science ,Andhra pradesh,Management,"30,000",--,7.8,8.5,6.8,8.5,7.5,6.8,8.5
Emeralds Degree and PG College ,Andhra pradesh,Management,"28,000","79,000",8.6,9.3,8.3,8.6,9.5,7,8.6
Ambedkar Institute of Management Studies ,Andhra pradesh,Management,"1,10,000",--,--,--,--,--,--,--,--
"DNR School of Business Management, Bhimavaram ",Andhra pradesh,Management,"27,000",--,--,--,--,--,--,--,--
Dr. K. V Subba Reddy Institute of ,Andhra pradesh,Management,"34,500",--,8.3,9,9,8.8,7.8,7.5,7.8
Srinivasa Institute of Management Studies ,Andhra pradesh,Management,"35,000",--,--,--,--,--,--,--,--
Sri Krishnadevaraya Institute of Management ,Andhra pradesh,Management,"10,000",--,6,6,--,--,--,--,--
Indian Institute of Management ,Karnataka,Management,"23,00,000","27,50,000",9.1,9,9,9.1,9.2,9.2,8.9
T. A. Pai Management Institute ,Karnataka,Management,"7,55,000",--,8.5,8.5,8.4,8.8,8.6,8.7,7.8
"Alliance University, Bangalore ",Karnataka,Management,"13,50,000","6,00,000",8,8.2,7.2,8.2,8.8,7.6,8
Jagdish Sheth School of Management ,Karnataka,Management,"12,00,000","3,20,000",7.3,7.6,6.4,7.9,7.1,7,7.6
"Christ University, Bangalore ",Karnataka,Management,"3,80,000","1,66,000",8.3,8.5,7.4,8.2,8.9,8.1,8.8
Prin. L.N. Welingkar Institute of Management Development ,Karnataka,Management,"5,50,000",--,8.1,8.7,7.8,8.6,7.9,7.9,7.9
SDM Institute for Management Development ,Karnataka,Management,"2,86,000","11,20,000",8.6,8.6,8.9,8.4,9.3,7.6,8.6
Xavier Institute of Management and Entrepreneurship ,Karnataka,Management,"3,00,000",--,8,8.1,8.1,8.2,7.8,8.1,7.6
Indus Business Academy ,Karnataka,Management,"4,81,000",--,7.3,6.9,6.7,7.5,7.1,7.9,7.4
"AIMS Institutes, Bangalore ",Karnataka,Management,"2,28,000","9,00,000",7.3,7.8,6.6,8.1,6.5,7.2,7.3
Symbiosis Institute of Business Management ,Karnataka,Management,"8,20,000","2,60,000",7.7,8,7.4,7.8,7.8,7.8,7.5
Kristu Jayanti College ,Karnataka,Management,"80,000","25,000",8.4,8.9,7.7,8.4,8.9,8.1,8.5
Manipal Academy of Higher Education ,Karnataka,Management,"4,01,000","1,78,000",8.4,8.5,8.2,8.6,8.8,7.8,8.4
Ramaiah Institute of Technology ,Karnataka,Management,"79,570",--,8.4,8.5,7.8,8.3,8.7,8.3,8.6
"REVA University, Bangalore ",Karnataka,Management,"90,000","3,00,000",8.4,8.3,8.1,8.3,9.3,7.8,8.4
Kirloskar Institute of Advanced Management Studies ,Karnataka,Management,"10,75,000",--,7.8,7.8,7.6,8.1,7.8,8,7.7
RV Institute of Management ,Karnataka,Management,"75,000",--,8,8.4,6.6,8.6,8.4,7.8,8.3
International School of Business and Research ,Karnataka,Management,"9,00,000","1,00,000",7.7,7.9,7.3,8,7.5,7.5,8.2
St Aloysius Institute of Management and Information ,Karnataka,Management,"2,60,000",--,7.5,7.5,6.8,7.7,7.4,7.9,7.6
KLS Gogte Institute of Technology ,Karnataka,Management,"1,08,000",--,8.2,8.4,7.3,8.4,8.6,8,8.6
Agriculture and Food Management Institute ,Karnataka,Management,"1,65,000",--,--,--,--,--,--,--,--
Dayananda Sagar College of Mangaement and Information ,Karnataka,Management,"63,750",--,7.3,8,4,9,8,7,7.5
Adarsh Institute of Management and Information Technology ,Karnataka,Management,"5,00,000",--,7.8,7.7,7.5,8.8,7.8,7.2,7.9
Bharatesh Education Trust's Global Business School ,Karnataka,Management,"1,11,000",--,8.1,8,7.7,8.7,8.3,7.7,8.3
"Presidency University, School of Management, Bangalore ",Karnataka,Management,"1,65,000","3,25,000",7.4,7,5.7,9,9,6.3,--
BMS College of Engineering ,Karnataka,Management,"25,300",--,8.2,8.4,8,8,8,8.3,8.7
"The Oxford College of Business Management, Bangalore ",Karnataka,Management,"50,000","70,000",6.6,7,6.2,7.8,7,5.8,5.9
KLS Institute of Management Education & Research ,Karnataka,Management,"2,10,000",--,8.9,9.5,8,9.3,9.5,9,8.3
Indian Academy Group of Institutions ,Karnataka,Management,"2,77,000","5,19,000",7.9,8.6,7.6,8.5,7.5,7.8,7.6
T John College ,Karnataka,Management,"88,700","2,67,700",8,8.1,7.8,8.1,8.5,7.6,7.8
Indian School of Business ,Telangana,Management,"10,20,000","47,00,000",9.3,8.9,9.4,9.6,9.6,9.3,9.2
ICFAI Foundation for Higher Education ,Telangana,Management,"2,50,000","7,00,000",8.2,8.3,7.5,8.1,8.6,7.8,8.9
ICFAI Business School ,Telangana,Management,"7,10,000","2,60,000",8.2,8.2,8,8.1,8.5,7.8,8.7
Narsee Monjee Institute of Management Studies ,Telangana,Management,"2,52,000","8,27,000",8.8,8.9,8.4,9.2,8.9,8.5,8.9
Institute of Management Technology ,Telangana,Management,"6,03,000","5,00,000",8.6,8.6,8.6,8.7,8.8,8.4,8.5
Woxsen School of Business ,Telangana,Management,"3,05,000","6,95,000",8.3,8.1,8.1,8.6,8.4,8.2,8.3
National Institute of Agricultural Extension Management ,Telangana,Management,"8,25,000","7,000",8.6,8.8,7.8,8.9,8.4,9,8.7
Institute of Public Enterprise ,Telangana,Management,"4,55,000","3,80,000",8.3,8.1,7.6,8.9,9,7.8,8.3
Birla Institute of Technology and Science ,Telangana,Management,"1,10,125",--,9,9,8.4,8.8,9.4,9.1,9.4
Symbiosis Institute of Business Management ,Telangana,Management,"6,80,000",--,8.5,8.3,8.3,8.6,8.9,8.6,8.3
"Aurora's Business School Panjagutta, Hyderabad ",Telangana,Management,"2,70,000",--,6.6,6.4,6.2,7.2,6.5,6.7,6.8
Dhruva College of Management ,Telangana,Management,"6,55,000",--,9,9.1,9.4,8.9,9.7,8.4,8.4
ICBM School of Business Excellence ,Telangana,Management,"5,76,000",--,7.9,8,7.4,8.4,7.7,8.1,7.6
Vignana Jyothi Institute of Management ,Telangana,Management,"4,50,000","7,50,000",8.4,8.5,7.9,8.7,8.6,8.3,8.5
CMR College of Engineering & Technology ,Telangana,Management,"50,000",--,8.2,8.5,8,8.1,8.6,8.3,7.9
"Aristotle Post Graduate College, Hyderabad ",Telangana,Management,"40,000",--,8,8.2,7.6,9,7.6,7.6,8
"St Joseph's Degree and PG College, Hyderabad ",Telangana,Management,"54,000",--,7.8,8.2,6.4,8.4,7.5,8,8.1
Chaitanya Bharathi Institute of Technology ,Telangana,Management,"43,000",--,8.2,8.5,7.1,8.4,8.3,8.6,8.5
"ITM Business School, Warangal ",Telangana,Management,"2,70,000",--,7.4,7.2,7.1,7.6,6.9,7.9,7.5
"Amjad Ali Khan College of Business Administration, ",Telangana,Management,"27,000",--,8.4,8.9,7.6,9.1,8.4,7.9,8.6
Siva Sivani Institute of Management ,Telangana,Management,"6,60,000","6,22,038",7.4,7.6,7.2,7.6,7.3,7.3,7.5
K L University ,Telangana,Management,"2,85,000","1,85,000",7.9,7.9,7.4,8.1,8.2,7.6,8.1
Symbiosis International University ,Telangana,Management,"6,80,000",--,8.9,9,8.7,9,8.9,9,8.8
National Institute of Rural Development and Panchayati ,Telangana,Management,"10,500",--,8.5,8.8,8.3,8.5,8.3,8.6,8.2
National Institute of Construction Management and Research ,Telangana,Management,"10,59,100",--,7.5,7.2,7.1,7.5,7.2,8.1,7.6
Vishwa Vishwani Institute of Systems and Management ,Telangana,Management,"3,70,000","3,70,000",7.7,7.5,7.1,8,7.9,7.9,7.8
Institute of Insurance and Risk Management ,Telangana,Management,"3,20,000","2,70,000",8.1,7.9,7.7,8.4,8,8.2,8.3
Indian Institute of Management and Commerce ,Telangana,Management,"52,500",--,7.7,8.3,5.3,8.6,7.5,8.1,8.3
Hyderabad School of Business ,Telangana,Management,"63,000","1,13,300",7.7,8,7.3,8.3,7.7,7.4,7.5
Pendekanti Institute of Management ,Telangana,Management,"92,000",--,8,8.4,6,8.5,8.4,7.8,8.8
Indian Institute of Management ,Madhya pradesh,Management,"9,80,000","50,000",8.9,8.8,8.9,8.9,9,8.9,8.6
Indian Institute of Forest Management ,Madhya pradesh,Management,"6,24,000","6,24,000",9,9,9.1,9,9.3,8.5,9.1
Prestige Institute of Management and Research ,Madhya pradesh,Management,"52,000","1,46,500",7.9,8.2,7,8.4,7.3,7.7,8.5
"Jaipuria Institute of Management, Indore ",Madhya pradesh,Management,"3,95,000",--,8.4,8.4,7.8,8.5,8.9,8.3,8.6
Prestige Institute of Management ,Madhya pradesh,Management,"36,000","80,000",6.1,7,5,6,6,6.3,6.5
Institute of Business Management & Research ,Madhya pradesh,Management,"1,15,000",--,8.4,8.3,8,8.6,9,7.8,8.9
People's Institute of Management & Research ,Madhya pradesh,Management,"30,000","70,000",--,--,--,--,--,--,--
Shri Vaishnav Institute of Management ,Madhya pradesh,Management,"42,120","73,620",8.1,8.6,7.1,8.7,8,7.5,8.6
CH Institute of Management & Commerce ,Madhya pradesh,Management,"12,000","58,000",7.2,8,7,7,8.3,6.3,6.7
Vidyasagar Institute of Management ,Madhya pradesh,Management,"43,100",--,--,--,--,--,--,--,--
"SAGE University, Indore ",Madhya pradesh,Management,"70,000","70,000",8.7,8.7,7.9,8.8,9.2,8.5,9
"Amity University, Gwalior ",Madhya pradesh,Management,"80,000","64,000",8.6,8.8,8.5,8.4,9.3,8,8.3
"Jagran LakeCity Business School, Bhopal ",Madhya pradesh,Management,"1,35,000","1,75,000",8.1,7.9,9,--,8.3,7.3,--
"VIT Bhopal University, Bhopal ",Madhya pradesh,Management,"70,000","43,000",7.9,8.6,7.7,8.4,7.1,8.1,7.4
"RKDF University, Bhopal ",Madhya pradesh,Management,"90,000","18,000",7.6,8,7,7.8,8,6.5,8.2
Awadhesh Pratap Singh University ,Madhya pradesh,Management,"24,000","30,000",7.1,7.9,6.5,8.1,7.2,5.3,7.3
Rabindranath Tagore University ,Madhya pradesh,Management,"50,000","90,000",7.7,8,7.4,7.8,8.6,6.4,7.8
Oriental University ,Madhya pradesh,Management,"50,000","2,41,775",7.2,7.5,6.7,7.2,7.7,7.1,7.1
AKS University ,Madhya pradesh,Management,"54,000","60,000",7.3,7.8,5.9,8.2,7.6,6.9,7.4
"ITM University, Gwalior ",Madhya pradesh,Management,"1,50,000","70,000",7.6,7.9,7,7.6,8.1,7.2,8
Jagran Lakecity University ,Madhya pradesh,Management,"1,35,000","1,75,000",8,8,7.9,7.8,8.6,7.4,8.1
Narsee Monjee Institute of Management Studies -[NMIMS ,Madhya pradesh,Management,"2,52,000","7,27,000",8.7,8.4,8.9,9.7,9.2,6.2,9.6
"Swami Vivekanand University, Sagar ",Madhya pradesh,Management,"27,600","42,600",6.3,6.9,5,7,6.4,5.6,6.6
Institute of Professional Education and Research ,Madhya pradesh,Management,"62,450","1,03,000",8.5,9,7.5,9,8.2,8,9.2
"Institute of Management Studies, Devi Ahilya Vishwavidyalaya ",Madhya pradesh,Management,"63,600","59,211",7.7,8.1,6.9,8.1,7.1,7.7,8.1
LNCT University ,Madhya pradesh,Management,"85,000","45,000",9,9,8.8,9.3,8.8,8.9,8.9
Indian Institute of Management ,Kerala,Management,"22,50,000","45,000",8.9,8.9,8.9,9.1,9.1,9.1,8.3
Rajagiri Centre for Business Studies ,Kerala,Management,"7,00,000",--,7.7,7.3,7.5,7.9,7.5,8.1,7.7
"SCMS Cochin School of Business, Cochin ",Kerala,Management,"3,75,000",--,7.5,8,8.1,7.4,8.3,7.2,6.1
National Institute of Technology ,Kerala,Management,"27,405","82,405",8.1,8.4,7.9,7.7,8,8.1,8.2
Xavier Institute of Management and Entrepreneurship ,Kerala,Management,"4,00,000",--,9.1,9.2,8.7,9.3,9.2,9,9.1
Saintgits Institute of Management ,Kerala,Management,"2,27,000",--,8.7,8.7,8,9,8.7,8.8,8.7
Nehru College of Engineering and Research Centre ,Kerala,Management,"40,000",--,6.7,7,6.3,6.7,7.8,5.3,6.8
SCMS School of Technology and Management ,Kerala,Management,"3,60,000",--,7.8,7.9,7.7,8.4,7.5,8.3,7.2
"Lead College of Management, Palakkad ",Kerala,Management,"7,00,000",--,7.6,7.3,7.6,7.8,7.4,7.9,7.8
Farook Institute of Management Studies ,Kerala,Management,"1,70,000",--,8.9,9,9,9,9.1,8.1,8.9
Berchmans Institute of Management Studies ,Kerala,Management,"2,85,000",--,7.6,7.3,7,8,8.8,6.8,7.5
Holy Grace Academy of Management Studies ,Kerala,Management,"1,28,000",--,8.5,8.7,8.3,8.3,8.5,8.2,9
"MES College Marampally, Aluva ",Kerala,Management,--,--,8.8,8.9,8.4,9.1,9.3,8,9
"Jain University, Kochi ",Kerala,Management,--,--,8.7,8.6,8.1,9.1,8.7,8.8,8.9
Rajagiri Business School ,Kerala,Management,"12,30,500","3,25,000",8.2,8.4,7.4,8.1,8.9,7.5,9
"Albertian Institute of Management- [AIM], Cochin ",Kerala,Management,"1,90,376",--,8,8,6.5,8.8,8.8,7.8,8.2
Yuvakshetra Institute of Management Studies ,Kerala,Management,"96,000",--,6.9,7.7,5.8,6.8,8,6.5,6.7
"IIKM Business School, Calicut ",Kerala,Management,"90,000","3,85,000",8.2,7.7,8,8,8.7,8.7,8
"Naipunnya School of Management, Cherthala ",Kerala,Management,"18,000",--,7.5,7.4,6.8,8.1,7.8,7.6,7.3
State Institute of Hospitality Management ,Kerala,Management,"30,000","30,000",7.8,8.5,6.8,8,7.3,8.8,7.3
Kochi Business School ,Kerala,Management,"3,20,000","2,50,000",7.7,7.7,7.3,7.8,7.5,7.9,7.9
Amrita School of Business ,Kerala,Management,"6,60,000",--,9.4,9.7,9,--,--,--,--
Mar Athanasios College for Advanced Studies Tiruvalla ,Kerala,Management,"96,600",--,8.7,9.3,9.3,8.6,8.8,8,8.4
Amity Global Business School ,Kerala,Management,"1,61,000","2,99,000",8.6,9,7.5,8.8,8.6,8.6,9.2
Bhavan's Royal Institute of Management ,Kerala,Management,"1,63,000",--,7.7,8,7.5,7.4,6.7,7.9,8.4
"Don Bosco College Sulthan Bathery, Wayanad ",Kerala,Management,"38,600","45,000",7.9,8.3,6.8,8.5,8.3,6.8,8.5
Girideepam Institute of Advanced Learning ,Kerala,Management,"89,000",--,7.2,8.4,5.4,8.6,7,6.6,7.3
Indian School of Business Management and Administration ,Kerala,Management,"14,900","95,900",9.2,9.7,9.7,9.3,9.3,9,8.3
Indian Institute of Management ,Rajasthan,Management,"18,50,000","13,00,000",9,8.9,8.9,9.1,9,8.9,9
"Jaipuria Institute of Management, Jaipur ",Rajasthan,Management,"4,40,000",--,7.8,8.1,6.7,8,7.7,8.1,8
Birla Institute of Technology and Science ,Rajasthan,Management,"4,23,975","86,825",8.9,8.8,8.2,8.8,9,9,9.3
Institute of Rural Management ,Rajasthan,Management,"3,70,000",--,5.3,6,3.8,5.5,3.8,6.3,6.3
International School of Informatics and Management ,Rajasthan,Management,"32,000",--,7.8,8.3,7,8.2,7.1,7.9,8.1
Institute of Agri Business Management ,Rajasthan,Management,"1,71,960",--,7.8,8.3,7.8,8.3,8.3,6.8,7.5
"Jagannath University, Jaipur ",Rajasthan,Management,"75,000","1,55,000",7.3,7.1,6.7,7.9,7.7,6.9,7.4
"Jaipur National University, School of Business & ",Rajasthan,Management,"68,700","2,50,000",8.1,8.4,8,9,7.4,7.6,8.3
"Poddar Management and Technical Campus, Jaipur ",Rajasthan,Management,"2,00,000",--,8.5,--,--,--,--,--,--
JECRC University ,Rajasthan,Management,"1,20,000","1,25,000",8.1,8.1,7.4,8.2,8.2,8.1,8.7
Jagan Institute of Management Studies ,Rajasthan,Management,"5,95,000",--,8.4,7.9,8.2,8.6,8.5,8.5,8.6
"Amity University, Jaipur ",Rajasthan,Management,"3,34,000","22,40,000",8,7.8,7.6,7.8,8.9,7.4,8.7
University of Rajasthan ,Rajasthan,Management,"5,440","23,300",7.6,8.1,7.1,8.1,7.9,6.5,7.8
Taxila Business School ,Rajasthan,Management,"4,55,000","1,60,000",8.3,8.6,7.6,9,7.8,8.6,8.1
"Singhania University, Jhunjhunu ",Rajasthan,Management,"42,000","22,000",7.1,7.1,6.7,7.1,7.1,7,7.3
Jaipur National University ,Rajasthan,Management,"1,80,500","1,32,000",7.5,7.9,7,7.7,7.8,6.7,7.6
Manipal University ,Rajasthan,Management,"4,07,000","1,53,000",8.4,8.2,8.3,8.2,9.2,7.7,9
SunRise University ,Rajasthan,Management,"24,200","62,200",8.1,8.1,7.3,8.7,8.1,7.9,8.4
"OPJS University, Churu ",Rajasthan,Management,"93,800","36,200",7.2,7.1,7.6,7.6,7.7,6.3,6.8
"Banasthali Vidyapith, Jaipur ",Rajasthan,Management,"1,63,500","1,61,500",8.5,8.8,8.2,8.9,8.6,7.9,8.8
Suresh Gyan Vihar University ,Rajasthan,Management,"80,000","2,00,000",7.5,7.8,6.7,7.5,8.8,6.3,8
IIS (Deemed to be University) ,Rajasthan,Management,"4,77,300","99,300",8.3,8.6,8.5,8.6,8,7.9,8.4
Madhav University ,Rajasthan,Management,"60,000","60,000",7.8,7.9,7.5,8.2,7.9,7.3,7.8
"Tantia University, Sriganganagar ",Rajasthan,Management,"40,000","75,000",8.6,8.8,8.4,9.3,8.8,7.1,9.1
"Pacific University, Udaipur ",Rajasthan,Management,"42,500","50,000",7.7,7.8,7.3,8.1,7.8,7.2,8
Management Development Institute ,Haryana,Management,"23,58,000","3,19,668",9,8.8,8.9,9,9.1,9.2,8.8
Indian Institute of Management ,Haryana,Management,"5,05,000","1,30,000",8.5,8.7,8.6,8.4,8.4,8.6,8.2
"University Business School, Panjab University ",Haryana,Management,"25,660",--,8.3,8.1,8.4,8.4,7.9,8.1,8.7
"University School of Business, Chandigarh University ",Haryana,Management,"1,05,000","1,95,000",9.1,9.1,8.8,9.1,9.2,9.3,8.9
"IILM Institute for Business & Management [IILM-IBM], ",Haryana,Management,"1,15,000","1,15,000",6.5,6.4,5.7,6.3,6.3,7.3,6.8
"O.P. Jindal Global University, Jindal Global Business ",Haryana,Management,"4,50,000","5,50,000",9.3,9.1,9.3,9.1,9.3,9.1,9.8
"Faculty of Management Studies, Manav Rachna International ",Haryana,Management,"2,98,500","1,65,000",8.7,--,--,9,--,8,9
JK Business School ,Haryana,Management,"93,000","3,58,900",8.2,8.2,8.3,8.2,8.4,7.6,8.4
Manav Rachna International Institute of Research and ,Haryana,Management,"2,98,500","1,61,000",7.5,7.4,7.3,7.5,8.3,6.6,7.6
"IBMR Business School, Gurgaon ",Haryana,Management,"2,97,000","5,75,000",8,8.3,7.8,8.2,7.8,8,7.8
Tilak Raj Chadha Institute of Management & ,Haryana,Management,"40,540","76,900",8.1,8.3,7.2,8.8,7.2,8.5,8.8
Amity Business School ,Haryana,Management,"30,000",--,7.5,7.4,7.4,7.7,8,6.9,7.3
"SRM University Delhi NCR, Sonepat ",Haryana,Management,"1,72,500","2,86,000",7.8,8,7.5,7.9,8.1,7.6,7.9
"Gurugram University, Gurgaon ",Haryana,Management,"40,000","40,000",8.2,8.6,7.4,8.4,8.6,8,8.1
"Great Learning, Gurgaon ",Haryana,Management,"2,25,000","3,00,000",7.7,7.5,6,8.6,8,8.4,7.8
"PDM University, Bahadurgarh, Bahadurgarh ",Haryana,Management,"81,700","1,35,000",7.4,7.1,7.6,7.4,7.5,7.1,7.7
BML Munjal University ,Haryana,Management,"5,25,000","2,72,000",8.1,8,8,7.9,8.5,7.8,8.3
"Amity University, Gurgaon ",Haryana,Management,"4,32,000","2,48,000",7.7,7.8,7.1,7.6,8.6,7.1,8.1
O. P. Jindal Global University ,Haryana,Management,"5,50,000","1,20,000",8.3,8.4,8.2,8.3,8.8,7.5,8.7
"IILM University, Gurgaon ",Haryana,Management,"7,50,000","3,30,000",8.4,8.2,7.4,8.5,8.6,8.6,8.8
ICFAI Business School ,Haryana,Management,"4,00,500",--,7.6,8.2,6.5,8.1,7.2,7.8,8
"Starex University, Gurgaon ",Haryana,Management,"1,00,000","65,000",8.8,9.1,9.1,8.7,8.6,8.5,8.7
Great Lakes Institute of Management ,Haryana,Management,"14,01,000","14,01,000",8.5,8.7,8.2,8.5,8.8,8.6,8.4
Modern Vidya Niketan ,Haryana,Management,"90,000","95,000",7,7.2,6.4,7.7,7,6.8,6.8
National Institute of Financial Management ,Haryana,Management,"15,00,000",--,8.8,9.3,9,8.7,8.1,8.1,9.4
Manav Rachna University ,Haryana,Management,"1,64,500","1,30,000",7.8,7.6,7.5,7.7,8.8,7.3,7.9
"Sushant University / Ansal University, Gurgaon ",Haryana,Management,"1,45,000","3,98,000",7.8,8,8,7.9,8.4,7,7.5
"NIILM University, Kaithal ",Haryana,Management,"2,40,000","40,000",8.1,8.6,7.9,8.5,7.9,7.8,8.1
Indian Institute of Management ,Gujarat,Management,"28,00,000","10,00,000",9,8.9,8.9,9.1,9,9.2,8.6
"Institute of Management, Nirma university, Ahmedabad ",Gujarat,Management,"5,02,000","58,500",8.6,8.3,8.5,8.8,9,8.3,8.7
Institute of Rural Management ,Gujarat,Management,"8,60,000","5,83,400",8.9,8.9,8.8,9,9,8.9,8.9
ITM Vocational University ,Gujarat,Management,"62,000","57,000",7.8,8.7,7.4,8,7.5,7.1,7.9
Maharaja Sayajirao University of Baroda ,Gujarat,Management,"23,100","21,660",7.9,8.3,7,8.4,8,7.2,8.4
S. V. Institute of Management ,Gujarat,Management,"97,000",--,7.8,8.2,7.3,8.6,7.6,7.2,8.1
Sardar Patel University ,Gujarat,Management,"68,140","12,500",7.8,8.6,7,8.5,7.7,7.3,7.8
Nirma University ,Gujarat,Management,"5,02,000","97,200",8.4,8.6,8,8.4,9.1,8.1,8.2
Pandit Deendayal Petroleum University [PDPU] / (Energy ,Gujarat,Management,"2,49,000","4,19,000",8.6,8.3,8.3,8.1,9.4,8.1,9.4
"CEPT University, Ahmedabad ",Gujarat,Management,"3,78,000",--,8.2,8.6,7.7,8.4,8.3,8.1,8
Ganpat University ,Gujarat,Management,"95,000","60,000",8.1,8.2,7.2,8.1,8.5,7.8,8.6
"Indus University, Ahmedabad ",Gujarat,Management,"85,000","65,500",7.5,7.9,7,7.7,7.8,6.8,7.9
Marwadi University ,Gujarat,Management,"67,000","1,20,000",8.3,8.2,8.3,8.2,9.1,7.7,8.2
MICA ,Gujarat,Management,"21,00,000","70,000",9,8.8,9,9,9.1,8.8,9.1
Navrachana University ,Gujarat,Management,"1,14,000","1,10,000",7.7,7.7,7.4,8.2,8,7.2,7.8
"GLS University, Ahmedabad ",Gujarat,Management,"1,22,000","50,000",7.9,8,6.9,8.5,8.1,7.6,8.5
Karnavati University ,Gujarat,Management,"1,80,000","1,44,000",8.9,8.6,8.2,9.3,9.4,8.6,9.3
Children's University ,Gujarat,Management,"1,500",--,8.1,8.3,7.7,8.8,7.7,7.4,8.5
Indian School of Business Management and Administration ,Gujarat,Management,"14,900","69,900",8,8.8,7.6,8.1,8,7.9,7.8
"Uka Tarsadia University, Bardoli ",Gujarat,Management,"81,000","67,000",8.1,7.8,7.9,8.2,9.4,6.9,8.3
"GSFC University, Vadodara ",Gujarat,Management,"86,000",--,8.1,8.8,6.4,8.7,8.5,7.9,8.4
"Auro University, Surat ",Gujarat,Management,"2,90,000","2,70,000",8.3,8.2,8.5,8.6,8.7,7.2,8.6
RK University ,Gujarat,Management,"89,500","61,000",8.5,9,7.9,8.6,9,7.8,8.5
"Sumandeep Vidyapeeth, Vadodara ",Gujarat,Management,"70,200","80,000",7.8,8,7,8.2,8,7.5,8
"Atmiya University, Rajkot ",Gujarat,Management,"92,650","21,300",8.1,8.8,7.5,8.6,8.4,7.4,7.9
"Ahmedabad Management Association, Ahmedabad ",Gujarat,Management,"40,000","40,000",8.6,9.2,8.3,8.8,8.6,8.1,8.3
"B K School of Business Management, Ahmedabad ",Gujarat,Management,"15,000","10,000",7.9,8.3,6.8,8.2,7.4,8.3,8.1
"C. U. Shah University, Wadhwan ",Gujarat,Management,"22,100","58,500",7.7,7.6,7,8.2,7.8,7.4,7.9
"P.P. Savani University, Surat ",Gujarat,Management,"78,500","1,98,500",9.3,9.4,8.9,9.5,9.6,8.7,9.4
"University Business School, Panjab University ",Punjab,Management,"25,660",--,8.3,8.1,8.4,8.4,7.9,8.1,8.7
"University School of Business, Chandigarh University ",Punjab,Management,"1,05,000","1,95,000",9.1,9.1,8.8,9.1,9.2,9.3,8.9
"Chitkara University, Chitkara Business School ",Punjab,Management,"2,12,000","2,83,000",8.5,8.9,7.4,8.5,9.1,8.5,8.6
"PCTE Group of Institutes, Ludhiana ",Punjab,Management,"55,550","97,350",7.7,8,7.2,8,8,6.8,8.3
Chandigarh Business School of Administration ,Punjab,Management,"49,900","92,000",8,8,7.4,8.1,8,8.4,8.3
Baba Farid College of Management and Technology ,Punjab,Management,"1,08,700",--,8.3,8.4,8.3,8.4,8.3,7.9,8.4
Chitkara University ,Punjab,Management,"5,66,000","3,50,000",8.5,8.4,7.7,8.5,8.9,8.7,8.7
Indian Institute of Management ,Punjab,Management,"6,00,000","9,50,000",9,8.8,9.1,9.1,8.9,9.1,8.7
"RIMT University, Gobindgarh ",Punjab,Management,"1,50,000","57,000",7.6,7.9,7.3,7.8,8,6.7,7.8
"Guru Kashi University, Bathinda ",Punjab,Management,"62,580","24,580",7.5,7.4,7.2,8,7.2,7.2,7.8
"Rayat Bahra University, Mohali ",Punjab,Management,"50,000","1,10,000",7.7,7.8,7.4,8,7.7,7.4,7.6
"DAV University, Jalandhar ",Punjab,Management,"87,500","1,45,000",7.9,8.4,7,8.4,7,8,8.5
"GNA University, Phagwara ",Punjab,Management,"54,000","1,67,400",7.7,8,7.6,7.9,7.8,7.2,7.7
Indian School of Business ,Punjab,Management,"10,20,000","47,60,000",8.9,9,8.9,9,8.9,8.6,8.7
"Adesh University, Bathinda ",Punjab,Management,"90,000","1,37,500",8.6,8.8,8.8,8.5,9,8.3,8.3
Sant Baba Bhag Singh University ,Punjab,Management,"82,500","44,000",8.5,9,8.2,8.6,8,8.5,8.6
Sri Guru Granth Sahib World University ,Punjab,Management,"1,04,000","42,000",8.8,8.6,9,9,9.1,8.4,8.7
"Sri Aurobindo College of Commerce and Management, ",Punjab,Management,"77,000",--,7.1,8.9,6.8,8.8,6.9,3.7,7.3
LM Thapar School of Management ,Punjab,Management,"4,15,860","4,80,000",7.9,7.7,8.1,8,7.9,7.7,7.8
Global Institute of Management ,Punjab,Management,"46,850","80,750",--,--,--,--,--,--,--
Malout Institute of Management and Information Technology ,Punjab,Management,"44,950","90,549",7.7,8,7.8,7.4,8.3,6.4,8
Punjab College of Technical Education ,Punjab,Management,"51,250","96,650",8,7.7,8.1,7.9,8.3,7.1,8.8
Global Institute of Management and Emerging Technologies ,Punjab,Management,--,--,7.4,7.6,7,7.7,8.4,6.3,7.3
"UEI Global, Ludhiana ",Punjab,Management,"1,10,000","35,000",8.4,8.2,8.2,8.3,8.3,9,8.5
Rayat Institute of Management ,Punjab,Management,"46,850","80,750",9.3,--,--,--,--,--,--
Synetic Business School ,Punjab,Management,"46,250","90,000",7.4,6.3,--,--,7.7,8.3,--
Cordia Institutes of Hospitality and Tourism Management ,Punjab,Management,"62,850",--,--,--,--,--,--,--,--
Cordia Business School ,Punjab,Management,"35,000","85,000",--,--,--,--,--,--,--
Indian Institute of Management ,West bengal,Management,"27,00,000","2,68,000",8.9,8.9,8.8,9,8.8,9.1,8.5
Vinod Gupta School of Management ,West bengal,Management,"6,00,000","10,000",8.9,9,8.7,8.8,9.1,8.7,9.1
"International Management Institute- [IMI], Kolkata ",West bengal,Management,"6,27,950","1,02,000",8.6,8.8,8.4,8.7,8.9,8.6,8.3
Indian Institute of Social Welfare and Business ,West bengal,Management,"2,55,000","35,000",7.7,8.6,6.5,8.3,6.9,8,8
Calcutta Business School ,West bengal,Management,"3,50,000",--,8.5,8.4,8.6,8.4,8.4,8.8,8.5
Eastern Institute for Integrated Learning In Management ,West bengal,Management,"2,70,000","6,50,000",7.5,7.6,6.6,7.5,7.4,8.1,7.6
ICFAI Business School ,West bengal,Management,"4,00,500",--,8.8,9.2,8.2,9.2,8.5,8.9,8.9
Institute of Engineering and Management ,West bengal,Management,"3,20,000","1,15,000",7.5,8.2,6.5,8,6.7,8.4,7.2
Bhartiya Vidya Bhavan Institute of Management Science ,West bengal,Management,"1,06,000","5,51,000",8,8.5,6.8,8.8,8.2,7.4,8.3
Institute of Management Study ,West bengal,Management,"55,000","2,60,000",7.3,7.8,6.4,7.7,7.6,7.3,6.8
"Amity University, Kolkata ",West bengal,Management,"80,000","1,90,000",8.2,8.1,7.7,8.4,8.8,7.4,8.5
"Techno India University, Kolkata ",West bengal,Management,--,--,8,8.2,7.4,8.2,8.1,7.8,8.4
"Adamas University, Kolkata ",West bengal,Management,"82,000","2,51,400",8.2,8.3,7.5,8.5,9,7.8,7.8
"Brainware University, Kolkata ",West bengal,Management,"3,37,200","1,00,000",7.9,8.3,7.6,7.9,8.2,7.8,7.3
Sister Nivedita University ,West bengal,Management,"1,19,000","3,51,000",8.2,8.2,7.6,8.9,7.9,7.8,8.7
St. Xavier's University ,West bengal,Management,"5,55,000","1,32,000",8.4,8.7,8,8.3,8.9,7.8,8.4
Management Development Institute ,West bengal,Management,"4,41,000",--,8.4,8.3,8.7,8.4,8.2,7.9,8.6
"Praxis Business School, Kolkata ",West bengal,Management,"3,89,000",--,8.6,9.3,8,9,8.3,8.7,8
The Neotia University ,West bengal,Management,"98,000","1,06,000",8.2,8.7,7.5,8.5,8.2,7.8,8.6
"Goenka College of Commerce and Business Administration, ",West bengal,Management,--,--,7.8,8.9,6.1,8.6,7.5,7.5,8.1
Indian Institute of Foreign Trade ,West bengal,Management,"4,00,000","75,000",9,9.2,8.7,9.2,8.9,9.2,8.9
Globsyn Business School ,West bengal,Management,"7,95,000","14,000",8.1,8.4,7.7,8.1,8.1,8,8
Seacom Skills University ,West bengal,Management,"1,10,000","60,000",7.5,8.4,6.4,8.9,7.4,6.7,7.3
Army Institute of Management ,West bengal,Management,"4,26,144",--,8.9,8.7,9,8.8,8.5,9,9.1
Bengal Institute of Business Studies ,West bengal,Management,"3,66,400",--,7.3,7.3,6.6,7.9,7.1,7.7,7.1
Indian Maritime University ,West bengal,Management,"2,00,000",--,8.1,8.4,7.8,8.4,7.6,8.2,8.3
The Heritage Academy ,West bengal,Management,"1,26,850",--,8.3,8.8,7.9,8.6,8.8,6.7,8.7
National Institute of Management ,West bengal,Management,"1,14,000","82,000",8.5,8.4,7.4,8.8,8.7,8.7,8.9
"Inspiria Knowledge Campus, Siliguri ",West bengal,Management,"1,25,000",--,8.1,8.1,7.4,8.4,8.6,8,8.2
International School of Hospitality Management ,West bengal,Management,"2,42,000",--,8.8,8.6,8.6,9,8.7,8.9,9.2
KIIT School of Management ,Orissa,Management,"2,80,000","4,60,000",8.7,8.9,8.5,8.7,9.4,8.2,8.2
Xavier University ,Orissa,Management,"8,60,000","1,67,000",8.2,8.7,7.8,8.4,9.2,6.8,8.4
International Management Institute ,Orissa,Management,"2,55,000","6,00,000",9.2,9.2,9,9.3,9.4,9,9.1
Institute of Management and Information Science ,Orissa,Management,"2,58,000",--,8.2,8.7,8.3,8.5,7.8,8,7.8
Gandhi Institute of Management Studies ,Orissa,Management,"1,46,000",--,6.4,7,5.5,6.6,7.9,5,6.5
GITA Autonomous College ,Orissa,Management,"75,000",--,8.7,9,8.3,8.9,8.8,8.3,8.6
"Astha School of Management, Bhubaneswar ",Orissa,Management,"1,60,000",--,9,9.1,8.6,9.3,9.4,8.6,9.1
Xavier Institute of Management ,Orissa,Management,"10,80,000","15,50,000",8.2,8.3,7.9,8.5,8.3,7.9,8.4
Kalinga Institute of Industrial Technology ,Orissa,Management,"3,59,000","2,25,000",8.6,8.4,8.1,8.2,9.2,8.6,9
Centurion University of Technology and Management ,Orissa,Management,"1,00,000","50,000",8.1,8.3,7.6,8.5,8.4,7.4,8.5
KIIT School of Rural Management ,Orissa,Management,"7,59,000",--,9.1,9.5,8.9,9.2,9.2,9,8.6
Sri Sri University ,Orissa,Management,"3,51,890","1,21,890",7.1,7.3,6.7,7,7.3,6.3,8.2
"Khallikote University -[KUB], Berhampur ",Orissa,Management,"24,700",--,8.6,8.6,8.1,8.7,9,8.2,8.7
Indian Institute of Management ,Orissa,Management,"13,03,000","9,00,000",8.8,8.8,8.7,9,8.8,9.1,8.5
Birla Global University ,Orissa,Management,"1,60,000","1,20,000",8.3,8.8,8.1,7.8,8.8,8.1,8.4
Siksha 'O' Anusandhan University ,Orissa,Management,"3,00,000","1,00,000",8.3,8.6,7.6,8.3,8.7,8,8.5
"Srusti Academy of Management, Bhubaneswar ",Orissa,Management,"48,450","1,36,950",8.1,8.3,7.7,8.6,8.2,7.3,8.3
Rourkela Institute of Management Studies ,Orissa,Management,"47,500","1,12,000",9,9.2,8.8,9.7,9.5,8.3,8.6
Indian Institute of Tourism and Travel Management ,Orissa,Management,"1,08,850","1,88,600",8.7,9.8,7.3,9.7,9.3,8.5,7.3
Amity Global Business School ,Orissa,Management,"1,18,000","2,30,000",8.7,9.3,8.3,9,8.6,8.4,8.8
NIIS Institute of Information Science & Management ,Orissa,Management,"1,55,000","1,15,000",9,9.2,8.7,9.2,9.2,9,8.7
"NIIS Institute of Business Administration, Bhubaneswar ",Orissa,Management,"1,10,000",--,7.4,7.8,7.5,7.8,7,7.8,6.3
United School of Business Management ,Orissa,Management,"1,14,000",--,8.6,9,8,9,8.3,8.3,9
Madhusudan Institute of Cooperative Management ,Orissa,Management,"51,000",--,5.5,7,6.5,8,4,3.5,4
DAV School of Business Management ,Orissa,Management,"80,000",--,7.8,8.4,7.1,8.6,7.9,6.1,8.5
Attitude Business School ,Orissa,Management,"3,00,000",--,--,--,--,--,--,--,--
Institute of Professional Studies and Research ,Orissa,Management,"65,000","95,000",7.4,7.9,7.6,8.5,7.1,6,7.5
College of IT & Management Education ,Orissa,Management,"1,03,500",--,8.1,9.6,5.2,9.6,8.6,7.2,8.2
"Department of Management Studies, Indian Institute of ",Uttarakhand,Management,"4,09,680","14,680",8.9,8.9,8.7,8.9,9.3,9.1,8.4
Indian Institute of Management ,Uttarakhand,Management,"7,82,500","9,50,000",8.7,8.6,8.7,8.9,8.9,8.5,8.3
University of Petroleum and Energy Studies ,Uttarakhand,Management,"8,41,500","13,34,000",8.1,8.1,7.8,7.9,8.6,7.7,8.2
IMS Unison University ,Uttarakhand,Management,"2,72,726","1,79,200",8.2,8.2,8,8.5,8.5,7.5,8.2
Doon Business School ,Uttarakhand,Management,"2,53,000","1,81,500",7.6,8,7,8.1,7.4,7.4,7.7
Roorkee Institute of Technology ,Uttarakhand,Management,"1,22,000",--,8.5,8.5,8.5,8.6,8.7,8.4,8.5
ICFAI Business School ,Uttarakhand,Management,"2,68,500",--,8.9,9,8.8,9.1,8.6,8.7,9
"Uttaranchal Institute of Management, Dehradun ",Uttarakhand,Management,"82,000","1,48,000",6.8,6.8,5.5,6.8,7.8,5.5,8.3
"Doon University, Dehradun ",Uttarakhand,Management,"81,750","47,750",7.2,7.3,7,7.3,7.9,6.3,7.6
"Uttaranchal University, Dehradun ",Uttarakhand,Management,"1,79,200","1,55,000",7.5,7.8,6.8,7.7,8.6,6.5,7.5
Graphic Era University ,Uttarakhand,Management,"2,71,000","1,36,300",8.3,8.2,7.9,8.4,8.6,8.1,8.4
Graphic Era Hill University ,Uttarakhand,Management,"2,67,000","1,42,800",8.1,7.9,7.8,8.1,8.4,7.7,8.4
"ICFAI University, Dehradun ",Uttarakhand,Management,"2,61,000","2,40,000",7.8,8.2,7.5,8.2,7.4,7.3,7.9
"MotherHood University, Roorkee ",Uttarakhand,Management,"1,05,000",--,8,8.3,7.9,7.6,8,8,8.3
Himgiri Zee University ,Uttarakhand,Management,"1,20,000","70,000",7.9,8.5,5.5,9,8,7.7,8.8
Swami Rama Himalayan University ,Uttarakhand,Management,"1,91,000","1,18,850",7,7.1,6.6,6.9,7.4,7.1,6.7
Shri Guru Ram Rai University ,Uttarakhand,Management,"61,300","94,400",7.6,7.8,7.1,7.9,7.9,7.3,7.7
UPES Centre for Continuing Education ,Uttarakhand,Management,"72,500","36,250",7.9,8.7,8,8,8,7.3,7.3
Academy of Management Studies ,Uttarakhand,Management,"1,00,650","54,000",--,--,--,--,--,--,--
Institute of Clinical Research ,Uttarakhand,Management,"2,00,000",--,--,--,--,--,--,--,--
College of Agribusiness Management ,Uttarakhand,Management,"5,39,328",--,7,7,6,7,8,8,6
"Nimbus Academy of Management- [NAM], Dehradun ",Uttarakhand,Management,"50,000","1,00,000",8.4,8.4,7.8,8.8,8.4,8.2,8.7
Quantum School of Business ,Uttarakhand,Management,"67,000","1,47,000",7.2,7.2,7.1,7.1,6.9,7.1,7.5
Dev Bhoomi Institute of Management Studies ,Uttarakhand,Management,"79,200",--,9,9,--,--,9,9,--
Greenway Institute of Management Studies ,Uttarakhand,Management,--,--,6.1,7,5.5,6.5,6.5,4,7
"BRD College of Management and Sciences, Dehradun ",Uttarakhand,Management,"50,000",--,--,--,--,--,--,--,--
Selaqui Institute of Management ,Uttarakhand,Management,"1,43,000",--,--,--,--,--,--,--,--
Himalayan School of Management Studies ,Uttarakhand,Management,"1,49,400","1,86,000",8.7,--,--,--,--,--,--
"Sai Business and Media School, Dehradun ",Uttarakhand,Management,"72,600","92,600",--,--,--,--,--,--,--
"Loyola College, Chennai ",Tamil nadu,Science,"16,790","85,250",8.6,8.7,8.2,8.3,8.9,8.4,8.8
Madras Christian College ,Tamil nadu,Science,"24,500",--,8.6,8.5,7.9,8.6,8.7,8.4,9.2
"Presidency College, Chennai ",Tamil nadu,Science,"1,270",930,8.2,8.8,7.3,8.9,8.1,7.6,8.6
"Stella Maris College, Chennai ",Tamil nadu,Science,"22,895","15,000",8.2,8.8,7.5,8.6,8.4,7.6,8.5
"PSG College of Arts and Science, Coimbatore ",Tamil nadu,Science,"7,000","10,000",8.3,8.5,7.9,8.2,8.5,8.2,8.7
"PSGR Krishnammal College for Women, Coimbatore ",Tamil nadu,Science,"1,761","2,258",8.8,9.1,8.3,8.6,8.9,8.7,9
"Ethiraj College for Women, Chennai ",Tamil nadu,Science,"10,056",--,8.1,8.5,7.3,8.2,7.9,7.9,8.6
"Scott Christian College, Nagercoil ",Tamil nadu,Science,--,--,8.4,8.3,8,8.7,8.8,7.9,8.4
Women's Christian College ,Tamil nadu,Science,"40,914","65,264",8.7,9,7.9,8.8,9.1,8.5,8.9
"Government Arts College (Autonomous), Coimbatore ",Tamil nadu,Science,"1,375",935,7.7,8.8,6.7,8.5,7.4,6.3,8.6
"Thiagarajar College, Madurai ",Tamil nadu,Science,"40,170","26,555",7.5,7.9,7.1,8,7.1,7.2,7.9
"St. Joseph's College, Tiruchirappalli ",Tamil nadu,Science,"8,930",--,8.6,9.1,7.9,8.7,9.1,8,8.8
"Queen Mary's College, Chennai ",Tamil nadu,Science,622,"1,532",7.6,7.9,6.9,8.3,6.8,7.6,8.2
Bishop Heber College ,Tamil nadu,Science,"33,600","91,140",8.3,8.5,7.8,8.2,8.9,8.1,8.4
Ayya Nadar Janaki Ammal College ,Tamil nadu,Science,"20,525","26,550",8,8.5,7.7,8.4,8.5,6.8,7.8
"Kongunadu Arts and Science College, Coimbatore ",Tamil nadu,Science,"40,000","38,000",7.3,8,6.7,8.3,7.3,6.3,7
"M.O.P. Vaishnav College for Women, Chennai ",Tamil nadu,Science,--,--,8.5,8.7,8.1,8.7,8.4,8.3,9
"CMS College of Science and Commerce, Coimbatore ",Tamil nadu,Science,"42,000",--,8.2,8.3,7.4,8.1,8.5,8,8.7
"Sri Krishna Arts and Science College, Coimbatore ",Tamil nadu,Science,"16,000",--,8.5,8.6,7.8,8.6,8.9,8.7,8.5
Jamal Mohamed College ,Tamil nadu,Science,"26,000","34,000",8.5,8.8,8.1,8.5,8.6,8.4,8.6
Sri Ramakrishna Mission Vidyalaya College of Arts ,Tamil nadu,Science,"7,300","13,270",8.6,8.8,7.7,8.9,9,8.1,8.9
"Sri Ramakrishna College of Arts and Science, ",Tamil nadu,Science,"52,000","52,000",8.2,8.2,7.3,8.7,7.7,8.2,8.8
Virudhunagar Hindu Nadar's Senthikumara Nadar College ,Tamil nadu,Science,879,"1,464",8.5,9,8.3,8.4,8.8,7.9,8.6
Madras School of Social Work ,Tamil nadu,Science,"51,200","75,000",8.1,9,8.2,8.2,6.7,8,8.2
Dr. N.G.P. Arts and Science College ,Tamil nadu,Science,"1,40,000",--,7.6,7.8,7.1,7.5,8.4,7.7,7
"Guru Nanak College, Chennai ",Tamil nadu,Science,"9,500","11,450",7.9,8.2,7.1,8,8.4,7.3,8.5
"Vellalar College for Women, Erode ",Tamil nadu,Science,"2,646","2,136",8.1,8.5,7.6,8.3,8.5,7.7,8.1
"St. Xavier's College (Autonomous), Palayamkottai ",Tamil nadu,Science,"6,465","5,356",8.4,8.3,8,8.7,8.6,7.7,8.8
"V. O. Chidambaram College, Thoothukkudi ",Tamil nadu,Science,"5,000","9,850",7.3,8.3,7.3,7,7.6,5.6,7.7
"Lady Doak College, Madurai ",Tamil nadu,Science,"1,81,000","43,300",8.4,9.1,7.2,8.7,8.6,8.4,8.2
"Fergusson College, Pune ",Maharashtra,Science,"11,135","50,780",8.1,8.5,7.3,8.2,8.5,7.1,8.7
"St. Xavier's College, Mumbai ",Maharashtra,Science,"7,187","15,674",8.2,8.7,7.3,8.3,8.8,7.6,8.7
D.G. Ruparel College of Arts Science and ,Maharashtra,Science,"7,005",--,7.9,8.3,7.5,8.1,8.6,6.8,8.2
"Mithibai College of Arts, Mumbai ",Maharashtra,Science,"55,000","50,000",8.5,8.5,8.3,8.4,8.9,7.6,9
"Ramnarain Ruia Autonomous College, Mumbai ",Maharashtra,Science,"37,295","7,450",7.9,8.4,7,8,8.4,6.6,8.9
B.K Birla College Of Arts Science & ,Maharashtra,Science,"28,800","10,270",7.6,8,6.5,8.1,8.1,6.6,8
Jai Hind College ,Maharashtra,Science,"6,130","13,602",8.5,8.5,8.3,8.5,8.4,7.8,9.2
Kishinchand Chellaram College ,Maharashtra,Science,"10,735","50,920",8.3,8.6,7.9,8.5,8.4,7.4,8.7
Rajiv Gandhi Institute of Information Technology and ,Maharashtra,Science,"70,000","1,05,000",8.3,8.6,7.4,9.6,8.1,7.4,8.8
"Sophia College for Women, Mumbai ",Maharashtra,Science,"47,340",--,8.6,9.1,8.4,9.1,9.5,6.6,9
IIT Bombay ,Maharashtra,Science,"38,000","2,28,000",8.9,9.3,7.9,8.7,8.9,9.1,9.2
Institute of Chemical Technology ,Maharashtra,Science,"55,750","64,500",8.7,9.1,8.1,8.9,8.7,8.4,9.1
Savitribai Phule Pune University ,Maharashtra,Science,"21,000","5,850",7.6,8.1,7.1,7.9,7.9,6.8,7.5
Dr DY Patil Vidyapeeth ,Maharashtra,Science,"1,25,000",--,8.4,8.9,8.4,8.4,8.6,7.3,9
"DY Patil University, Navi Mumbai ",Maharashtra,Science,"1,20,000","1,25,000",7.5,7.3,7.1,7.7,7.5,7.4,7.8
"Narsee Monjee College of Commerce and Economics, ",Maharashtra,Science,"40,000",--,8.3,8.7,7.5,8.4,8.5,7.8,8.6
SP Jain Institute of Management and Research ,Maharashtra,Science,--,--,8.7,9,8.3,9,8.8,9,8.1
Mahatma Phule Krishi Vidyapeeth ,Maharashtra,Science,--,--,8.3,8.1,8,8.6,8.7,7.9,8.4
"Jamnalal Bajaj Institute of Management Studies -[JBIMS], ",Maharashtra,Science,"3,04,000",--,8.8,9.1,8.6,9.1,8.7,9.2,8.3
"RA Podar College of Commerce and Economics, ",Maharashtra,Science,500,--,7.7,8.8,6.8,8.1,7.4,7.1,8.2
"Government Dental College & Hospital, Aurangabad ",Maharashtra,Science,--,--,7.4,9,5,8.3,6,8.3,7.7
Armed Forces Medical College ,Maharashtra,Science,--,--,9.7,9.4,9.7,9.7,9.6,9.9,9.9
Narsee Monjee Institute of Management Studies ,Maharashtra,Science,"1,52,000","1,77,000",8.1,8.4,7.6,8.5,8.1,7.9,8.2
ILS Law College ,Maharashtra,Science,--,--,7.3,8,5.6,7.7,7.7,6.6,8
Visvesvaraya National Institute of Technology ,Maharashtra,Science,"59,800","34,800",8.1,8.3,7.5,8,8.4,7.7,8.7
Grant Medical College and Sir J. J. ,Maharashtra,Science,--,--,8.8,8.5,8.2,8.4,9.1,9.1,9.7
Seth GS Medical College ,Maharashtra,Science,"67,230","67,230",8,8.8,6.7,7.6,8,8.2,8.4
Central Institute of Fisheries Education ,Maharashtra,Science,"16,700","16,700",8.9,9,9.7,8.5,9.7,8.2,8.4
St Andrew's College of Arts Science and ,Maharashtra,Science,"25,197",--,8.2,8.4,7.2,8.3,8.6,7.6,8.8
Modern College of Arts Science and Commerce ,Maharashtra,Science,--,--,7.5,8,6.6,8.3,7.3,6.9,7.6
Indian Institute of Technology ,Uttar pradesh,Science,"20,050","2,15,600",8.9,9.1,8.4,8.7,9.3,8.9,9.1
Sanjay Gandhi Postgraduate Institute of Medical Sciences ,Uttar pradesh,Science,--,--,7.5,7,6.2,8.2,8.2,7.8,7.8
Banaras Hindu University ,Uttar pradesh,Science,"4,400","6,720",8.3,8.7,8.1,8.4,8.8,7.2,8.6
King George's Medical University ,Uttar pradesh,Science,"73,000",--,8.9,9.3,8.2,9.1,9.4,9.1,8.4
Indian Institute of Technology ,Uttar pradesh,Science,"36,815","37,315",8.5,8.5,8.2,8.1,7.6,9.1,9.2
Indian Veterinary Research Institute ,Uttar pradesh,Science,"15,900",--,8.9,8.4,9.4,8.7,9.3,8.7,8.8
Aligarh Muslim University ,Uttar pradesh,Science,"93,720","8,980",8.3,8.8,7.9,8.5,8.8,7.2,8.6
"Faculty of Law, Banaras Hindu University, Varanasi ",Uttar pradesh,Science,--,--,7.3,8.7,7.7,8.7,7.2,5,6.6
Institute of Medical Sciences ,Uttar pradesh,Science,--,--,8.6,9.2,7.5,8.9,8.2,9.2,8.4
"Amity University, Noida ",Uttar pradesh,Science,"1,20,000","80,000",8.2,8,7.9,8.1,8.9,7.6,8.7
MNNIT Allahabad ,Uttar pradesh,Science,"82,000","63,000",8,8.4,7.3,7.8,7.1,8.9,8.2
"Amity University, Lucknow ",Uttar pradesh,Science,"48,000","1,08,000",8.1,8,7.6,8.1,8.8,7.1,8.8
"Lloyd Law College, Greater Noida ",Uttar pradesh,Science,--,--,7.5,8.5,7.2,7.8,7.8,7.1,6.8
Chaudhary Charan Singh University ,Uttar pradesh,Science,"4,655","4,715",6.4,6.6,6.1,7.3,6.6,4.9,6.6
"National Post Graduate College, Lucknow ",Uttar pradesh,Science,--,--,7.6,8.6,7.4,8.5,7.6,6.8,6.7
IMS Design and Innovation Academy ,Uttar pradesh,Science,"2,37,000",--,8.6,8.5,8,9,9,8,9
Jaypee Institute of Information Technology University ,Uttar pradesh,Science,"50,000",--,7.8,7.8,7.7,7.3,8.2,7.8,7.7
Indian Institute of Information Technology ,Uttar pradesh,Science,"71,700",--,8.3,8.4,7.4,7.6,9,9.2,8.1
Sam Higginbottom University of Agriculture Technology and ,Uttar pradesh,Science,"39,000","71,000",7.2,7.6,6.6,7.5,7.5,6,7.9
"Dayalbagh Educational Institute Faculty of Engineering, Agra ",Uttar pradesh,Science,"15,840",--,8,8.3,7.1,8.5,8.1,8.2,8
Ewing Christian College ,Uttar pradesh,Science,"9,260","40,000",7,8.2,5.7,7.9,7.5,5.1,7.8
"CHM Institute of Hotel and Business Management, ",Uttar pradesh,Science,--,--,--,--,--,--,--,--,--
Teerthanker Mahaveer University ,Uttar pradesh,Science,"40,400","99,000",8.1,8.3,7.6,8.2,8.7,7.3,8.3
"Presidency College of Education and Technology, Meerut ",Uttar pradesh,Science,--,--,--,--,--,--,--,--,--
"Mewar Institute of Management, Ghaziabad ",Uttar pradesh,Science,"30,000","45,000",7.9,8.3,6.6,8.7,7.9,8.3,7.7
Rajiv Academy for Technology and Management ,Uttar pradesh,Science,"22,900",--,8.6,9.4,8.1,9,8.1,8.5,8.5
Mangalayatan University ,Uttar pradesh,Science,"25,000","30,000",7.9,7.8,7.8,8.2,8.4,7.1,8.1
Institute of Technology and Science ,Uttar pradesh,Science,"61,000","72,000",8.2,8.6,7.5,8.3,8.6,7.9,8.1
Indian Institute of Sugarcane Research ,Uttar pradesh,Science,--,--,8.7,8,9,9,8,9,9
DAV College ,Uttar pradesh,Science,"9,550","48,000",6.7,7.5,5.6,7.3,7,5.8,7.1
"St Stephen's College, New Delhi ",Delhi ncr,Science,"42,835",--,8.7,9.2,7.6,9.1,8.6,8.6,9.1
"Hindu College, New Delhi ",Delhi ncr,Science,"20,460","19,710",8.4,8.8,7.9,8.7,8.5,7.6,9
Lady Shri Ram College for Women ,Delhi ncr,Science,"20,670",--,8.5,8.8,7.9,8.6,8.6,8,8.9
"Miranda House, New Delhi ",Delhi ncr,Science,"19,800","16,170",8.6,9.1,8.5,8.5,9.3,7.1,8.9
Hansraj College ,Delhi ncr,Science,"24,515","16,554",8.4,8.7,7.9,8.7,8.5,7.8,8.9
Kirori Mal College ,Delhi ncr,Science,"14,595","9,339",8.2,8.7,7.6,8.6,7.9,7.3,8.9
"Ramjas College, New Delhi ",Delhi ncr,Science,"14,610","14,404",7.9,8.4,7.1,8.4,7.9,7,8.5
"Sri Venkateswara College, New Delhi ",Delhi ncr,Science,"14,555","13,191",8.3,8.7,7.8,8.5,8.2,7.9,8.8
Atma Ram Sanatan Dharma College ,Delhi ncr,Science,"13,345",--,7.8,8.4,6.7,8.4,8,6.8,8.7
"Deen Dayal Upadhyaya College, New Delhi ",Delhi ncr,Science,"19,345",--,7.9,8.4,7.4,8.3,8.4,6.5,8.2
Dyal Singh College ,Delhi ncr,Science,"15,860",--,7.7,8.2,6.9,8.1,7.7,7.1,8.3
"Lady Irwin College, New Delhi ",Delhi ncr,Science,"29,645",--,8.2,9,6.9,8.9,8.7,6.8,9