forked from nk521/hackathontime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcolleges.py
3743 lines (3743 loc) · 241 KB
/
colleges.py
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
colleges_list = [
("", 'Select College'),
("X", 'Other'),
("0", 'A1 Global Institute of Engineering and Technology, Prakasam'),
("1", 'AAA College of Engineering and Technology, Thiruthangal'),
("2", 'AAR Mahaveer Engineering College, Keshavgiri'),
("3", 'ABES Engineering College, Ghaziabad'),
("4", 'ABES Institute of Technology, Ghaziabad'),
("5", 'ABMSP\'s College of Engineering and Research, Pune'),
("6", 'ABR College of Engineering and Technology, Prakasam'),
("7", 'ABSS Institute of Technology, Meerut'),
("8", 'AC Patil College of Engineering, Navi Mumbai'),
("9", 'ACE College of Engineering and Management, Agra'),
("10", 'ACE College of Engineering, Thiruvananthapuram'),
("11", 'ACE Engineering College, Ghatkesar'),
("12", 'ACME College of Engineering, Ghaziabad'),
("13", 'ACS College of Engineering, Bangalore'),
("14", 'ACT College of Engineering and Technology, Kancheepuram'),
("15", 'AD Patel Institute of Technology, Anand'),
("16", 'ADINA Institute of Science and Technology, Sagar'),
("17", 'AG Patil Institute of Technology, Solapur'),
("18", 'AGM Rural College of Engineering and Technology, Hubli'),
("19", 'AISECT Institute of Science and Technology, Bhopal'),
("20", 'AISECT University, Hazaribagh'),
("21", 'AISSMS College of Engineering, Pune'),
("22", 'AJ Institute of Engineering and Technology, Mangalore'),
("23", 'AKRG College of Engineering and Technology, Nallajerla'),
("24", 'AKS University, Satna'),
("25", 'AKT Memorial College of Engineering and Technology, Villupuram'),
("26", 'AM Reddy Memorial College of Engineering and Technology, Narasaraopet'),
("27", 'AMAKSIK College of Technology and Management, Anakapalle'),
("28", 'AMC Engineering College, Bangalore'),
("29", 'AMR Institute of Technology, Adilabad'),
("30", 'ANA College of Engineering and Management Studies, Bareilly'),
("31", 'ANU College of Engineering and Technology, Guntur'),
("32", 'AP Shah Institute of Technology, Thane'),
("33", 'APS College of Engineering, Bangalore'),
("34", 'AR College of Engineering and Technology, Tirunelveli'),
("35", 'AR Engineering College, Villupuram'),
("36", 'ARJ College of Engineering and Technology, Tiruvarur'),
("37", 'ARKA Jain University, Seraikela'),
("38", 'ARM College of Engineering and Technology, Chennai'),
("39", 'ARS College of Engineering, Sattamangalam'),
("40", 'AS-Salam College of Engineering and Technology, Thanjavur'),
("41", 'ASK College of Technology and Management, Visakhapatnam'),
("42", 'ASL Pauls College of Engineering and Technology, Coimbatore'),
("43", 'ASN Women\'s Engineering College,Guntur'),
("44", 'ATME College of Engineering, Mysore'),
("45", 'AVC College of Engineering, Nagapattinam'),
("46", 'AVN Institute of Engineering and Technology, Hyderabad'),
("47", 'AVR and SVR College of Engineering and Technology, Kurnool'),
("48", 'AVS College of Engineering and Technology, Nellore'),
("49", 'AVS College of Technology, Salem'),
("50", 'AVS Engineering College, Salem'),
("51", 'AWH Engineering College, Kozhikode'),
("52", 'Aadishwar College of Technology, Gandhinagar'),
("53", 'Aalim Muhammed Salegh College of Engineering, Chennai'),
("54", 'Aarupadai Veedu Institute of Technology, Kancheepuram'),
("55", 'Aarushi Group of Institutions, Warangal'),
("56", 'Abacus Institute of Engineering and Management, Hooghly'),
("57", 'Abdulkalam Institute of Technological Sciences, Khammam'),
("58", 'Abhay Memorial Trust Group of Institutions, Allahabad'),
("59", 'Abhinav Education Society\'s College of Engineering and Technology, Wadwadi'),
("60", 'Abhinav Hi-Tech College of Engineering and Technology, Hyderabad'),
("61", 'Academy of Technology, Hooghly'),
("62", 'Accurate Institute of Management and Technology, Greater Noida'),
("63", 'Achariya College of Engineering Technology, Puducherry'),
("64", 'Acharya College of Engineering, Badvel'),
("65", 'Acharya Institute of Technology, Bangalore'),
("66", 'Acharya Vinoba Bhave Institute of Technology, Wardha'),
("67", 'Achutha Institute of Technology, Chikkaballapur'),
("68", 'Acropolis Institute of Technology and Research, Bhopal'),
("69", 'Acropolis Institute of Technology and Research, Indore'),
("70", 'Adam\'s Engineering College, Khammam'),
("71", 'Adamas Institute of Technology, North 24 Parganas'),
("72", 'Adamas University, Kolkata'),
("73", 'Adarsh College of Engineering, Kakinada'),
("74", 'Adarsh Institute of Technology and Research Center, Sangli'),
("75", 'Adarsha College of Engineering, Angul'),
("76", 'Adesh Institute of Engineering and Technology, Faridkot'),
("77", 'Adesh Institute of Technology, Gharuan'),
("78", 'Adhi College of Engineering and Technology, Kancheepuram'),
("79", 'Adhiparasakthi College of Engineering, Vellore'),
("80", 'Adhiparasakthi Engineering College, Kancheepuram'),
("81", 'Adhiyamaan College of Engineering, Hosur'),
("82", 'Adhunik College of Engineering, Ghaziabad'),
("83", 'Adi Shankara Institute of Engineering and Technology, Kalady'),
("84", 'Adichunchanagiri Institute of Technology, Chikmagalur'),
("85", 'Adikavi Nannaya University, Rajahmundry'),
("86", 'Adithya Institute of Technology, Coimbatore'),
("87", 'Aditya College of Engineering and Technology, Surampalem'),
("88", 'Aditya College of Engineering, Chittoor'),
("89", 'Aditya College of Engineering, Surampalem'),
("90", 'Aditya College of Technology and Science, Satna'),
("91", 'Aditya Engineering College, Beed'),
("92", 'Aditya Engineering College, Surampalem'),
("93", 'Aditya Institute of Technology and Management, Tekkali'),
("94", 'Adsul\'s Technical Campus, Ahmednagar'),
("95", 'Adusumalli Vijaya College of Engineering and Research Centre, Nalgonda'),
("96", 'Adusumilli Vijaya Institute of Technology and Research Centre, Nalgonda'),
("97", 'Advait Vedanta Institute of Technology, Jaipur'),
("98", 'Advanced Institute of Technology and Management, Palwal'),
("99", 'Adwaita Mission Institute of Technology, Maniyarpur'),
("100", 'Agnel Institute of Technology and Design, Goa'),
("101", 'Agni College of Technology, Thalambur'),
("102", 'Agnihotri College of Engineering, Wardha'),
("103", 'Agnos College of Technology, Bhopal'),
("104", 'Ahalia School of Engineering and Technology, Palakkad'),
("105", 'Ahmedabad Institute of Technology, Ahmedabad'),
("106", 'Aishwarya College of Engineering and Technology, Erode'),
("107", 'Ajay Binay Institute of Technology, Cuttack'),
("108", 'Ajay Kumar Garg Engineering College, Ghaziabad'),
("109", 'Ajmer Institute of Technology, Ajmer'),
("110", 'Akal College of Engineering and Technology, Sirmour'),
("111", 'Akido College of Engineering, Bahadurgarh'),
("112", 'Akshaya Bharathi Institute of Technology, Hyderabad'),
("113", 'Akshaya College of Engineering and Technology, Coimbatore'),
("114", 'Akshaya Institute of Technology, Tumkur'),
("115", 'Aksheyaa College of Engineering, Kancheepuram'),
("116", 'Akula Sree Ramulu Institute of Engineering and Technology, Tadepalligudem'),
("117", 'Akula Sreeramulu College of Engineering, Tanuku'),
("118", 'Al Ameer College of Engineering and Information Technology, Visakhapatnam'),
("119", 'Al Azhar College of Engineering and Technology, Idukki'),
("120", 'Al-Ameen Educational and Medical Foundation\'s College of Engineering and Management Study, Pune'),
("121", 'Al-Ameen Engineering College, Erode'),
("122", 'Al-Ameen Engineering College, Palakkad'),
("123", 'Al-Falah School of Engineering and Technology, Faridabad'),
("124", 'Al-Habeeb College of Engineering and Technology, Hyderabad'),
("125", 'Alagappa Chettiar College of Engineering and Technology, Karaikudi'),
("126", 'Alakh Prakash Goyal Shimla University, Shimla'),
("127", 'Alamuri Ratnamala Institute of Engineering and Technology, Thane'),
("128", 'Alard College of Engineering and Management, Pune'),
("129", 'Albertian Institute of Science and Technology- Technical Campus, School of Engineering, Ernakulam'),
("130", 'Aliah University, Kolkata'),
("131", 'Alice Institute of Technology, Ranchi'),
("132", 'Aligarh College of Engineering and Technology, Aligarh'),
("133", 'All India Shri Shivaji Memorial Society\'s Institute of Information Technology, Pune'),
("134", 'All Saints\' College of Engineering, Bhopal'),
("135", 'All Saints\' College of Technology, Bhopal'),
("136", 'Allenhouse Institute of Technology, Kanpur'),
("137", 'Alliance College of Engineering and Design, Bangalore'),
("138", 'Alliance University, Bangalore'),
("139", 'Alpha College of Engineering and Technology, Kalol'),
("140", 'Alpha College of Engineering and Technology, Puducherry'),
("141", 'Alpha College of Engineering, Bangalore'),
("142", 'Alpha College of Engineering, Chennai'),
("143", 'Alpine College of Engineering, Greater Noida'),
("144", 'Alpine Institute of Technology, Ujjain'),
("145", 'Alva\'s Institute of Engineering and Technology, Mangalore'),
("146", 'Alwar Institute of Engineering and Technology, Alwar'),
("147", 'Amal Jyothi College of Engineering, Kottayam'),
("148", 'Amalapuram Institute of Management Sciences and College of Engineering, Mummidivaram'),
("149", 'Aman Bhalla Institute of Engineering and Technology, Pathankot'),
("150", 'Amani Group of Institutions, Amroha'),
("151", 'Amara Institute of Engineering and Technology, Guntur'),
("152", 'Amardeep College of Engineering and Management, Firozabad'),
("153", 'Ambal Professional Group of Institutions, Tiruppur'),
("154", 'Ambala College of Engineering and Applied Research, Ambala'),
("155", 'Ambalika Institute of Management and Technology, Lucknow'),
("156", 'Ambedkar Institute of Advanced Communication Technologies and Research, Delhi'),
("157", 'Amina Institute of Technology, Shamirpet'),
("158", 'Amiraj College of Engineering and Technology, Ahmedabad'),
("159", 'Amity School of Engineering and Technology, Bijwasan'),
("160", 'Amity School of Engineering and Technology, Gwalior'),
("161", 'Amity School of Engineering and Technology, Noida'),
("162", 'Amity School of Engineering, Noida'),
("163", 'Amity University, Gurgaon'),
("164", 'Amity University, Gwalior'),
("165", 'Amity University, Jaipur'),
("166", 'Amity University, Kolkata'),
("167", 'Amity University, Lucknow Campus'),
("168", 'Amity University, Mumbai'),
("169", 'Amity University, Raipur'),
("170", 'Amity University, Ranchi'),
("171", 'Ammini College of Engineering, Palakkad'),
("172", 'Amrapali Institute of Technology and Sciences, Haldwani'),
("173", 'Amrita College of Engineering and Technology, Nagercoil'),
("174", 'Amrita Sai Institute of Science and Technology, Krishna'),
("175", 'Amrita School of Engineering, Amritapuri'),
("176", 'Amrita School of Engineering, Bengaluru'),
("177", 'Amrita School of Engineering, Coimbatore'),
("178", 'Amrita Vishwa Vidyapeetham, Amritapuri'),
("179", 'Amrita Vishwa Vidyapeetham, Bengaluru'),
("180", 'Amritsar College of Engineering and Technology, Amritsar'),
("181", 'Amruta Institute of Engineering and Management Sciences, Bangalore'),
("182", 'Amrutvahini College of Engineering, Ahmednagar'),
("183", 'Anand College of Engineering and Management, Kapurthala'),
("184", 'Anand Engineering College, Agra'),
("185", 'Anand Institute of Higher Technology, Chennai'),
("186", 'Anand International College of Engineering, Jaipur'),
("187", 'Anantha Lakshmi Institute of Technology and Sciences, Anantapur'),
("188", 'Anasuya Devi Institution of Technology and Sciences, Nalgonda'),
("189", 'Andhra Engineering College, Nellore'),
("190", 'Andhra Loyola Institute of Engineering and Technology, Vijayawada'),
("191", 'Andhra University College of Engineering for Women, Visakhapatnam'),
("192", 'Andhra University College of Engineering, Visakhapatnam'),
("193", 'Andhra University, Visakhapatnam'),
("194", 'Angadi Institute of Technology and Management, Belgavi'),
("195", 'Angel College of Engineering and Technology, Tirupur'),
("196", 'Anil Neerukonda Institute of Technology and Sciences, Visakhapatnam'),
("197", 'Anjalai Ammal Mahalingam Engineering College, Tiruvarur'),
("198", 'Anjamma AGI Reddy Engineering College for Women, Hyderabad'),
("199", 'Anjuman College of Engineering and Technology, Nagpur'),
("200", 'Anjuman Institute of Technology and Management, Bhatkal'),
("201", 'Anjuman-I-Islam\'s Kalsekar Technical Campus, Navi Mumbai'),
("202", 'Anna University Regional Campus, Coimbatore'),
("203", 'Anna University Regional Campus, Madurai'),
("204", 'Anna University, Regional Campus, Tirunelveli'),
("205", 'Annai College of Engineering and Technology, Kumbakonam'),
("206", 'Annai Mathammal Sheela Engineering College, Namakkal'),
("207", 'Annai Mira College of Engineering and Technology, Vellore'),
("208", 'Annai Teresa College of Engineering, Thirunavalur'),
("209", 'Annai Vailankanni College of Engineering, Kanyakumari'),
("210", 'Annai Veilankanni s College of Engineering,Chennai'),
("211", 'Annai Veilankanni\'s Group of Educational Institutions, Chennai'),
("212", 'Annamacharya Institute of Technology and Science, Ranga Reddy'),
("213", 'Annamacharya Institute of Technology and Sciences, Kadapa'),
("214", 'Annamacharya Institute of Technology and Sciences, Rajampet'),
("215", 'Annamacharya Institute of Technology and Sciences, Tirupathi'),
("216", 'Annamalai University, Annamalai Nagar'),
("217", 'Annamalaiar College of Engineering, Tiruvannamalai'),
("218", 'Annapoorana Engineering College, Salem'),
("219", 'Annasaheb Dange College of Engineering and Technology, Sangli'),
("220", 'Annie Institute of Technology and Research Centre, Chhindwara'),
("221", 'Ansal Institute of Technology and Management, Lucknow'),
("222", 'Ansal Technical Campus, Lucknow'),
("223", 'Ansal University, Gurgaon'),
("224", 'Anubose Institute of Technology, Palwancha'),
("225", 'Anupama College of Engineering, Agra'),
("226", 'Anupama College of Engineering, Gurgaon'),
("227", 'Anuradha Engineering College, Buldana'),
("228", 'Anurag College of Engineering, Ghatkesar'),
("229", 'Anurag Engineering College, Kodad'),
("230", 'Anurag Group of Institutions, Ghatkesar'),
("231", 'Apeejay Institute of Engineering, Jalandhar'),
("232", 'Apeejay Stya University, Sohna'),
("233", 'Apex Institute of Management and Technology, Karnal'),
("234", 'Apex Institute of Technology and Management, Pahala'),
("235", 'Apex Institute of Technology, Rampur'),
("236", 'Apollo Engineering College, Chennai'),
("237", 'Apollo Institute of Technology, Kanpur'),
("238", 'Apollo Priyadarshanam Institute of Technology, Kancheepuram'),
("239", 'Appa Institute of Engineering and Technology, Gulbarga'),
("240", 'Applied College of Management and Engineering, Palwal'),
("241", 'Arasu Engineering College, Kumbakonam'),
("242", 'Aravali College of Engineering and Management, Faridabad'),
("243", 'Aravali Institute of Technical Studies, Udaipur'),
("244", 'Archana College of Engineering, Alappuzha'),
("245", 'Archana Institute of Technology, Krishnagiri'),
("246", 'Arifa Institute of Technology, Thirukkuvalai'),
("247", 'Arignar Anna Institute of Science and Technology, Kancheepuram'),
("248", 'Aringer Anna College of Engineering and Technology, Dindigul'),
("249", 'Ariyalur Engineering College, Ariyalur'),
("250", 'Arjun College of Technology and Sciences, Hayathnagar'),
("251", 'Arjun College of Technology, Kinathukadavu'),
("252", 'Arkay College of Engineering and Technology, Nizamabad'),
("253", 'Army Institute of Technology, Pune'),
("254", 'Arni School of Technology, Kangra'),
("255", 'Arrdekta Institute of Technology, Sabarkantha'),
("256", 'Arul College of Technology, Radhapuram'),
("257", 'Arulmigu Meenakshi Amman College of Engineering, Tiruvannamalai'),
("258", 'Arulmurugan College of Engineering, Karur'),
("259", 'Arun Muchhala Engineering College, Amreli'),
("260", 'Arunachala College of Engineering for Women, Nagercoil'),
("261", 'Arunai College of Engineering, Tiruvannamalai'),
("262", 'Arunai Engineering College, Tiruvannamalai'),
("263", 'Arunodaya University, Itanagar'),
("264", 'Arvind Gavali College of Engineering, Satara'),
("265", 'Arvindaksha Educational Society\'s Group of Institutions, Nalgonda'),
("266", 'Arya College of Engineering and IT, Jaipur'),
("267", 'Arya Institute of Engineering and Technology, Jaipur'),
("268", 'Aryabhata Institute of Technology and Science, Ranga Reddy'),
("269", 'Aryabhatt College of Engineering and Technology, Baghpat'),
("270", 'Aryabhatta College of Engineering and Research Centre, Ajmer'),
("271", 'Aryabhatta College of Engineering and Technology, Barnala'),
("272", 'Aryabhatta Institute of Engineering and Management, Durgapur'),
("273", 'Aryabhatta Knowledge University, Patna'),
("274", 'Aryan Institute of Engineering and Technology, Bhubaneswar'),
("275", 'Aryan Institute of Technology, Ghaziabad'),
("276", 'Aryanet Institute of Technology, Palakkad'),
("277", 'Aryans College of Engineering, Patiala'),
("278", 'Aryavart Institute of Technology and Management, Lucknow'),
("279", 'Asan Memorial College of Engineering and Technology, Kancheepuram'),
("280", 'Asansol Engineering College, Asansol'),
("281", 'Ashoka Institute of Engineering and Technology, Nalgonda'),
("282", 'Ashoka Institute of Technology and Management, Rajnandgaon'),
("283", 'Ashoka Institute of Technology and Management, Varanasi'),
("284", 'Ashokrao Mane Group of Institutions, Kolhapur'),
("285", 'Asia School of Engineering and Management, Lucknow'),
("286", 'Asian College of Engineering and Technology, Coimbatore'),
("287", 'Asian Institute of Management and Technology, Yamuna Nagar'),
("288", 'Asra College of Engineering and Technology, Sangrur'),
("289", 'Assam Don Bosco University, Guwahati'),
("290", 'Assam Down Town University, Guwahati'),
("291", 'Assam Engineering College, Guwahati'),
("292", 'Astral Institute of Technology and Research, Indore'),
("293", 'Atal Bihari Vajpayee Government Institute of Engineering and Technology, Pragatinagar'),
("294", 'Atharva College of Engineering, Malad'),
("295", 'Atmakur Engineering College, Nellore'),
("296", 'Atmiya Institute of Technology and Science, Rajkot'),
("297", 'Atmiya University, Rajkot'),
("298", 'Atria Institute of Technology, Bangalore'),
("299", 'Audisankara College of Engineering and Technology, Gudur'),
("300", 'Audisankara College of Engineering for Women, Gudur'),
("301", 'Audisankara Institute of Technology, Gudur'),
("302", 'Aurangabad College of Engineering, Aurangabad'),
("303", 'Aurobindo Institute of Engineering and Technology, Hyderabad'),
("304", 'Aurora\'s Engineering College, Nalgonda'),
("305", 'Aurora\'s Research and Technological Institute, Warangal'),
("306", 'Aurora\'s Scientific Technological and Research Academy, Hyderabad'),
("307", 'Aurora\'s Scientific and Technological Institute, Ghatkesar'),
("308", 'Aurora\'s Seethaiah Engineering College, Nalgonda'),
("309", 'Aurora\'s Technical and Management Campus, Hyderabad'),
("310", 'Aurora\'s Technological Institute, Ranga Reddy'),
("311", 'Aurora\'s Technological and Management Academy, Hyderabad'),
("312", 'Aurora\'s Technological and Research Institute, Hyderabad'),
("313", 'Aurum Institute of Technology, Rajkot'),
("314", 'Avanthi Institute of Engineering and Technology, Bhogapuram'),
("315", 'Avanthi Institute of Engineering and Technology, Hayathnagar'),
("316", 'Avanthi Institute of Engineering and Technology, Visakhapatnam'),
("317", 'Avanthi\'s Research and Technological Academy, Bhogapuram'),
("318", 'Avanthi\'s Scientific Technological and Research Academy, Hayathnagar'),
("319", 'Avanthi\'s Sri Gnaneswari Research and Technological Academy for Women, Bhogapuram'),
("320", 'Avanthis St Theressa Institute of Engineering and Technology, Garividi'),
("321", 'Avinashilingam Institute for Home Science and Higher Education for Women, Coimbatore'),
("322", 'Avvaiyar College of Engineering and Technology For Women, Thiruvandarkoil'),
("323", 'Axis College of Engineering and Technology, Thrissur'),
("324", 'Axis Institute of Technology and Management, Kanpur'),
("325", 'Ayaan College of Engineering and Technology, Ranga Reddy'),
("326", 'Azad College of Engineering and Technology, Hyderabad'),
("327", 'Azad College of Engineering for Women, Hyderabad'),
("328", 'Azmet Institute of Technology, Kishanganj'),
("329", 'B K Birla Institute of Engineering and Technology, Pilani'),
("330", 'BA College of Engineering and Technology, East Singhbhum'),
("331", 'BBS College of Engineering and Technology, Allahabad'),
("332", 'BGS Institute of Technology, Mandya'),
("333", 'BH Gardi College of Engineering and Technology, Rajkot'),
("334", 'BIS College of Engineering and Technology, Moga'),
("335", 'BIT Institute of Technology, Hindupur'),
("336", 'BIT Sindri, Dhanbad'),
("337", 'BITS Pilani, Goa Campus'),
("338", 'BITS Pilani- Hyderabad Campus, Hyderabad'),
("339", 'BKR College of Engineering and Technology, Tiruvallur'),
("340", 'BLDEA\'s VP Dr PG Halakatti College of Engineering and Technology, Bijapur'),
("341", 'BLM Institute of Technology and Management Sciences, Jhunjhunu'),
("342", 'BM College of Technology, Indore'),
("343", 'BM Group of Institutions, Gurgaon'),
("344", 'BM Institute of Engineering and Technology, Sonepat'),
("345", 'BML Munjal University, Gurgaon'),
("346", 'BMS College of Engineering, Bangalore'),
("347", 'BMS Institute of Technology and Management, Bangalore'),
("348", 'BN College of Engineering and Technology, Lucknow'),
("349", 'BNM Institute of Technology, Bangalore'),
("350", 'BP Poddar Institute of Management and Technology, Kolkata'),
("351", 'BR Harne College of Engineering and Technology, Thane'),
("352", 'BRCM College of Engineering and Technology, Bhiwani'),
("353", 'BRM International Institute of Technology, Bhubaneswar'),
("354", 'BS Abdur Rahman Institute of Science and Technology, Chennai'),
("355", 'BS Anangpuria Institute of Technology and Management, Faridabad'),
("356", 'BSA College of Engineering and Technology, Mathura'),
("357", 'BTL Institute of Technology and Management, Bangalore'),
("358", 'BV Raju Institute of Technology, Narsapur'),
("359", 'BVM College of Technology and Management, Gwalior'),
("360", 'BVRIT Hyderabad College of Engineering for Women, Hyderabad'),
("361", 'BVV Sangha\'s Basaveshwar Engineering College, Bagalkot'),
("362", 'Baba Banda Singh Bahadur Engineering College, Fatehgarh Sahib'),
("363", 'Baba Farid College of Engineering and Technology, Bathinda'),
("364", 'Baba Ghulam Shah Badshah University, Jammu'),
("365", 'Baba Hira Singh Bhattal Institute of Engineering and Technology, Lehragaga'),
("366", 'Baba Institute of Technology and Sciences, Visakhapatnam'),
("367", 'Baba Kadhera Singh College of Engineering and Technology, Mathura'),
("368", 'Baba Kuma Singh Ji Engineering College, Amritsar'),
("369", 'Baba Mastnath University, Rohtak'),
("370", 'Baba Sahab Dr Bhim Rao Ambedkar College of Agricultural Engineering and Technology, Etawah'),
("371", 'Babaria Institute of Technology, Vadodara'),
("372", 'Babasaheb Naik College of Engineering, Yavatmal'),
("373", 'Babu Banarasi Das Engineering College, Lucknow'),
("374", 'Babu Banarasi Das National Institute of Technology and Management, Lucknow'),
("375", 'Babu Banarasi Das Northern India Institute of Technology, Lucknow'),
("376", 'Babu Banarasi Das University, Lucknow'),
("377", 'Babu Banarsi Das Institute of Engineering Technology and Research Centre, Bulandshahr'),
("378", 'Babu Banarsi Das Institute of Technology, Ghaziabad'),
("379", 'Babu Mohan Lal Arya Smarak Engineering College, Agra'),
("380", 'Babu Sunder Singh Institute of Technology and Management, Lucknow'),
("381", 'Babulal Tarabai Institute of Research and Technology, Sagar'),
("382", 'Badari Institute of Technology and Sciences for Women, Kakinada'),
("383", 'Baddi University of Emerging Sciences and Technology, Baddi'),
("384", 'Bagula Mukhi College of Technology, Bhopal'),
("385", 'Bahra University, Shimla'),
("386", 'Bahubali College of Engineering, Hassan'),
("387", 'Balaghat Engineering College, Latur'),
("388", 'Balaji Institute of Engineering and Management Studies, Nellore'),
("389", 'Balaji Institute of Engineering and Sciences, Narsampet'),
("390", 'Balaji Institute of Engineering and Technology, Chennai'),
("391", 'Balaji Institute of Technology Management and Research, Rajnandgaon'),
("392", 'Balaji Institute of Technology and Science, Narsampet'),
("393", 'Balaji Institute of Technology, Barwani'),
("394", 'Balamani Arunachalam Engineering College, Kancheepuram'),
("395", 'Balasore College of Engineering and Technology, Balasore'),
("396", 'Baldev Ram Mirdha Institute of Technology East Campus, Sitapura'),
("397", 'Baldev Ram Mirdha Institute of Technology, Jaipur'),
("398", 'Ballari Institute of Technology and Management, Bellary'),
("399", 'Ballarpur Institute of Technology, Chandrapur'),
("400", 'Banasthali Vidyapith, Banasthali'),
("401", 'Bandari Srinivas College of Engineering and Technology, Ranga Reddy'),
("402", 'Bandari Srinivas Institute of Technology, Ranga Reddy'),
("403", 'Bangalore College of Engineering and Technology, Bangalore'),
("404", 'Bangalore Institute of Technology, Bangalore'),
("405", 'Bangalore Technological Institute, Bangalore'),
("406", 'Bankura Unnayani Institute of Engineering, Bankura'),
("407", 'Bannari Amman Institute of Technology, Erode'),
("408", 'Bansal College of Engineering, Mandideep'),
("409", 'Bansal Institute of Engineering and Technology, Lucknow'),
("410", 'Bansal Institute of Engineering and Technology, Meerut'),
("411", 'Bansal Institute of Research and Technology, Bhopal'),
("412", 'Bansal Institute of Science and Technology, Bhopal'),
("413", 'Bapatla Engineering College, Bapatla'),
("414", 'Bapatla Women\'s Engineering College, Bapatla'),
("415", 'Bapu Institute of Technology and Management, Morena'),
("416", 'Bapuji Institute of Engineering and Technology, Davangere'),
("417", 'Bapurao Deshmukh College of Engineering, Wardha'),
("418", 'Barkatullah University Institute of Technology, Barkatullah University, Bhopal'),
("419", 'Barkatullah University, Bhopal'),
("420", 'Barrister Ranjit Mohanty International Institute of Technology, Khordha'),
("421", 'Basav Engineering School of Technology, Zalki'),
("422", 'Basava Academy of Engineering, Bangalore'),
("423", 'Basavakalyan Engineering College, Bidar'),
("424", 'Baselios Mathews II College of Engineering, Kollam'),
("425", 'Baselios Thomas I Catholicose College of Engineering and Technology, Ernakulam'),
("426", 'Beant College of Engineering and Technology, Gurdaspur'),
("427", 'Bearys Institute of Technology, Mangalore'),
("428", 'Believers Church Caarmel Engineering College, Ranni'),
("429", 'Bengal College of Engineering and Technology, Durgapur'),
("430", 'Bengal College of Engineering, Durgapur'),
("431", 'Bengal Institute of Technology and Management, Santiniketan'),
("432", 'Bengal Institute of Technology, Kolkata'),
("433", 'Bennett University, Greater Noida'),
("434", 'Bethesda Institute of Technology and Science, Gwalior'),
("435", 'Bethlahem Institute of Engineering, Kanyakumari'),
("436", 'Bhabha College of Engineering, Bhopal'),
("437", 'Bhabha College of Engineering, Ramabai Nagar'),
("438", 'Bhabha Engineering Research Institute, Bhopal'),
("439", 'Bhabha Institute of Science and Technology, Ramabai Nagar'),
("440", 'Bhabha Institute of Technology, Kanpur Dehat'),
("441", 'Bhabha University, Bhopal'),
("442", 'Bhadrak Institute of Engineering and Technology, Bhadrak'),
("443", 'Bhagalpur College of Engineering, Bhagalpur'),
("444", 'Bhagat Phool Singh Mahila Vishwavidyalaya, Khanpur Kalan'),
("445", 'Bhagwan Mahaveer College of Engineering and Management, Sonipat'),
("446", 'Bhagwan Mahavir College of Engineering and Technology, Surat'),
("447", 'Bhagwan Parshuram College of Engineering, Sonipat'),
("448", 'Bhagwan Parshuram Institute of Technology, Delhi'),
("449", 'Bhagwant Institute of Technology, Ghaziabad'),
("450", 'Bhagwant Institute of Technology, Muzaffarnagar'),
("451", 'Bhagwant Institute of Technology, Solapur'),
("452", 'Bhagwant University, Ajmer'),
("453", 'Bhagwati Institute of Technology and Science, Ghaziabad'),
("454", 'Bhai Gurdas Institute of Engineering and Technology, Sangrur'),
("455", 'Bhai Maha Singh College of Engineering, Muktsar'),
("456", 'Bhajarang Engineering College, Thiruvallur'),
("457", 'Bharat College of Engineering, Thane'),
("458", 'Bharat Engineering College, Hyderabad'),
("459", 'Bharat Institute of Engineering and Technology, Ibrahimpatnam'),
("460", 'Bharat Institute of Technology and Science for Women, Ibrahimpatnam'),
("461", 'Bharat Institute of Technology, Meerut'),
("462", 'Bharat Institute of Technology, Sonipat'),
("463", 'Bharath College of Engineering and Technology for Women, Kadapa'),
("464", 'Bharath Educational Society\'s Group of Institutions- Faculty of Engineering, Chittoor'),
("465", 'Bharath Institute of Higher Education and Research, Chennai'),
("466", 'Bharath Niketan Engineering College, Theni'),
("467", 'Bharathiar College of Engineering and Technology, Karaikal'),
("468", 'Bharathidasan Engineering College, Natarampalli'),
("469", 'Bharathiyar Institute of Engineering for Women, Salem'),
("470", 'Bharati Vidyapeeth College of Engineering, Lavale'),
("471", 'Bharati Vidyapeeth College of Engineering, Navi Mumbai'),
("472", 'Bharati Vidyapeeth Deemed University College of Engineering, Pune'),
("473", 'Bharati Vidyapeeth\'s College of Engineering for Women, Pune'),
("474", 'Bharati Vidyapeeth\'s College of Engineering, Delhi'),
("475", 'Bharati Vidyapeeths College of Engineering, Kolhapur'),
("476", 'Bharatratna Indira Gandhi College of Engineering, Solapur'),
("477", 'Bhargava College of Engineering and Technology, Samba'),
("478", 'Bharti College of Engineering and Technology, Durg'),
("479", 'Bhartiya Institute of Engineering and Technology, Sikar'),
("480", 'Bhaskar Engineering College, Ranga Reddy'),
("481", 'Bhausaheb Mulik College of Engineering, Butibori'),
("482", 'Bheema Institute of Technology and Science, Adoni'),
("483", 'Bheemanna Khandre Institute of Technology, Bhalki'),
("484", 'Bhilai Institute of Technology, Durg'),
("485", 'Bhilai Institute of Technology, Raipur'),
("486", 'Bhimavaram Institute of Engineering and Technology, Bhimavaram'),
("487", 'Bhivarabai Sawant College of Engineering and Research, Pune'),
("488", 'Bhiwani Institute of Technology and Sciences, Bhiwani'),
("489", 'Bhoj Reddy Engineering College for Women, Hyderabad'),
("490", 'Bhonsla College of Engineering and Research, Akola'),
("491", 'Bhopal Institute of Technology and Management, Bhopal'),
("492", 'Bhopal Institute of Technology and Science, Bhopal'),
("493", 'Bhopal Institute of Technology, Bhopal'),
("494", 'Bhubaneswar College of Engineering, Khordha'),
("495", 'Bhubaneswar Engineering College, Bhubaneswar'),
("496", 'Bhubaneswar Institute of Technology, Bhubaneswar'),
("497", 'Bhuma Shobha Nagireddy Memorial College of Engineering and Technology, Kurnool'),
("498", 'Bhutta College of Engineering and Technology, Ludhiana'),
("499", 'Biff and Bright College of Engineering and Technology, Jaipur'),
("500", 'Bikaner Technical University, Bikaner'),
("501", 'Biluru Gurubasava Mahaswamiji Institute of Technology, Mudhol'),
("502", 'Bimla Devi Educational Societys Group of Institutions, JB Knowledge Park, Faridabad'),
("503", 'Bipin Tripathi Kumaon Institute of Technology, Dwarahat'),
("504", 'Birbhum Institute of Engineering and Technology, Birbhum'),
("505", 'Birla Institute of Applied Sciences, Nainital'),
("506", 'Birla Institute of Technology Extension Centre, Deoghar'),
("507", 'Birla Institute of Technology, Mesra'),
("508", 'Birla Institute of Technology, Mesra, Jaipur Campus'),
("509", 'Birla Institute of Technology, Patna'),
("510", 'Birla Vishvakarma Mahavidyalaya, Anand'),
("511", 'Bishamber Sahai Institute of Technology, Roorkee'),
("512", 'Bishop Jerome Institute, Kollam'),
("513", 'Biyani International Institute of Engineering and Technology for Girls, Jaipur'),
("514", 'Black Diamond College of Engineering and Technology, Jharsuguda'),
("515", 'Bomma Institute of Technology and Science, Khammam'),
("516", 'Bon Maharaj Engineering College, Mathura'),
("517", 'Bonam Venkata Chalamayya College of Engineering, Rajahmundry'),
("518", 'Bonam Venkata Chalamayya Engineering College, Odalarevu'),
("519", 'Bonam Venkata Chalamayya Engineering College, Rajahmundry'),
("520", 'Bonam Venkata Chalamayya Institute of Technology and Science, East Godavari'),
("521", 'Brahma Valley College of Engineering and Research Institute, Nashik'),
("522", 'Brahmaiah College of Engineering, Nellore'),
("523", 'Brahmanand Institute of Research Technology and Management, Bulandshahr'),
("524", 'Brahmas Institute of Engineering and Technology, Nellore'),
("525", 'Brahmdevdada Mane Institute of Technology, Solapur'),
("526", 'Brainware Group of Institutions, Kolkata'),
("527", 'Brainware University, Kolkata'),
("528", 'Brilliant Grammar School Educational Society\'s Group of Institutions, Ranga Reddy'),
("529", 'Brilliant Institute of Engineering and Technology, Hayathnagar'),
("530", 'Brindavan College of Engineering, Bangalore'),
("531", 'Brindavan Institute of Technology and Science, Kurnool'),
("532", 'Buchepalli Venkayamma Subbareddy Engineering College, Prakasam'),
("533", 'Buddha College of Engineering and Technology, Udaipur'),
("534", 'Buddha Institute of Technology, Gaya'),
("535", 'Buddha Institute of Technology, Gorakhpur'),
("536", 'Budge Budge Institute of Technology, Kolkata'),
("537", 'Builders Engineering College, Tirupur'),
("538", 'Bundelkhand Institute of Engineering and Technology, Jhansi'),
("539", 'Bundelkhand University, Jhansi'),
("540", 'C Abdul Hakeem College of Engineering and Technology, Melvisharam'),
("541", 'C Byregowda Institute of Technology, Kolar'),
("542", 'CAPE Institute of Technology, Tirunelveli'),
("543", 'CARE School of Engineering, Tiruchirappalli'),
("544", 'CBS College of Engineering and Management, Agra'),
("545", 'CBS Group of Institutions, Delhi'),
("546", 'CBS Group of Institutions, Jhajjar'),
("547", 'CGC College of Engineering, Landran Campus, Mohali'),
("548", 'CK College of Engineering and Technology, Cuddalore'),
("549", 'CK Pithawala College of Engineering and Technology, Surat'),
("550", 'CLG Institute of Engineering and Technology, Pali'),
("551", 'CMJ University, Shillong'),
("552", 'CMR College of Engineering and Technology, Hyderabad'),
("553", 'CMR Engineering College, Hyderabad'),
("554", 'CMR Institute of Technology, Bangalore'),
("555", 'CMR Institute of Technology, Hyderabad'),
("556", 'CMR Technical Campus, Hyderabad'),
("557", 'CMR University, Bangalore'),
("558", 'CMS College of Engineering and Technology, Coimbatore'),
("559", 'CMS College of Engineering, Namakkal'),
("560", 'CR Engineering College, Madurai'),
("561", 'CRV Institute of Technology and Science, Ranga Reddy'),
("562", 'CSI College of Engineering, Nilgiris'),
("563", 'CSI Institute of Technology, Kanyakumari'),
("564", 'CSMSS CHH Shahu College of Engineering, Aurangabad'),
("565", 'CT Institute of Engineering, Management and Technology, Jalandhar'),
("566", 'CT Institute of Technology and Research, Jalandhar'),
("567", 'CT Institute of Technology, Jalandhar'),
("568", 'CT University, Ludhiana'),
("569", 'CU Shah College of Engineering and Technology, Surendranagar'),
("570", 'CU Shah University, Surendranagar'),
("571", 'CV Raman College of Engineering, Bhubaneswar'),
("572", 'CVR College of Engineering, Hyderabad'),
("573", 'Calcutta Institute of Engineering and Management, Kolkata'),
("574", 'Calcutta Institute of Technology, Howrah'),
("575", 'Calicut University Institute of Engineering Technology, Malappuram'),
("576", 'Cambridge Engineering College, Fatehgarh Sahib'),
("577", 'Cambridge Institute of Technology, Bangalore'),
("578", 'Cambridge Institute of Technology, North Campus, Bangalore'),
("579", 'Cambridge Institute of Technology, Ranchi'),
("580", 'Camellia Insititute of Engineering, Madhyamgram'),
("581", 'Camellia Institute of Engineering and Technology, Burdwan'),
("582", 'Camellia Institute of Technology and Management, Hooghly'),
("583", 'Camellia Institute of Technology, Madhyamgram'),
("584", 'Camellia School of Engineering and Technology, Barasat'),
("585", 'Canara Engineering College, Mangalore'),
("586", 'Capital Engineering College, Bhubaneswar'),
("587", 'Capital University, Koderma'),
("588", 'Career Point Technical Campus, Rajsamand'),
("589", 'Career Point University, Hamirpur'),
("590", 'Carmel College of Engineering and Technology, Alappuzha'),
("591", 'Cauvery College of Engineering and Technology, Tiruchirappalli'),
("592", 'Cauvery Institute of Technology, Mandya'),
("593", 'Central College of Engineering and Management, Raipur'),
("594", 'Central India College of Engineering and Technology, Nagpur'),
("595", 'Central India institute of Technology, Indore'),
("596", 'Central Institute of Technology, Kokrajhar'),
("597", 'Central Institute of Technology, Raipur'),
("598", 'Central University of Karnataka, Gulbarga'),
("599", 'Central University of Rajasthan, Ajmer'),
("600", 'Centurion Institute of Technology, Bhubaneswar'),
("601", 'Centurion University of Technology and Management, Bhubaneswar'),
("602", 'Centurion University of Technology and Management, Paralakhemundi'),
("603", 'Centurion University of Technology and Management, Visakhapatnam'),
("604", 'Ch Devi Lal State Institute of Engineering and Technology, Sirsa'),
("605", 'Ch Ranbir Singh State Institute of Engineering and Technology, Jhajjar'),
("606", 'Chadalawada Ramanamma Engineering College, Tirupati'),
("607", 'Chadalawada Venkata Subbaiah College of Engineering, Tirupati'),
("608", 'Chadalwada Venkta Subbaiah College of Engineering, Tirupati'),
("609", 'Chaibasa Engineering College, Chaibasa'),
("610", 'Chaitanya Bharathi Institute of Technology, Cuddapah'),
("611", 'Chaitanya Bharathi Institute of Technology, Hyderabad'),
("612", 'Chaitanya Engineering College, Bhimavaram'),
("613", 'Chaitanya Engineering College, Visakhapatnam'),
("614", 'Chaitanya Institute of Science and Technology, Madhavapatnam'),
("615", 'Chaitanya Institute of Technology and Science, Warangal'),
("616", 'Chalapathi Institute of Engineering and Technology, Guntur'),
("617", 'Chalapathi Institute of Technology, Guntur'),
("618", 'Chameli Devi Group of Institutions, Indore'),
("619", 'Chandigarh College of Engineering and Technology, Chandigarh'),
("620", 'Chandigarh Engineering College, Landran Campus, Mohali'),
("621", 'Chandigarh Group of Colleges, Jhanjeri'),
("622", 'Chandigarh Group of Colleges, Mohali'),
("623", 'Chandigarh University, Chandigarh'),
("624", 'Chandravati Group of Institution, Bharatpur'),
("625", 'Chandubhai S Patel Institute of Technology, Anand'),
("626", 'Chandy College of Engineering, Thoothukudi'),
("627", 'Channabasaveshwara Institute of Technology, Tumkur'),
("628", 'Chartered Institute of Technology, Sirohi'),
("629", 'Chebrolu Engineering College, Guntur'),
("630", 'Chendhuran College of Engineering and Technology, Pudukkottai'),
("631", 'Chendu College of Engineering and Technology, Kancheepuram'),
("632", 'Chennai Institute of Technology, Chennai'),
("633", 'Cheran College of Engineering, Karur'),
("634", 'Chettinad College of Engineering and Technology, Karur'),
("635", 'Chhatrapati Shahu Ji Maharaj University, Kanpur'),
("636", 'Chhatrapati Shivaji Institute of Technology, Durg'),
("637", 'Chhatratpati Shahuji Maharaj College of Engineering and Technology, Allahabad'),
("638", 'Chhattisgarh Engineering College, Durg'),
("639", 'Chhattisgarh Institute of Management and Technology, Bhilai'),
("640", 'Chhattisgarh Institute of Technology, Rajnandgaon'),
("641", 'Chhotubhai Gopalbhai Patel Institute of Technology, Bardoli'),
("642", 'Chilkur Balaji Institute of Technology, Hyderabad'),
("643", 'Chintalapudi Engineering College, Guntur'),
("644", 'Chirala Engineering College, Chirala'),
("645", 'Chiranjeevi Reddy Institute of Engineering and Technology, Anantapur'),
("646", 'Chitkara University Institute of Engineering and Technology, Jhansla'),
("647", 'Chitkara University, Himachal Pradesh'),
("648", 'Chitkara University, Patiala'),
("649", 'Chouksey Engineering College, Bilaspur'),
("650", 'Christ College of Engineering and Technology, Puducherry'),
("651", 'Christ College of Engineering, Thrissur'),
("652", 'Christ Institute of Technology, Puducherry'),
("653", 'Christ Knowledge City, Ernakulam'),
("654", 'Christ University, Bangalore'),
("655", 'Christ the King Engineering College, Coimbatore'),
("656", 'Christian College of Engineering and Technology, Bhilai'),
("657", 'Christian College of Engineering and Technology, Dindigul'),
("658", 'Christu Jyothi Institute of Technology and Science, Warangal'),
("659", 'City Engineering College, Bangalore'),
("660", 'Coastal Institute of Technology and Management, Vizianagaram'),
("661", 'Cochin College of Engineering and Technology, Malappuram'),
("662", 'Cochin Institute of Science and Technology, Ernakulam'),
("663", 'Cochin University College of Engineering, Kuttanad'),
("664", 'Coimbatore Institute of Engineering and Technology, Coimbatore'),
("665", 'Coimbatore Institute of Technology, Coimbatore'),
("666", 'College of Engineering Roorkee, Roorkee'),
("667", 'College of Engineering Science and Technology, Lucknow'),
("668", 'College of Engineering and Management, Kapurthala'),
("669", 'College of Engineering and Management, Kolaghat'),
("670", 'College of Engineering and Management, Punjabi University Neighbourhood Campus, Rampura Phul'),
("671", 'College of Engineering and Management, Punnapra'),
("672", 'College of Engineering and Rural Technology, Meerut'),
("673", 'College of Engineering and Technology, BGSB University, Rajouri'),
("674", 'College of Engineering and Technology, IILM Academy of Higher Learning, Greater Noida'),
("675", 'College of Engineering and Technology, Payyanur'),
("676", 'College of Engineering and Technology, Moradabad'),
("677", 'College of Engineering, Adoor'),
("678", 'College of Engineering, Aranmula'),
("679", 'College of Engineering, Attingal'),
("680", 'College of Engineering, Bhubaneswar'),
("681", 'College of Engineering, Chengannur'),
("682", 'College of Engineering, Cherthala'),
("683", 'College of Engineering, Guindy'),
("684", 'College of Engineering, Kallooppara'),
("685", 'College of Engineering, Karunagappally'),
("686", 'College of Engineering, Kidangoor'),
("687", 'College of Engineering, Kottarakkara'),
("688", 'College of Engineering, Munnar'),
("689", 'College of Engineering, Muttathara'),
("690", 'College of Engineering, Osmanabad'),
("691", 'College of Engineering, Pandharpur'),
("692", 'College of Engineering, Pathanapuram'),
("693", 'College of Engineering, Perumon'),
("694", 'College of Engineering, Poonjar'),
("695", 'College of Engineering, Pune'),
("696", 'College of Engineering, Thalassery'),
("697", 'College of Engineering, Trikaripur'),
("698", 'College of Engineering, Trivandrum'),
("699", 'College of Engineering, Vadakara'),
("700", 'College of Engineering, Vairag'),
("701", 'College of Technology and Engineering, Maharana Pratap University of Agriculture and Technology, Udaipur'),
("702", 'College of Technology, GB Pant University of Agriculture and Technology, Pantnagar'),
("703", 'Columbia Institute of Engineering and Technology, Raipur'),
("704", 'Compucom Institute of Technology and Management, Jaipur'),
("705", 'Continental Institute of Engineering and Technology, Fatehgarh Sahib'),
("706", 'Cooch Behar Government Engineering College, Cooch Behar'),
("707", 'Coorg Institute of Technology, Kodagu'),
("708", 'Corporate Institute of Research and Technology, Bhopal'),
("709", 'Corporate Institute of Science and Technology, Bhopal'),
("710", 'Crescent College of Technology, Bhopal'),
("711", 'Crescent College of Technology, Indore'),
("712", 'Cyberabad Institute of Technology, Hyderabad'),
("713", 'DAV College of Engineering and Technology, Kanina'),
("714", 'DAV Institute of Engineering and Technology, Jalandhar'),
("715", 'DAV Institute of Engineering and Technology, Palamu'),
("716", 'DAV University, Jalandhar'),
("717", 'DIT School of Engineering, Noida'),
("718", 'DIT University, Dehradun'),
("719", 'DJR College of Engineering and Technology, Vijayawada'),
("720", 'DJR Institute of Engineering and Technology, Vijayawada'),
("721", 'DKTE Society\'s Textile and Engineering Institute, Ichalkaranji'),
("722", 'DMI College of Engineering, Chennai'),
("723", 'DMI Engineering College, Kanyakumari'),
("724", 'DN Patel College of Engineering, Nandurbar'),
("725", 'DNR College of Engineering and Technology, Bhimavaram'),
("726", 'DNS College of Engineering and Technology,Amroha'),
("727", 'DPG Institute of Technology and Management, Gurgaon'),
("728", 'DR College of Engineering and Technology, Panipat'),
("729", 'DRK College of Engineering and Technology, Hyderabad'),
("730", 'DRK Institute of Science and Technology, Hyderabad'),
("731", 'DVR College of Engineering and Technology, Hyderabad'),
("732", 'DY Patil College of Engineering and Technology, Kolhapur'),
("733", 'DY Patil College of Engineering, Ambi'),
("734", 'DY Patil Education Society\'s DY Patil Technical Campus, Kolhapur'),
("735", 'DY Patil School of Engineering Academy, Ambi'),
("736", 'Dadi Institute of Engineering and Technology, Visakhapatnam'),
("737", 'Daita Madhusudana Sastry Sri Venkateswara Hindu College of Engineering, Machilipatnam'),
("738", 'Damsetty Srinivasa Naidu\'s DBS Institute of Technology, Nellore'),
("739", 'Daripally Anantha Ramulu College of Engineering and Technology, Khammam'),
("740", 'Darsh Institute of Engineering and Technology, Sonipat'),
("741", 'Darshan Institute of Engineering and Technology, Rajkot'),
("742", 'Datta Meghe Institute of Engineering Technology and Research, Wardha'),
("743", 'Dattakala Group of Institution, Pune'),
("744", 'Dayanad Dinanath Institute of Technology, Kanpur'),
("745", 'Dayananda Sagar Academy of Technology and Management, Bangalore'),
("746", 'Dayananda Sagar College of Engineering, Bangalore'),
("747", 'Dayananda Sagar University, Bangalore'),
("748", 'Deccan College of Engineering and Technology, Hyderabad'),
("749", 'Deen Bandhu Chhotu Ram University of Science and Technology, Murthal'),
("750", 'Deep Institute of Engineering and Technology and Group Institutions, Mewat'),
("751", 'Dehradun Institute of Technology, Dehradun'),
("752", 'Delhi College of Technology and Management, Palwal'),
("753", 'Delhi Engineering College, Faridabad'),
("754", 'Delhi Global Institute of Technology, Jhajjar'),
("755", 'Delhi Institute of Engineering and Technology, Meerut'),
("756", 'Delhi Institute of Technology and Management, Sonipat'),
("757", 'Delhi Institute of Technology, Management and Research, Faridabad'),
("758", 'Delhi Technical Campus, Bahadurgarh'),
("759", 'Delhi Technical Campus, Greater Noida'),
("760", 'Delhi Technological University, Delhi'),
("761", 'Deogiri Institute of Engineering and Management Studies, Aurangabad'),
("762", 'Deogiri Technical Campus for Engineering and Management Studies, Aurangabad'),
("763", 'Desh Bhagat Engineering College, Fatehgarh Sahib'),
("764", 'Desh Bhagat Foundation Group of Institutions, Moga'),
("765", 'Desh Bhagat University, Mandi Gobindgarh'),
("766", 'Dev Bhoomi Group of Institutions, Saharanpur'),
("767", 'Dev Bhoomi Institute of Technology and Engineering, Dehradun'),
("768", 'Dev Bhoomi Institute of Technology for Women, Dehradun'),
("769", 'Dev Bhoomi Institute of Technology, Dehradun'),
("770", 'Dev Bhumy Institute of Engineering and Technology, Una'),
("771", 'Devender Singh Institute of Technology and Management, Ghaziabad'),
("772", 'Devineni Venkata Ramana and Dr Hima Sekhar MIC College of Technology, Krishna'),
("773", 'Devprayag Institute of Technical Studies, Allahabad'),
("774", 'Dewan VS Institute of Engineering and Technology, Meerut'),
("775", 'Dhaanish Ahmed College of Engineering, Chennai'),
("776", 'Dhaanish Ahmed Institute of Technology, Coimbatore'),
("777", 'Dhamangaon Education Society\'s College of Engineering and Technology, Dhamangaon Rly'),
("778", 'Dhanalakshmi College of Engineering, Chennai'),
("779", 'Dhanalakshmi Srinivasan College of Engineering and Technology, Chennai'),
("780", 'Dhanalakshmi Srinivasan College of Engineering, Coimbatore'),
("781", 'Dhanalakshmi Srinivasan College of Engineering, Perambalur'),
("782", 'Dhanalakshmi Srinivasan Engineering College, Perambalur'),
("783", 'Dhanalakshmi Srinivasan Institute of Technology, Tiruchirappalli'),
("784", 'Dhananjay Mahadik Group of Institutions, Kolhapur'),
("785", 'Dhanekula Institute of Engineering and Technology, Vijayawada'),
("786", 'Dhaneswar Rath Institute of Engineering and Management Studies, Cuttack'),
("787", 'Dhaneswar Rath Institute of Engineering and Management Studies, Khordha'),
("788", 'Dharmsinh Desai University, Nadiad'),
("789", 'Dhaya College of Engineering, Madurai'),
("790", 'Dhirajlal Gandhi College of Technology, Salem'),
("791", 'Dhole Patil College of Engineering, Pune'),
("792", 'Dhruva Institute of Engineering and Technology, Hyderabad'),
("793", 'Dibrugarh University Institute of Engineering and Technology, Dibrugarh'),
("794", 'Dibrugarh University, Dibrugarh'),
("795", 'Dilkap Research Institute of Engineering and Management Studies, Raigad'),
("796", 'Disha Institute of Management and Technology, Raipur'),
("797", 'Divya Jyoti College of Engineering and Technology, Modinagar'),
("798", 'Dnyanshree Institute of Engineering and Technology, Satara'),
("799", 'Doaba Faculty of Engineering and Technology, Nawanshahr'),
("800", 'Doaba Institute of Engineering and Technology, Mohali'),
("801", 'Doaba Women Institute of Engineering and Technology, Mohali'),
("802", 'Don Bosco College of Engineering and Technology, Guwahati'),
("803", 'Don Bosco College of Engineering, Goa'),
("804", 'Don Bosco Institute of Technology, Bangalore'),
("805", 'Don Bosco Institute of Technology, Mumbai'),
("806", 'Doon College of Engineering and Technology, Dehradun'),
("807", 'Doon College of Engineering and Technology, Saharanpur'),
("808", 'Doon Institute of Engineering and Technology, Dehradun'),
("809", 'Doon Valley College of Engineering, Karnal'),
("810", 'Doon Valley Institute of Engineering and Technology, Karnal'),
("811", 'Dr APJ Abdul Kalam University, Indore'),
("812", 'Dr Akhilesh Das Gupta Institute of Technology and Management, New Delhi'),
("813", 'Dr Ambedkar Institute of Technology, Bangalore'),
("814", 'Dr B R Ambedkar National Institute of Technology Jalandhar'),
("815", 'Dr BC Roy Engineering College, Durgapur'),
("816", 'Dr BR Ambedkar Institute of Technology, Port Blair'),
("817", 'Dr BR Ambedkar University, Agra'),
("818", 'Dr BR Ambedkar University, Srikakulam'),
("819", 'Dr Babasaheb Ambedkar College of Engineering and Research, Nagpur'),
("820", 'Dr Babasaheb Ambedkar Technological University, Lonere'),
("821", 'Dr Bhausaheb Nandurkar College of Engineering and Technology, Yavatmal'),
("822", 'Dr CV Raman University, Bilaspur'),
("823", 'Dr CV Raman University, Vaishali'),
("824", 'Dr DY Patil Institute of Engineering Management and Research, Pune'),
("825", 'Dr DY Patil Institute of Technology, Pune'),
("826", 'Dr DY Patil School of Engineering and Technology, Pune'),
("827", 'Dr DY Patil School of Engineering, Pune'),
("828", 'Dr DY Patil Technical Campus, Pune'),
("829", 'Dr Daulatrao Aher College of Engineering, Karad'),
("830", 'Dr GU Pope College of Engineering, Thoothukudi'),
("831", 'Dr Govind Prasad Rani Devi Patel Institute of Technology and management, Kanpur'),
("832", 'Dr JJ Magdum College of Engineering, Jaysingpur'),
("833", 'Dr Jivraj Mehta Institute of Technology, Anand'),
("834", 'Dr KN Modi Engineering College, Modinagar'),
("835", 'Dr KN Modi Girls Engineering College, Modinagar'),
("836", 'Dr KN Modi Institute of Engineering and Technology, Modinagar'),
("837", 'Dr KV Subba Reddy College of Engineering for Women, Kurnool'),
("838", 'Dr KV Subba Reddy Institute of Technology, Kurnool'),
("839", 'Dr Lankapalli Bullayya College of Engineering for Women, Visakhapatnam'),
("840", 'Dr MC Saxena College of Engineering and Technology, Lucknow'),
("841", 'Dr MC Saxena Institute of Engineering and Management, Lucknow'),
("842", 'Dr MGR Educational and Research Institute, Chennai'),
("843", 'Dr MV Shetty Institute of Technology, Mangalore'),
("844", 'Dr Mahalingam College of Engineering and Technology, Pollachi'),
("845", 'Dr NGP Institute of Technology, Coimbatore'),
("846", 'Dr Nagarathinam\'s College of Engineering, Namakkal'),
("847", 'Dr Nallini Institute of Engineering and Technology, Tirupur'),
("848", 'Dr Navalar Nedunchezhiyan College of Engineering, Tholudur'),
("849", 'Dr Paul Raj Engineering College, East Godavari'),
("850", 'Dr Pauls Engineering College, Villupuram'),
("851", 'Dr Radhakrishnan Institute of Technology, Jaipur'),
("852", 'Dr Rajendra Gode Institute of Technology and Research, Amravati'),
("853", 'Dr Ram Manohar Lohia Avadh University, Faizabad'),
("854", 'Dr Rizvi College of Engineering, Kaushambi'),
("855", 'Dr S and SS Ghandhy Government Engineering College, Surat'),
("856", 'Dr SJS Paul Memorial College of Engineering and Technology, Puducherry'),
("857", 'Dr Samuel George Institute of Engineering and Technology, Prakasam'),
("858", 'Dr Sau Kamaltai Gawai Institute of Engineering and Technology, Amravati'),
("859", 'Dr Shakuntala Misra National Rehabilitation University, Lucknow'),
("860", 'Dr Shyama Prasad Mukherjee International Institute of Information Technology, Naya Raipur'),
("861", 'Dr Sivanthi Aditanar College of Engineering, Thoothukudi'),
("862", 'Dr Sri Sri Sri Shivakumara Mahaswamy College of Engineering, Bangalore'),
("863", 'Dr Subhash Technical Campus, Junagadh'),
("864", 'Dr Sudhir Chandra Sur Degree Engineering College, Kolkata'),
("865", 'Dr T Thimmaiah Institute of Technology, Kolar'),
("866", 'Dr VRK College of Engineering and Technology, Karimnagar'),
("867", 'Dr VRK Womens College of Engineering and Technology, Moinabad'),
("868", 'Dr Virendra Swarup Memorial Trust Group of Institutions, Unnao'),
("869", 'Dr Vithalrao Vikhe Patil College of Engineering, Ahmednagar'),
("870", 'Dr ZH Institute of Technology and Management, Firozabad'),
("871", 'Dream Institute of Technology, South 24 Parganas'),
("872", 'Drona College of Management and Technical Education, Dehradun'),
("873", 'Dronacharya College of Engineering, Gurgaon'),
("874", 'Dronacharya Group of Institutions, Greater Noida'),
("875", 'Dumka Engineering College, Dumka'),
("876", 'Dumkal Institute of Engineering and Technology, Murshidabad'),
("877", 'Dungarpur College of Engineering and Technology, Dungarpur'),
("878", 'Durgapur Institute of Advanced Technology and Management, Durgapur'),
("879", 'Dwarkadas J Sanghvi College of Engineering, Mumbai'),
("880", 'E-Max Group of Institutions, Ambala'),
("881", 'E-Max Institute of Engineering and Technology, Ambala'),
("882", 'E-Max School of Engineering and Applied Research, Ambala'),
("883", 'EASA College of Engineering and Technology, Coimbatore'),
("884", 'EGS Pillay Engineering College, Nagapattinam'),
("885", 'EIILM University, Jorethang'),
("886", 'ES Engineering College, Villupuram'),
("887", 'EVM College of Engineering and Technology, Guntur'),
("888", 'EVR College of Engineering and Technology, Nalgonda'),
("889", 'East Point College of Engineering and Technology, Bangalore'),
("890", 'East Point College of Engineering for Women, Bangalore'),
("891", 'East West College of Engineering, Bangalore'),
("892", 'East West Institute of Technology, Bangalore'),
("893", 'Eastern Academy of Science and Technology, Khordha'),
("894", 'Easwari Engineering College, Chennai'),
("895", 'Echelon Institute of Technology, Faridabad'),
("896", 'Einstein Academy of Technology and Management, Khordha'),
("897", 'Einstein College of Engineering, Tirunelveli'),
("898", 'Ekalavya Institute of Technology, Chamarajanagar'),
("899", 'Eklavya College of Technology and Science, Bhubaneswar'),
("900", 'Elenki Engineering College, Siddipet'),
("901", 'Elenki Institute of Engineering and Technology, Medak'),
("902", 'Elizabeth College of Engineering and Technology, Annamangalam'),
("903", 'Ellenki College of Engineering and Technology, Hyderabad'),
("904", 'Ellenki Engineering College for Women, Medak'),
("905", 'Ellenki Engineering College, Siddipet'),
("906", 'Ellenki Institute of Engineering and Technology, Hyderabad'),
("907", 'Eluru College of Engineering and Technology, Eluru'),
("908", 'Engineering College, Tuwa'),
("909", 'Er Perumal Manimekalai College of Engineering, Hosur'),
("910", 'Eranad Knowledge City Technical Campus, Malappuram'),
("911", 'Erode Sengunthar Engineering College, Thudupathi'),
("912", 'Eshan College of Engineering, Mathura'),
("913", 'Eswar College of Engineering, Narasaraopet'),
("914", 'Exalt College of Engineering and Technology, Hajipur'),
("915", 'Excel College of Engineering and Technology, Namakkal'),
("916", 'Excel College of Engineering for Women, Namakkal'),
("917", 'Excel College of Technology, Namakkal'),
("918", 'Excel Engineering College, Namakkal'),
("919", 'Excelsior Education Society KC College of Engineering, Thane'),
("920", 'FIT Engineering College, Meerut'),
("921", 'FIT Group of Institutions, Meerut'),
("922", 'Fabtech Technical Campus, Solapur'),
("923", 'Faculty of Engineering and Technology, Agra College, Agra'),
("924", 'Faculty of Engineering and Technology, Manav Rachna International Institute of Research and Studies, Faridabad'),
("925", 'Farah Institute of Technology, Chevella'),
("926", 'Fatima Michael College of Engineering and Technology, Madurai'),
("927", 'Federal Institute of Science and Technology, Ernakulam'),
("928", 'Feroze Gandhi Institute of Engineering and Technology, Raebareli'),
("929", 'Ferozepur College of Engineering and Technology, Ferozepur'),
("930", 'Finolex Academy of Management and Technology, Ratnagiri'),
("931", 'Flora Institute of Technology, Pune'),
("932", 'Focus Institute of Engineering and Management, Bareilly'),
("933", 'Focus Institute of Science and Technology, Poomala'),
("934", 'Fr C Rodrigues Institute of Technology, Navi Mumbai'),
("935", 'Francis Xavier Engineering College, Tirunelveli'),
("936", 'Future Institute of Engineering and Management, Kolkata'),
("937", 'Future Institute of Engineering and Technology, Bareilly'),
("938", 'Future Institute of Technology, Kolkata'),
("939", 'G Madegowda Institute of Technology, Mandya'),
("940", 'G Narayanamma Institute of Technology and Science For Women, Hyderabad'),
("941", 'G Pulla Reddy Engineering College, Kurnool'),
("942", 'G Pullaiah College of Engineering and Technology, Kurnool'),
("943", 'GB Pant Government Engineering College, Delhi'),
("944", 'GCRG Group of Institutions, Lucknow'),
("945", 'GD Goenka School of Engineering, Gurgaon'),
("946", 'GDMM College of Engineering and Technology, Nandigama'),
("947", 'GGR College of Engineering, Vellore'),
("948", 'GGS College of Modern Technology, Mohali'),
("949", 'GH Patel College of Engineering and Technology, Anand'),
("950", 'GH Raisoni Academy of Engineering and Technology, Nagpur'),
("951", 'GH Raisoni College of Engineering and Management, Ahmednagar'),
("952", 'GH Raisoni College of Engineering and Management, Amravati'),
("953", 'GH Raisoni College of Engineering and Management, Pune'),
("954", 'GH Raisoni College of Engineering, Nagpur'),
("955", 'GH Raisoni Institute of Business Management, Jalgaon'),
("956", 'GH Raisoni Institute of Engineering and Management, Jalgaon'),
("957", 'GH Raisoni Institute of Engineering and Technology for Women, Nagpur'),
("958", 'GH Raisoni Institute of Engineering and Technology, Nagpur'),
("959", 'GH Raisoni Institute of Engineering and Technology, Pune'),
("960", 'GH Raisoni University, Chhindwara'),
("961", 'GICTS Group of Institutions, Gwalior'),
("962", 'GIET College of Engineering, Rajahmundry'),
("963", 'GIET Engineering College, Rajahmundry'),
("964", 'GIET University, Gunupur'),
("965", 'GITAM Institute of Technology, Visakhapatnam'),
("966", 'GITAM School of Technology, Bengaluru'),
("967", 'GITAM School of Technology, Hyderabad'),
("968", 'GK Bharad Institute of Engineering, Rajkot'),
("969", 'GKM College of Engineering and Technology, Chennai'),
("970", 'GL Bajaj Group of Institutions, Mathura'),
("971", 'GL Bajaj Institute of Technology and Management, Greater Noida'),
("972", 'GLA University, Mathura'),
("973", 'GM Institute of Technology, Davangere'),
("974", 'GM Vedak Institute of Technology, Raigad'),
("975", 'GMR Institute of Technology, Rajam'),
("976", 'GNA University, Phagwara'),
("977", 'GNIT Girls Institute of Technology, Greater Noida'),
("978", 'GRD Institute of Management and Technology, Dehradun'),
("979", 'GRT Institute of Engineering and Technology, Thiruvallur'),
("980", 'GS Mandal\'s Maharashtra Institute of Technology, Aurangabad'),
("981", 'GS Mandal\'s Marathwada Institute of Technology, Aurangabad'),
("982", 'GSBA Engineering, Pharmacy and Management Institute, Roorkee'),
("983", 'GSS Institute of Technology, Bangalore'),
("984", 'GSSS Institute of Engineering and Technology for Women, Mysore'),
("985", 'GV Acharya Institute of Engineering and Technology, Raigad'),
("986", 'GVR and S College of Engineering and Technology, Guntur'),
("987", 'GVVR Institute of Technology, Bhimavaram'),
("988", 'Galaxy Global Group of Institutions, Ambala'),
("989", 'Galaxy Global Imperial Technical Campus, Ambala'),
("990", 'Galaxy Institute of Technology and Management, Karnal'),
("991", 'Galgotias College of Engineering and Technology, Greater Noida'),
("992", 'Galgotias University, Greater Noida'),
("993", 'Ganadipathy Tulsi\'s Jain Engineering College, Vellore'),
("994", 'Ganapathy Chettiar College of Engineering and Technology, Ramanathapuram'),
("995", 'Ganapathy College of Engineering, Warangal'),
("996", 'Ganapathy Engineering College, Warangal'),