forked from Harsh19012003/VH-21-19-Team-Dron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfile.json
1168 lines (1168 loc) · 247 KB
/
file.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{"Sr.No": "Sr.No.", "Rank": "RANK", "CUTOFF": "CUTOFF", "Institute Name": "Institute", "Exam": "Course Name", "null": ["Exam\n"]}
{"Sr.No": "1", "Rank": "56", "CUTOFF": "99.1414458", "Institute Name": "3215 - Bhartiya Vidya Bhavan's Sardar Patel Institute of Technology , Andheri, Mumbai", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "2", "Rank": "116", "CUTOFF": "98.6881511", "Institute Name": "3215 - Bhartiya Vidya Bhavan's Sardar Patel Institute of Technology , Andheri, Mumbai", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "3", "Rank": "178", "CUTOFF": "98.4038715", "Institute Name": "6271 - Pune Institute of Computer Technology, Dhankavdi, Pune", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "4", "Rank": "180", "CUTOFF": "98.391399", "Institute Name": "3199 - Shri Vile Parle Kelvani Mandal's Dwarkadas J. Sanghvi College of Engineering,\nVile Parle,Mumbai", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "5", "Rank": "202", "CUTOFF": "98.3014921", "Institute Name": "6271 - Pune Institute of Computer Technology, Dhankavdi, Pune", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "6", "Rank": "419", "CUTOFF": "97.5332917", "Institute Name": "6271 - Pune Institute of Computer Technology, Dhankavdi, Pune", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "7", "Rank": "425", "CUTOFF": "97.5064459", "Institute Name": "3199 - Shri Vile Parle Kelvani Mandal's Dwarkadas J. Sanghvi College of Engineering,\nVile Parle,Mumbai", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "8", "Rank": "597", "CUTOFF": "96.9832324", "Institute Name": "6273 - Bansilal Ramnath Agarawal Charitable Trust's Vishwakarma Institute of\nTechnology, Bibwewadi, Pune", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "9", "Rank": "637", "CUTOFF": "96.8544906", "Institute Name": "3036 - Institute of Chemical Technology, Matunga, Mumbai", "Exam": "Chemical Engineering", "null": ["JEE"]}
{"Sr.No": "10", "Rank": "689", "CUTOFF": "96.6749745", "Institute Name": "6273 - Bansilal Ramnath Agarawal Charitable Trust's Vishwakarma Institute of\nTechnology, Bibwewadi, Pune", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "11", "Rank": "707", "CUTOFF": "96.6446824", "Institute Name": "3199 - Shri Vile Parle Kelvani Mandal's Dwarkadas J. Sanghvi College of Engineering,\nVile Parle,Mumbai", "Exam": "Computer Science and\nEngineering(Data Science)", "null": ["JEE"]}
{"Sr.No": "12", "Rank": "718", "CUTOFF": "96.6115123", "Institute Name": "3215 - Bhartiya Vidya Bhavan's Sardar Patel Institute of Technology , Andheri, Mumbai", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "13", "Rank": "783", "CUTOFF": "96.4632201", "Institute Name": "4115 - Shri Ramdeobaba College of Engineering and Management, Nagpur", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "14", "Rank": "788", "CUTOFF": "96.4528706", "Institute Name": "6273 - Bansilal Ramnath Agarawal Charitable Trust's Vishwakarma Institute of\nTechnology, Bibwewadi, Pune", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "15", "Rank": "884", "CUTOFF": "96.2254497", "Institute Name": "3209 - K J Somaiya Institute of Engineering and Information Technology, Sion, Mumbai", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "16", "Rank": "1073", "CUTOFF": "95.8345556", "Institute Name": "3182 - Thadomal Shahani Engineering College, Bandra, Mumbai", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "17", "Rank": "1095", "CUTOFF": "95.7811606", "Institute Name": "3036 - Institute of Chemical Technology, Matunga, Mumbai", "Exam": "Food Engineering and Technology", "null": ["JEE"]}
{"Sr.No": "18", "Rank": "1109", "CUTOFF": "95.7734521", "Institute Name": "4115 - Shri Ramdeobaba College of Engineering and Management, Nagpur", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "19", "Rank": "1138", "CUTOFF": "95.688403", "Institute Name": "3209 - K J Somaiya Institute of Engineering and Information Technology, Sion, Mumbai", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "20", "Rank": "1184", "CUTOFF": "95.6318716", "Institute Name": "3215 - Bhartiya Vidya Bhavan's Sardar Patel Institute of Technology , Andheri, Mumbai", "Exam": "Electronics Engineering", "null": ["JEE"]}
{"Sr.No": "21", "Rank": "1188", "CUTOFF": "95.6086439", "Institute Name": "6175 - Pimpri Chinchwad Education Trust, Pimpri Chinchwad College of Engineering,\nPune", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "22", "Rank": "1309", "CUTOFF": "95.3917305", "Institute Name": "6271 - Pune Institute of Computer Technology, Dhankavdi, Pune", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "23", "Rank": "1321", "CUTOFF": "95.3541222", "Institute Name": "6175 - Pimpri Chinchwad Education Trust, Pimpri Chinchwad College of Engineering,\nPune", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "24", "Rank": "1354", "CUTOFF": "95.3024769", "Institute Name": "6271 - Pune Institute of Computer Technology, Dhankavdi, Pune", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "25", "Rank": "1386", "CUTOFF": "95.2376232", "Institute Name": "3036 - Institute of Chemical Technology, Matunga, Mumbai", "Exam": "Polymer Engineering and Technology", "null": ["JEE"]}
{"Sr.No": "26", "Rank": "1391", "CUTOFF": "95.217857", "Institute Name": "3185 - Vivekanand Education Society's Institute of Technology, Chembur, Mumbai", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "27", "Rank": "1446", "CUTOFF": "95.1182239", "Institute Name": "3182 - Thadomal Shahani Engineering College, Bandra, Mumbai", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "28", "Rank": "1513", "CUTOFF": "94.9982973", "Institute Name": "4115 - Shri Ramdeobaba College of Engineering and Management, Nagpur", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "29", "Rank": "1519", "CUTOFF": "94.9947813", "Institute Name": "3185 - Vivekanand Education Society's Institute of Technology, Chembur, Mumbai", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "30", "Rank": "1533", "CUTOFF": "94.9879747", "Institute Name": "3199 - Shri Vile Parle Kelvani Mandal's Dwarkadas J. Sanghvi College of Engineering,\nVile Parle,Mumbai", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "31", "Rank": "1601", "CUTOFF": "94.8591079", "Institute Name": "4115 - Shri Ramdeobaba College of Engineering and Management, Nagpur", "Exam": "Computer Science and\nEngineering(Artificial Intelligence and\nMachine Learning)", "null": ["JEE"]}
{"Sr.No": "32", "Rank": "1603", "CUTOFF": "94.8591079", "Institute Name": "3036 - Institute of Chemical Technology, Matunga, Mumbai", "Exam": "Pharmaceuticals Chemistry and\nTechnology", "null": ["JEE"]}
{"Sr.No": "33", "Rank": "1634", "CUTOFF": "94.7977247", "Institute Name": "6289 - B.R.A.C.T's Vishwakarma Institute of Information Technology, Kondhwa (Bk.),\nPune", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "34", "Rank": "1679", "CUTOFF": "94.7251739", "Institute Name": "3199 - Shri Vile Parle Kelvani Mandal's Dwarkadas J. Sanghvi College of Engineering,\nVile Parle,Mumbai", "Exam": "Electronics Engineering", "null": ["JEE"]}
{"Sr.No": "35", "Rank": "1746", "CUTOFF": "94.6215562", "Institute Name": "4115 - Shri Ramdeobaba College of Engineering and Management, Nagpur", "Exam": "Computer Science and\nEngineering(Cyber Security)", "null": ["JEE"]}
{"Sr.No": "36", "Rank": "1756", "CUTOFF": "94.5937937", "Institute Name": "6289 - B.R.A.C.T's Vishwakarma Institute of Information Technology, Kondhwa (Bk.),\nPune", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "37", "Rank": "1808", "CUTOFF": "94.5026944", "Institute Name": "3182 - Thadomal Shahani Engineering College, Bandra, Mumbai", "Exam": "Artificial Intelligence and Data Science", "null": ["JEE"]}
{"Sr.No": "38", "Rank": "1812", "CUTOFF": "94.4920082", "Institute Name": "6276 - MKSSS's Cummins College of Engineering for Women, Karvenagar,Pune", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "39", "Rank": "1861", "CUTOFF": "94.4159187", "Institute Name": "6175 - Pimpri Chinchwad Education Trust, Pimpri Chinchwad College of Engineering,\nPune", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "40", "Rank": "1884", "CUTOFF": "94.4114276", "Institute Name": "4115 - Shri Ramdeobaba College of Engineering and Management, Nagpur", "Exam": "Computer Science and\nEngineering(Data Science)", "null": ["JEE"]}
{"Sr.No": "41", "Rank": "1891", "CUTOFF": "94.3815612", "Institute Name": "3176 - Thakur College of Engineering and Technology, Kandivali, Mumbai", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "42", "Rank": "1909", "CUTOFF": "94.3390626", "Institute Name": "6274 - Pune Vidyarthi Griha's College of Engineering and Technology and G K\nPate(Wani) Institute of Management, Pune", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "43", "Rank": "1966", "CUTOFF": "94.2790029", "Institute Name": "3036 - Institute of Chemical Technology, Matunga, Mumbai", "Exam": "Oil,Oleochemicals and Surfactants\nTechnology", "null": ["JEE"]}
{"Sr.No": "44", "Rank": "1988", "CUTOFF": "94.2251676", "Institute Name": "6273 - Bansilal Ramnath Agarawal Charitable Trust's Vishwakarma Institute of\nTechnology, Bibwewadi, Pune", "Exam": "Artificial Intelligence and Data Science", "null": ["JEE"]}
{"Sr.No": "45", "Rank": "2133", "CUTOFF": "93.9600114", "Institute Name": "3184 - Fr. Conceicao Rodrigues College of Engineering, Bandra,Mumbai", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "46", "Rank": "2134", "CUTOFF": "93.9600114", "Institute Name": "3185 - Vivekanand Education Society's Institute of Technology, Chembur, Mumbai", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "47", "Rank": "2199", "CUTOFF": "93.9116921", "Institute Name": "3209 - K J Somaiya Institute of Engineering and Information Technology, Sion, Mumbai", "Exam": "Artificial Intelligence and Data Science", "null": ["JEE"]}
{"Sr.No": "48", "Rank": "2246", "CUTOFF": "93.7994851", "Institute Name": "3184 - Fr. Conceicao Rodrigues College of Engineering, Bandra,Mumbai", "Exam": "Artificial Intelligence and Data Science", "null": ["JEE"]}
{"Sr.No": "49", "Rank": "2250", "CUTOFF": "93.7994851", "Institute Name": "3214 - Xavier Institute Of Engineering C/O Xavier Technical Institute,Mahim,Mumbai", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "50", "Rank": "2255", "CUTOFF": "93.7932185", "Institute Name": "6754 - International Institute of Information Technology (I\u00c2\u00b2IT), Pune.", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "51", "Rank": "2292", "CUTOFF": "93.7385915", "Institute Name": "3185 - Vivekanand Education Society's Institute of Technology, Chembur, Mumbai", "Exam": "Artificial Intelligence and Data Science", "null": ["JEE"]}
{"Sr.No": "52", "Rank": "2306", "CUTOFF": "93.7037238", "Institute Name": "6289 - B.R.A.C.T's Vishwakarma Institute of Information Technology, Kondhwa (Bk.),\nPune", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "53", "Rank": "2343", "CUTOFF": "93.63352", "Institute Name": "6276 - MKSSS's Cummins College of Engineering for Women, Karvenagar,Pune", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "54", "Rank": "2437", "CUTOFF": "93.4905849", "Institute Name": "3197 - Agnel Charities' FR. C. Rodrigues Institute of Technology, Vashi, Navi Mumbai", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "55", "Rank": "2457", "CUTOFF": "93.4717874", "Institute Name": "3199 - Shri Vile Parle Kelvani Mandal's Dwarkadas J. Sanghvi College of Engineering,\nVile Parle,Mumbai", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "56", "Rank": "2555", "CUTOFF": "93.2964586", "Institute Name": "6146 - MIT Academy of Engineering,Alandi, Pune", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "57", "Rank": "2580", "CUTOFF": "93.262956", "Institute Name": "6273 - Bansilal Ramnath Agarawal Charitable Trust's Vishwakarma Institute of\nTechnology, Bibwewadi, Pune", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "58", "Rank": "2622", "CUTOFF": "93.1873354", "Institute Name": "3183 - Anjuman-I-Islam's M.H. Saboo Siddik College of Engineering, Byculla, Mumbai", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "59", "Rank": "2695", "CUTOFF": "93.0885184", "Institute Name": "6273 - Bansilal Ramnath Agarawal Charitable Trust's Vishwakarma Institute of\nTechnology, Bibwewadi, Pune", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "60", "Rank": "2755", "CUTOFF": "92.9652821", "Institute Name": "4115 - Shri Ramdeobaba College of Engineering and Management, Nagpur", "Exam": "Electronics and Communication\nEngineering", "null": ["JEE"]}
{"Sr.No": "61", "Rank": "2772", "CUTOFF": "92.9637276", "Institute Name": "3182 - Thadomal Shahani Engineering College, Bandra, Mumbai", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "62", "Rank": "2782", "CUTOFF": "92.9511398", "Institute Name": "6278 - All India Shri Shivaji Memorial Society's College of Engineering, Pune", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "63", "Rank": "2860", "CUTOFF": "92.7866138", "Institute Name": "3176 - Thakur College of Engineering and Technology, Kandivali, Mumbai", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "64", "Rank": "2861", "CUTOFF": "92.7827663", "Institute Name": "3139 - Vidyalankar Institute of Technology,Wadala, Mumbai", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "65", "Rank": "2873", "CUTOFF": "92.7827663", "Institute Name": "6276 - MKSSS's Cummins College of Engineering for Women, Karvenagar,Pune", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "66", "Rank": "2931", "CUTOFF": "92.6903003", "Institute Name": "6274 - Pune Vidyarthi Griha's College of Engineering and Technology and G K\nPate(Wani) Institute of Management, Pune", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "67", "Rank": "2947", "CUTOFF": "92.6768827", "Institute Name": "3036 - Institute of Chemical Technology, Matunga, Mumbai", "Exam": "Dyestuff Technology", "null": ["JEE"]}
{"Sr.No": "68", "Rank": "2948", "CUTOFF": "92.6768827", "Institute Name": "3184 - Fr. Conceicao Rodrigues College of Engineering, Bandra,Mumbai", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "69", "Rank": "2982", "CUTOFF": "92.6070387", "Institute Name": "3208 - Don Bosco Institute of Technology, Mumbai", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "70", "Rank": "2989", "CUTOFF": "92.6070387", "Institute Name": "4115 - Shri Ramdeobaba College of Engineering and Management, Nagpur", "Exam": "Electronics and Communication\nEngineering", "null": ["JEE"]}
{"Sr.No": "71", "Rank": "3031", "CUTOFF": "92.508913", "Institute Name": "6272 - Dr. D. Y. Patil Pratishthan's D.Y.Patil College of Engineering Akurdi, Pune", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "72", "Rank": "3070", "CUTOFF": "92.4459821", "Institute Name": "3176 - Thakur College of Engineering and Technology, Kandivali, Mumbai", "Exam": "Artificial Intelligence and Machine\nLearning", "null": ["JEE"]}
{"Sr.No": "73", "Rank": "3072", "CUTOFF": "92.4459821", "Institute Name": "4115 - Shri Ramdeobaba College of Engineering and Management, Nagpur", "Exam": "Bio Medical Engineering", "null": ["JEE"]}
{"Sr.No": "74", "Rank": "3114", "CUTOFF": "92.4364162", "Institute Name": "4115 - Shri Ramdeobaba College of Engineering and Management, Nagpur", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "75", "Rank": "3178", "CUTOFF": "92.3129313", "Institute Name": "3199 - Shri Vile Parle Kelvani Mandal's Dwarkadas J. Sanghvi College of Engineering,\nVile Parle,Mumbai", "Exam": "Chemical Engineering", "null": ["JEE"]}
{"Sr.No": "76", "Rank": "3190", "CUTOFF": "92.304825", "Institute Name": "3036 - Institute of Chemical Technology, Matunga, Mumbai", "Exam": "Surface Coating Technology", "null": ["JEE"]}
{"Sr.No": "77", "Rank": "3205", "CUTOFF": "92.2920648", "Institute Name": "6146 - MIT Academy of Engineering,Alandi, Pune", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "78", "Rank": "3298", "CUTOFF": "92.1979161", "Institute Name": "6289 - B.R.A.C.T's Vishwakarma Institute of Information Technology, Kondhwa (Bk.),\nPune", "Exam": "Artificial Intelligence and Data Science", "null": ["JEE"]}
{"Sr.No": "79", "Rank": "3514", "CUTOFF": "91.8403514", "Institute Name": "6796 - Bharati Vidyapeeth's College of Engineering,Lavale, Pune", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "80", "Rank": "3548", "CUTOFF": "91.8332985", "Institute Name": "3036 - Institute of Chemical Technology, Matunga, Mumbai", "Exam": "Fibres and Textile Processing\nTechnology", "null": ["JEE"]}
{"Sr.No": "81", "Rank": "3551", "CUTOFF": "91.8332985", "Institute Name": "6141 - Jaywant Shikshan Prasarak Mandal's,Rajarshi Shahu College of Engineering,\nTathawade, Pune", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "82", "Rank": "3567", "CUTOFF": "91.7540434", "Institute Name": "6822 - Pimpri Chinchwad Education Trust's Pimpri Chinchwad College Of Engineering\nAnd Research, Ravet", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "83", "Rank": "3650", "CUTOFF": "91.65811", "Institute Name": "3204 - St. Francis Institute of Technology,Borivali, Mumbai", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "84", "Rank": "3661", "CUTOFF": "91.6438702", "Institute Name": "3197 - Agnel Charities' FR. C. Rodrigues Institute of Technology, Vashi, Navi Mumbai", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "85", "Rank": "3678", "CUTOFF": "91.6238781", "Institute Name": "4115 - Shri Ramdeobaba College of Engineering and Management, Nagpur", "Exam": "Electronics Engineering", "null": ["JEE"]}
{"Sr.No": "86", "Rank": "3754", "CUTOFF": "91.4701597", "Institute Name": "6754 - International Institute of Information Technology (I\u00c2\u00b2IT), Pune.", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "87", "Rank": "3775", "CUTOFF": "91.4431022", "Institute Name": "3209 - K J Somaiya Institute of Engineering and Information Technology, Sion, Mumbai", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "88", "Rank": "3784", "CUTOFF": "91.4431022", "Institute Name": "4115 - Shri Ramdeobaba College of Engineering and Management, Nagpur", "Exam": "Electronics Engineering", "null": ["JEE"]}
{"Sr.No": "89", "Rank": "3796", "CUTOFF": "91.416018", "Institute Name": "3176 - Thakur College of Engineering and Technology, Kandivali, Mumbai", "Exam": "Artificial Intelligence and Data Science", "null": ["JEE"]}
{"Sr.No": "90", "Rank": "3853", "CUTOFF": "91.3844507", "Institute Name": "3183 - Anjuman-I-Islam's M.H. Saboo Siddik College of Engineering, Byculla, Mumbai", "Exam": "Computer Science and\nEngineering(Artificial Intelligence and\nMachine Learning)", "null": ["JEE"]}
{"Sr.No": "91", "Rank": "3883", "CUTOFF": "91.314972", "Institute Name": "6175 - Pimpri Chinchwad Education Trust, Pimpri Chinchwad College of Engineering,\nPune", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "92", "Rank": "3895", "CUTOFF": "91.2475185", "Institute Name": "3184 - Fr. Conceicao Rodrigues College of Engineering, Bandra,Mumbai", "Exam": "Electronics and Computer Science", "null": ["JEE"]}
{"Sr.No": "93", "Rank": "3925", "CUTOFF": "91.2222675", "Institute Name": "3183 - Anjuman-I-Islam's M.H. Saboo Siddik College of Engineering, Byculla, Mumbai", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "94", "Rank": "3926", "CUTOFF": "91.2222675", "Institute Name": "3197 - Agnel Charities' FR. C. Rodrigues Institute of Technology, Vashi, Navi Mumbai", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "95", "Rank": "3956", "CUTOFF": "91.2125751", "Institute Name": "4115 - Shri Ramdeobaba College of Engineering and Management, Nagpur", "Exam": "Electrical Engineering", "null": ["JEE"]}
{"Sr.No": "96", "Rank": "4009", "CUTOFF": "91.1044385", "Institute Name": "3176 - Thakur College of Engineering and Technology, Kandivali, Mumbai", "Exam": "Internet of Things (IoT)", "null": ["JEE"]}
{"Sr.No": "97", "Rank": "4015", "CUTOFF": "91.1044385", "Institute Name": "3182 - Thadomal Shahani Engineering College, Bandra, Mumbai", "Exam": "Chemical Engineering", "null": ["JEE"]}
{"Sr.No": "98", "Rank": "4029", "CUTOFF": "91.0883933", "Institute Name": "6273 - Bansilal Ramnath Agarawal Charitable Trust's Vishwakarma Institute of\nTechnology, Bibwewadi, Pune", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "99", "Rank": "4048", "CUTOFF": "91.0855668", "Institute Name": "6278 - All India Shri Shivaji Memorial Society's College of Engineering, Pune", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "100", "Rank": "4102", "CUTOFF": "90.9951692", "Institute Name": "6177 - Sinhgad College of Engineering, Vadgaon (BK), Pune", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "101", "Rank": "4172", "CUTOFF": "90.8286547", "Institute Name": "6175 - Pimpri Chinchwad Education Trust, Pimpri Chinchwad College of Engineering,\nPune", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "102", "Rank": "4381", "CUTOFF": "90.4932262", "Institute Name": "4167 - Yeshwantrao Chavan College of Engineering,Wanadongri, Nagpur", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "103", "Rank": "4432", "CUTOFF": "90.4590322", "Institute Name": "6273 - Bansilal Ramnath Agarawal Charitable Trust's Vishwakarma Institute of\nTechnology, Bibwewadi, Pune", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "104", "Rank": "4448", "CUTOFF": "90.3786173", "Institute Name": "6139 - Progressive Education Society's Modern College of Engineering, Pune", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "105", "Rank": "4458", "CUTOFF": "90.3765335", "Institute Name": "3189 - Bharati Vidyapeeth College of Engineering, Navi Mumbai", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "106", "Rank": "4472", "CUTOFF": "90.3765335", "Institute Name": "3208 - Don Bosco Institute of Technology, Mumbai", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "107", "Rank": "4480", "CUTOFF": "90.3715882", "Institute Name": "6272 - Dr. D. Y. Patil Pratishthan's D.Y.Patil College of Engineering Akurdi, Pune", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "108", "Rank": "4498", "CUTOFF": "90.3672331", "Institute Name": "3214 - Xavier Institute Of Engineering C/O Xavier Technical Institute,Mahim,Mumbai", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "109", "Rank": "4559", "CUTOFF": "90.2370544", "Institute Name": "3135 - Manjara Charitable Trust's Rajiv Gandhi Institute of Technology, Mumbai", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "110", "Rank": "4685", "CUTOFF": "90.0166412", "Institute Name": "6177 - Sinhgad College of Engineering, Vadgaon (BK), Pune", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "111", "Rank": "4719", "CUTOFF": "89.9667109", "Institute Name": "3139 - Vidyalankar Institute of Technology,Wadala, Mumbai", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "112", "Rank": "4740", "CUTOFF": "89.9667109", "Institute Name": "3201 - Rizvi Education Society's Rizvi College of Engineering, Bandra,Mumbai", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "113", "Rank": "4764", "CUTOFF": "89.957203", "Institute Name": "3185 - Vivekanand Education Society's Institute of Technology, Chembur, Mumbai", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "114", "Rank": "4779", "CUTOFF": "89.957203", "Institute Name": "3214 - Xavier Institute Of Engineering C/O Xavier Technical Institute,Mahim,Mumbai", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "115", "Rank": "4822", "CUTOFF": "89.8782776", "Institute Name": "6282 - All India Shri Shivaji Memorial Society's Institute of Information\nTechnology,Pune", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "116", "Rank": "4928", "CUTOFF": "89.7056982", "Institute Name": "6276 - MKSSS's Cummins College of Engineering for Women, Karvenagar,Pune", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "117", "Rank": "4930", "CUTOFF": "89.7056982", "Institute Name": "3211 - S.I.E.S. Graduate School of Technology, Nerul, Navi Mumbai", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "118", "Rank": "5002", "CUTOFF": "89.6436928", "Institute Name": "5121 - K. K. Wagh Institute of Engineering Education and Research, Nashik", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "119", "Rank": "5067", "CUTOFF": "89.4732118", "Institute Name": "4115 - Shri Ramdeobaba College of Engineering and Management, Nagpur", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "120", "Rank": "5100", "CUTOFF": "89.471508", "Institute Name": "6289 - B.R.A.C.T's Vishwakarma Institute of Information Technology, Kondhwa (Bk.),\nPune", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "121", "Rank": "5261", "CUTOFF": "89.2094379", "Institute Name": "3204 - St. Francis Institute of Technology,Borivali, Mumbai", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "122", "Rank": "5270", "CUTOFF": "89.2091523", "Institute Name": "6802 - Dr. D.Y.Patil Institute of Engineering, Management & Reseach, Akurdi, Pune", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "123", "Rank": "5306", "CUTOFF": "89.179415", "Institute Name": "4115 - Shri Ramdeobaba College of Engineering and Management, Nagpur", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "124", "Rank": "5308", "CUTOFF": "89.179415", "Institute Name": "6207 - Dr. D. Y. Patil Vidya Pratishthan Society\u00e2\u20ac\u2122s Dr. D. Y. Patil Institute of Technology,\nPimpri, Pune", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "125", "Rank": "5340", "CUTOFF": "89.1463772", "Institute Name": "3176 - Thakur College of Engineering and Technology, Kandivali, Mumbai", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "126", "Rank": "5369", "CUTOFF": "89.1102368", "Institute Name": "3211 - S.I.E.S. Graduate School of Technology, Nerul, Navi Mumbai", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "127", "Rank": "5409", "CUTOFF": "88.9592184", "Institute Name": "4116 - Ankush Shikshan Sanstha's G.H.Raisoni College of Engineering, Nagpur", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "128", "Rank": "5475", "CUTOFF": "88.9034061", "Institute Name": "3207 - Mahatma Education Society's Pillai College of Engineering, New Panvel", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "129", "Rank": "5542", "CUTOFF": "88.8568844", "Institute Name": "6282 - All India Shri Shivaji Memorial Society's Institute of Information\nTechnology,Pune", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "130", "Rank": "5614", "CUTOFF": "88.6609486", "Institute Name": "6265 - Walchand Institute of Technology, Solapur", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "131", "Rank": "5705", "CUTOFF": "88.5707183", "Institute Name": "6207 - Dr. D. Y. Patil Vidya Pratishthan Society\u00e2\u20ac\u2122s Dr. D. Y. Patil Institute of Technology,\nPimpri, Pune", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "132", "Rank": "5745", "CUTOFF": "88.5200525", "Institute Name": "6139 - Progressive Education Society's Modern College of Engineering, Pune", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "133", "Rank": "5877", "CUTOFF": "88.2592361", "Institute Name": "6175 - Pimpri Chinchwad Education Trust, Pimpri Chinchwad College of Engineering,\nPune", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "134", "Rank": "5917", "CUTOFF": "88.2292847", "Institute Name": "3135 - Manjara Charitable Trust's Rajiv Gandhi Institute of Technology, Mumbai", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "135", "Rank": "5946", "CUTOFF": "88.2289171", "Institute Name": "3204 - St. Francis Institute of Technology,Borivali, Mumbai", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "136", "Rank": "6030", "CUTOFF": "88.0909116", "Institute Name": "6175 - Pimpri Chinchwad Education Trust, Pimpri Chinchwad College of Engineering,\nPune", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "137", "Rank": "6033", "CUTOFF": "88.0909116", "Institute Name": "6177 - Sinhgad College of Engineering, Vadgaon (BK), Pune", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "138", "Rank": "6048", "CUTOFF": "88.0378205", "Institute Name": "3423 - Shree L.R. Tiwari College of Engineering, Mira Road, Mumbai", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "139", "Rank": "6128", "CUTOFF": "87.9271554", "Institute Name": "5121 - K. K. Wagh Institute of Engineering Education and Research, Nashik", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "140", "Rank": "6133", "CUTOFF": "87.8974734", "Institute Name": "6276 - MKSSS's Cummins College of Engineering for Women, Karvenagar,Pune", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "141", "Rank": "6142", "CUTOFF": "87.8974734", "Institute Name": "4115 - Shri Ramdeobaba College of Engineering and Management, Nagpur", "Exam": "Industrial Engineering", "null": ["JEE"]}
{"Sr.No": "142", "Rank": "6181", "CUTOFF": "87.8560088", "Institute Name": "6141 - Jaywant Shikshan Prasarak Mandal's,Rajarshi Shahu College of Engineering,\nTathawade, Pune", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "143", "Rank": "6228", "CUTOFF": "87.7810287", "Institute Name": "3176 - Thakur College of Engineering and Technology, Kandivali, Mumbai", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "144", "Rank": "6253", "CUTOFF": "87.7810287", "Institute Name": "1101 - Shri Sant Gajanan Maharaj College of Engineering,Shegaon", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "145", "Rank": "6324", "CUTOFF": "87.652153", "Institute Name": "3475 - A. P. Shah Institute of Technology, Thane", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "146", "Rank": "6458", "CUTOFF": "87.4924247", "Institute Name": "6207 - Dr. D. Y. Patil Vidya Pratishthan Society\u00e2\u20ac\u2122s Dr. D. Y. Patil Institute of Technology,\nPimpri, Pune", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "147", "Rank": "6507", "CUTOFF": "87.3353649", "Institute Name": "6155 - G.H.Raisoni College of Engineering & Management, Wagholi, Pune", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "148", "Rank": "6509", "CUTOFF": "87.3353649", "Institute Name": "6175 - Pimpri Chinchwad Education Trust, Pimpri Chinchwad College of Engineering,\nPune", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "149", "Rank": "6531", "CUTOFF": "87.3174834", "Institute Name": "6281 - Modern Education Society's College of Engineering, Pune", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "150", "Rank": "6647", "CUTOFF": "87.221647", "Institute Name": "6282 - All India Shri Shivaji Memorial Society's Institute of Information\nTechnology,Pune", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "151", "Rank": "6648", "CUTOFF": "87.221647", "Institute Name": "6176 - G. H.Raisoni Institute of Engineering and Technology, Wagholi, Pune", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "152", "Rank": "6672", "CUTOFF": "87.2090374", "Institute Name": "3176 - Thakur College of Engineering and Technology, Kandivali, Mumbai", "Exam": "Electronics Engineering", "null": ["JEE"]}
{"Sr.No": "153", "Rank": "6686", "CUTOFF": "87.1605258", "Institute Name": "3185 - Vivekanand Education Society's Institute of Technology, Chembur, Mumbai", "Exam": "Electronics Engineering", "null": ["JEE"]}
{"Sr.No": "154", "Rank": "6838", "CUTOFF": "86.8921614", "Institute Name": "6156 - Marathwada Mitra Mandal's College of Engineering, Karvenagar, Pune", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "155", "Rank": "7009", "CUTOFF": "86.5792393", "Institute Name": "4116 - Ankush Shikshan Sanstha's G.H.Raisoni College of Engineering, Nagpur", "Exam": "Artificial Intelligence", "null": ["JEE"]}
{"Sr.No": "156", "Rank": "7026", "CUTOFF": "86.5792393", "Institute Name": "6281 - Modern Education Society's College of Engineering, Pune", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "157", "Rank": "7137", "CUTOFF": "86.4765691", "Institute Name": "3183 - Anjuman-I-Islam's M.H. Saboo Siddik College of Engineering, Byculla, Mumbai", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "158", "Rank": "7176", "CUTOFF": "86.4353841", "Institute Name": "3189 - Bharati Vidyapeeth College of Engineering, Navi Mumbai", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "159", "Rank": "7236", "CUTOFF": "86.3334737", "Institute Name": "6285 - Bharati Vidyapeeth's College of Engineering for Women, Katraj, Dhankawadi,\nPune", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "160", "Rank": "7242", "CUTOFF": "86.3334737", "Institute Name": "3203 - Atharva College of Engineering,Malad(West),Mumbai", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "161", "Rank": "7282", "CUTOFF": "86.2234746", "Institute Name": "6139 - Progressive Education Society's Modern College of Engineering, Pune", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "162", "Rank": "7298", "CUTOFF": "86.2234746", "Institute Name": "4142 - Ankush Shikshan Sanstha's G. H. Raisoni Institute of Engineering & Technology,\nNagpur", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "163", "Rank": "7330", "CUTOFF": "86.1693056", "Institute Name": "6754 - International Institute of Information Technology (I\u00c2\u00b2IT), Pune.", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "164", "Rank": "7332", "CUTOFF": "86.1693056", "Institute Name": "3207 - Mahatma Education Society's Pillai College of Engineering, New Panvel", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "165", "Rank": "7448", "CUTOFF": "86.0316146", "Institute Name": "6214 - K. E. Society's Rajarambapu Institute of Technology, Walwa, Sangli", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "166", "Rank": "7455", "CUTOFF": "86.0316146", "Institute Name": "3148 - Mahavir Education Trust's Shah & Anchor Kutchhi Engineering College, Mumbai", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "167", "Rank": "7541", "CUTOFF": "85.8991652", "Institute Name": "6155 - G.H.Raisoni College of Engineering & Management, Wagholi, Pune", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "168", "Rank": "7582", "CUTOFF": "85.8301142", "Institute Name": "6265 - Walchand Institute of Technology, Solapur", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "169", "Rank": "7661", "CUTOFF": "85.7869807", "Institute Name": "3187 - N.Y.S.S.'s Datta Meghe College of Engineering, Airoli, Navi Mumbai", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "170", "Rank": "7672", "CUTOFF": "85.744538", "Institute Name": "3194 - Vidyavardhini's College of Engineering and Technology, Vasai", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "171", "Rank": "7686", "CUTOFF": "85.6840892", "Institute Name": "6176 - G. H.Raisoni Institute of Engineering and Technology, Wagholi, Pune", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "172", "Rank": "7743", "CUTOFF": "85.6296276", "Institute Name": "3176 - Thakur College of Engineering and Technology, Kandivali, Mumbai", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "173", "Rank": "7835", "CUTOFF": "85.4368932", "Institute Name": "3197 - Agnel Charities' FR. C. Rodrigues Institute of Technology, Vashi, Navi Mumbai", "Exam": "Electrical Engineering", "null": ["JEE"]}
{"Sr.No": "174", "Rank": "7947", "CUTOFF": "85.4059364", "Institute Name": "6214 - K. E. Society's Rajarambapu Institute of Technology, Walwa, Sangli", "Exam": "Computer Science and Information\nTechnology", "null": ["JEE"]}
{"Sr.No": "175", "Rank": "7970", "CUTOFF": "85.3778214", "Institute Name": "2250 - Aurangabad College of Engineering, Naygaon Savangi, Aurangabad", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "176", "Rank": "8086", "CUTOFF": "85.1084939", "Institute Name": "6139 - Progressive Education Society's Modern College of Engineering, Pune", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "177", "Rank": "8113", "CUTOFF": "85.0622493", "Institute Name": "4167 - Yeshwantrao Chavan College of Engineering,Wanadongri, Nagpur", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "178", "Rank": "8127", "CUTOFF": "85.0622493", "Institute Name": "6822 - Pimpri Chinchwad Education Trust's Pimpri Chinchwad College Of Engineering\nAnd Research, Ravet", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "179", "Rank": "8177", "CUTOFF": "85.0128714", "Institute Name": "3197 - Agnel Charities' FR. C. Rodrigues Institute of Technology, Vashi, Navi Mumbai", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "180", "Rank": "8204", "CUTOFF": "85.0128714", "Institute Name": "4167 - Yeshwantrao Chavan College of Engineering,Wanadongri, Nagpur", "Exam": "Computer Technology", "null": ["JEE"]}
{"Sr.No": "181", "Rank": "8316", "CUTOFF": "84.8392186", "Institute Name": "6145 - JSPM'S Jaywantrao Sawant College of Engineering,Pune", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "182", "Rank": "8365", "CUTOFF": "84.8353696", "Institute Name": "6178 - Sinhgad Technical Education Society's Smt. Kashibai Navale College of\nEngineering,Vadgaon,Pune", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "183", "Rank": "8496", "CUTOFF": "84.589856", "Institute Name": "6272 - Dr. D. Y. Patil Pratishthan's D.Y.Patil College of Engineering Akurdi, Pune", "Exam": "Artificial Intelligence and Data Science", "null": ["JEE"]}
{"Sr.No": "184", "Rank": "8631", "CUTOFF": "84.4759838", "Institute Name": "6284 - Vidya Pratishthan's Kamalnayan Bajaj Institute of Engineering & Technology,\nBaramati Dist.Pune", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "185", "Rank": "8656", "CUTOFF": "84.4759838", "Institute Name": "6267 - Kolhapur Institute of Technology's College of Engineering(Autonomous),\nKolhapur", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "186", "Rank": "8755", "CUTOFF": "84.3040913", "Institute Name": "4116 - Ankush Shikshan Sanstha's G.H.Raisoni College of Engineering, Nagpur", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "187", "Rank": "8773", "CUTOFF": "84.3040913", "Institute Name": "6146 - MIT Academy of Engineering,Alandi, Pune", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "188", "Rank": "8779", "CUTOFF": "84.3040913", "Institute Name": "3190 - Terna Engineering College, Nerul, Navi Mumbai", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "189", "Rank": "8836", "CUTOFF": "84.1854032", "Institute Name": "6178 - Sinhgad Technical Education Society's Smt. Kashibai Navale College of\nEngineering,Vadgaon,Pune", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "190", "Rank": "8875", "CUTOFF": "84.1362819", "Institute Name": "6156 - Marathwada Mitra Mandal's College of Engineering, Karvenagar, Pune", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "191", "Rank": "8881", "CUTOFF": "84.1362819", "Institute Name": "4174 - ST. Vincent Pallotti College of Engineering & Technology, Nagpur", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "192", "Rank": "8967", "CUTOFF": "83.953146", "Institute Name": "6160 - JSPM's Imperial College of Engineering and Research, Wagholi, Pune", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "193", "Rank": "9050", "CUTOFF": "83.7700478", "Institute Name": "6207 - Dr. D. Y. Patil Vidya Pratishthan Society\u00e2\u20ac\u2122s Dr. D. Y. Patil Institute of Technology,\nPimpri, Pune", "Exam": "Artificial Intelligence and Data Science", "null": ["JEE"]}
{"Sr.No": "194", "Rank": "9072", "CUTOFF": "83.7592344", "Institute Name": "4174 - ST. Vincent Pallotti College of Engineering & Technology, Nagpur", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "195", "Rank": "9090", "CUTOFF": "83.7592344", "Institute Name": "3423 - Shree L.R. Tiwari College of Engineering, Mira Road, Mumbai", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "196", "Rank": "9154", "CUTOFF": "83.7000641", "Institute Name": "6265 - Walchand Institute of Technology, Solapur", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "197", "Rank": "9201", "CUTOFF": "83.6819036", "Institute Name": "6274 - Pune Vidyarthi Griha's College of Engineering and Technology and G K\nPate(Wani) Institute of Management, Pune", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "198", "Rank": "9221", "CUTOFF": "83.6510078", "Institute Name": "3201 - Rizvi Education Society's Rizvi College of Engineering, Bandra,Mumbai", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "199", "Rank": "9252", "CUTOFF": "83.5781296", "Institute Name": "6178 - Sinhgad Technical Education Society's Smt. Kashibai Navale College of\nEngineering,Vadgaon,Pune", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "200", "Rank": "9271", "CUTOFF": "83.5306919", "Institute Name": "4116 - Ankush Shikshan Sanstha's G.H.Raisoni College of Engineering, Nagpur", "Exam": "Data Science", "null": ["JEE"]}
{"Sr.No": "201", "Rank": "9422", "CUTOFF": "83.3202181", "Institute Name": "3201 - Rizvi Education Society's Rizvi College of Engineering, Bandra,Mumbai", "Exam": "Artificial Intelligence and Data Science", "null": ["JEE"]}
{"Sr.No": "202", "Rank": "9512", "CUTOFF": "83.2164625", "Institute Name": "3203 - Atharva College of Engineering,Malad(West),Mumbai", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "203", "Rank": "9521", "CUTOFF": "83.2164625", "Institute Name": "1101 - Shri Sant Gajanan Maharaj College of Engineering,Shegaon", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "204", "Rank": "9671", "CUTOFF": "83.0211088", "Institute Name": "6802 - Dr. D.Y.Patil Institute of Engineering, Management & Reseach, Akurdi, Pune", "Exam": "Artificial Intelligence and Data Science", "null": ["JEE"]}
{"Sr.No": "205", "Rank": "9724", "CUTOFF": "82.9589254", "Institute Name": "3148 - Mahavir Education Trust's Shah & Anchor Kutchhi Engineering College, Mumbai", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "206", "Rank": "9793", "CUTOFF": "82.8349555", "Institute Name": "5108 - Maratha Vidya Prasarak Samaj's Karmaveer Adv. Baburao Ganpatrao Thakare\nCollege Of Engineering, Nashik", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "207", "Rank": "9795", "CUTOFF": "82.8349555", "Institute Name": "3194 - Vidyavardhini's College of Engineering and Technology, Vasai", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "208", "Rank": "9815", "CUTOFF": "82.8349555", "Institute Name": "6145 - JSPM'S Jaywantrao Sawant College of Engineering,Pune", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "209", "Rank": "9831", "CUTOFF": "82.75399", "Institute Name": "4649 - Bajaj Institute of Technology, Wardha", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "210", "Rank": "9871", "CUTOFF": "82.7436999", "Institute Name": "5160 - Sanjivani Rural Education Society's Sanjivani College of Engineering, Kopargaon", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "211", "Rank": "9952", "CUTOFF": "82.6456988", "Institute Name": "4171 - Lokmanya Tilak Jankalyan Shikshan Sanstha's , Priyadarshini Institute of\nEngineering and Technology, Nagpur", "Exam": "Chemical Engineering", "null": ["JEE"]}
{"Sr.No": "212", "Rank": "9958", "CUTOFF": "82.6456988", "Institute Name": "6289 - B.R.A.C.T's Vishwakarma Institute of Information Technology, Kondhwa (Bk.),\nPune", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "213", "Rank": "9988", "CUTOFF": "82.529609", "Institute Name": "3190 - Terna Engineering College, Nerul, Navi Mumbai", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "214", "Rank": "10031", "CUTOFF": "82.5135857", "Institute Name": "6278 - All India Shri Shivaji Memorial Society's College of Engineering, Pune", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "215", "Rank": "10132", "CUTOFF": "82.3780358", "Institute Name": "6808 - Keystone School of Engineering, Pune", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "216", "Rank": "10184", "CUTOFF": "82.3595638", "Institute Name": "6182 - Sinhgad Technical Education Society, Sinhgad Institute of Technology and\nScience, Narhe (Ambegaon)", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "217", "Rank": "10191", "CUTOFF": "82.3595638", "Institute Name": "5449 - Shri Vile Parle Kelavani Mandal's Institute of Technology, Dhule", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "218", "Rank": "10283", "CUTOFF": "82.3289846", "Institute Name": "3194 - Vidyavardhini's College of Engineering and Technology, Vasai", "Exam": "Artificial Intelligence and Data Science", "null": ["JEE"]}
{"Sr.No": "219", "Rank": "10295", "CUTOFF": "82.3289846", "Institute Name": "5164 - P.S.G.V.P. Mandal's D.N. Patel College of Engineering, Shahada, Dist. Nandurbar", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "220", "Rank": "10363", "CUTOFF": "82.1817193", "Institute Name": "3196 - Lokmanya Tilak College of Engineering, Kopar Khairane, Navi Mumbai", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "221", "Rank": "10387", "CUTOFF": "82.1440139", "Institute Name": "3211 - S.I.E.S. Graduate School of Technology, Nerul, Navi Mumbai", "Exam": "Electronics and Computer Science", "null": ["JEE"]}
{"Sr.No": "222", "Rank": "10488", "CUTOFF": "81.9028973", "Institute Name": "6272 - Dr. D. Y. Patil Pratishthan's D.Y.Patil College of Engineering Akurdi, Pune", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "223", "Rank": "10497", "CUTOFF": "81.9028973", "Institute Name": "6285 - Bharati Vidyapeeth's College of Engineering for Women, Katraj, Dhankawadi,\nPune", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "224", "Rank": "10605", "CUTOFF": "81.7623135", "Institute Name": "6122 - TSSMS's Pd. Vasantdada Patil Institute of Technology, Bavdhan, Pune", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "225", "Rank": "10633", "CUTOFF": "81.7547358", "Institute Name": "5152 - G. H. Raisoni Institute of Business Management,Jalgaon", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "226", "Rank": "10692", "CUTOFF": "81.707368", "Institute Name": "5162 - Amrutvahini Sheti & Shikshan Vikas Sanstha's Amrutvahini College of\nEngineering, Sangamner", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "227", "Rank": "10765", "CUTOFF": "81.673628", "Institute Name": "6755 - JSPM Narhe Technical Campus, Pune.", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "228", "Rank": "10766", "CUTOFF": "81.673628", "Institute Name": "3189 - Bharati Vidyapeeth College of Engineering, Navi Mumbai", "Exam": "Chemical Engineering", "null": ["JEE"]}
{"Sr.No": "229", "Rank": "10790", "CUTOFF": "81.6656313", "Institute Name": "4137 - Sir Shantilal Badjate Charitable Trust's S. B. Jain Institute of technology,\nManagement & Research, Nagpur", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "230", "Rank": "10980", "CUTOFF": "81.3864804", "Institute Name": "3460 - Universal College of Engineering,Kaman Dist. Palghar", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "231", "Rank": "11023", "CUTOFF": "81.2676448", "Institute Name": "3190 - Terna Engineering College, Nerul, Navi Mumbai", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "232", "Rank": "11070", "CUTOFF": "81.1457316", "Institute Name": "3212 - WATUMULL INSTITUTE OF ELECTRONICS ENGINEERING & COMPUTER\nTECHNOLOGY, ULHASNAGAR", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "233", "Rank": "11190", "CUTOFF": "81.0825854", "Institute Name": "6222 - Dattajirao Kadam Technical Education Society's Textile & Engineering Institute,\nIchalkaranji.", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "234", "Rank": "11205", "CUTOFF": "81.0825854", "Institute Name": "3211 - S.I.E.S. Graduate School of Technology, Nerul, Navi Mumbai", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "235", "Rank": "11343", "CUTOFF": "80.9835222", "Institute Name": "3188 - Vasantdada Patil Pratishthan's College Of Engineering and Visual Arts, Sion,\nMumbai", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "236", "Rank": "11421", "CUTOFF": "80.8987154", "Institute Name": "3139 - Vidyalankar Institute of Technology,Wadala, Mumbai", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "237", "Rank": "11464", "CUTOFF": "80.7278425", "Institute Name": "5121 - K. K. Wagh Institute of Engineering Education and Research, Nashik", "Exam": "Artificial Intelligence and Data Science", "null": ["JEE"]}
{"Sr.No": "238", "Rank": "11557", "CUTOFF": "80.5366625", "Institute Name": "6274 - Pune Vidyarthi Griha's College of Engineering and Technology and G K\nPate(Wani) Institute of Management, Pune", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "239", "Rank": "11637", "CUTOFF": "80.470773", "Institute Name": "6146 - MIT Academy of Engineering,Alandi, Pune", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "240", "Rank": "11680", "CUTOFF": "80.470773", "Institute Name": "4175 - JMSS Shri Shankarprasad Agnihotri College of Engineering, Wardha", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "241", "Rank": "11778", "CUTOFF": "80.4362532", "Institute Name": "4136 - Lokmanya Tilak Jankalyan Shikshan Sastha, Priyadarshini J. L. College Of\nEngineering, Nagpur", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "242", "Rank": "11875", "CUTOFF": "80.3809342", "Institute Name": "2114 - Deogiri Institute of Engineering and Management Studies, Aurangabad", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "243", "Rank": "11973", "CUTOFF": "80.2982813", "Institute Name": "6273 - Bansilal Ramnath Agarawal Charitable Trust's Vishwakarma Institute of\nTechnology, Bibwewadi, Pune", "Exam": "Chemical Engineering", "null": ["JEE"]}
{"Sr.No": "244", "Rank": "12009", "CUTOFF": "80.2950778", "Institute Name": "3475 - A. P. Shah Institute of Technology, Thane", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "245", "Rank": "12011", "CUTOFF": "80.2950778", "Institute Name": "1105 - Prof. Ram Meghe Institute of Technology & Research, Amravati", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "246", "Rank": "12020", "CUTOFF": "80.2950778", "Institute Name": "5162 - Amrutvahini Sheti & Shikshan Vikas Sanstha's Amrutvahini College of\nEngineering, Sangamner", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "247", "Rank": "12077", "CUTOFF": "80.0547856", "Institute Name": "6141 - Jaywant Shikshan Prasarak Mandal's,Rajarshi Shahu College of Engineering,\nTathawade, Pune", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "248", "Rank": "12254", "CUTOFF": "79.8129357", "Institute Name": "6284 - Vidya Pratishthan's Kamalnayan Bajaj Institute of Engineering & Technology,\nBaramati Dist.Pune", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "249", "Rank": "12428", "CUTOFF": "79.5845466", "Institute Name": "6732 - Dr. D. Y. Patil School OF Engineering, Lohegaon, Pune", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "250", "Rank": "12431", "CUTOFF": "79.5845466", "Institute Name": "6298 - Zeal Education Society's Zeal College of Engineering & Reserch, Narhe, Pune", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "251", "Rank": "12432", "CUTOFF": "79.5845466", "Institute Name": "3183 - Anjuman-I-Islam's M.H. Saboo Siddik College of Engineering, Byculla, Mumbai", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "252", "Rank": "12449", "CUTOFF": "79.5845466", "Institute Name": "5160 - Sanjivani Rural Education Society's Sanjivani College of Engineering, Kopargaon", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "253", "Rank": "12464", "CUTOFF": "79.5845466", "Institute Name": "3204 - St. Francis Institute of Technology,Borivali, Mumbai", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "254", "Rank": "12497", "CUTOFF": "79.5845466", "Institute Name": "6182 - Sinhgad Technical Education Society, Sinhgad Institute of Technology and\nScience, Narhe (Ambegaon)", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "255", "Rank": "12516", "CUTOFF": "79.5845466", "Institute Name": "5330 - PUNE VIDYARTHI GRIHA\u00e2\u20ac\u2122S COLLEGE OF ENGINEERING & SHRIKRUSHNA S.\nDHAMANKAR INSTITUTE OF MANAGEMENT, NASHIK", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "256", "Rank": "12579", "CUTOFF": "79.4107872", "Institute Name": "3148 - Mahavir Education Trust's Shah & Anchor Kutchhi Engineering College, Mumbai", "Exam": "Artificial Intelligence and Data Science", "null": ["JEE"]}
{"Sr.No": "257", "Rank": "12643", "CUTOFF": "79.3433535", "Institute Name": "4171 - Lokmanya Tilak Jankalyan Shikshan Sanstha's , Priyadarshini Institute of\nEngineering and Technology, Nagpur", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "258", "Rank": "12653", "CUTOFF": "79.2999634", "Institute Name": "6310 - Nutan Maharashtra Vidya Prasarak Mandal, Nutan Maharashtra Institute of\nEngineering &Technology, Talegaon station, Pune", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "259", "Rank": "12661", "CUTOFF": "79.2999634", "Institute Name": "6276 - MKSSS's Cummins College of Engineering for Women, Karvenagar,Pune", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "260", "Rank": "12701", "CUTOFF": "79.2999634", "Institute Name": "6267 - Kolhapur Institute of Technology's College of Engineering(Autonomous),\nKolhapur", "Exam": "Bio Technology", "null": ["JEE"]}
{"Sr.No": "261", "Rank": "12789", "CUTOFF": "79.2965978", "Institute Name": "3196 - Lokmanya Tilak College of Engineering, Kopar Khairane, Navi Mumbai", "Exam": "Computer Science and\nEngineering(Data Science)", "null": ["JEE"]}
{"Sr.No": "262", "Rank": "12904", "CUTOFF": "79.1882377", "Institute Name": "3187 - N.Y.S.S.'s Datta Meghe College of Engineering, Airoli, Navi Mumbai", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "263", "Rank": "12941", "CUTOFF": "79.1532", "Institute Name": "6139 - Progressive Education Society's Modern College of Engineering, Pune", "Exam": "Artificial Intelligence and Data Science", "null": ["JEE"]}
{"Sr.No": "264", "Rank": "13021", "CUTOFF": "79.0106045", "Institute Name": "3175 - M.G.M.'s College of Engineering and Technology, Kamothe, Navi Mumbai", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "265", "Rank": "13077", "CUTOFF": "78.8491743", "Institute Name": "6649 - TSSM's Bhivarabai Sawant College of Engineering and Research, Narhe, Pune", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "266", "Rank": "13081", "CUTOFF": "78.8491743", "Institute Name": "5172 - R. C. Patel Institute of Technology, Shirpur", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "267", "Rank": "13141", "CUTOFF": "78.7086899", "Institute Name": "4138 - Jaidev Education Society, J D College of Engineering and Management, Nagpur", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "268", "Rank": "13236", "CUTOFF": "78.5509024", "Institute Name": "6282 - All India Shri Shivaji Memorial Society's Institute of Information\nTechnology,Pune", "Exam": "Artificial Intelligence and Data Science", "null": ["JEE"]}
{"Sr.No": "269", "Rank": "13243", "CUTOFF": "78.5509024", "Institute Name": "4167 - Yeshwantrao Chavan College of Engineering,Wanadongri, Nagpur", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "270", "Rank": "13264", "CUTOFF": "78.5486677", "Institute Name": "6182 - Sinhgad Technical Education Society, Sinhgad Institute of Technology and\nScience, Narhe (Ambegaon)", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "271", "Rank": "13300", "CUTOFF": "78.5069617", "Institute Name": "3146 - Jawahar Education Society's Annasaheb Chudaman Patil College of\nEngineering,Kharghar, Navi Mumbai", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "272", "Rank": "13310", "CUTOFF": "78.5069617", "Institute Name": "6289 - B.R.A.C.T's Vishwakarma Institute of Information Technology, Kondhwa (Bk.),\nPune", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "273", "Rank": "13314", "CUTOFF": "78.5069617", "Institute Name": "6273 - Bansilal Ramnath Agarawal Charitable Trust's Vishwakarma Institute of\nTechnology, Bibwewadi, Pune", "Exam": "Instrumentation and Control\nEngineering", "null": ["JEE"]}
{"Sr.No": "274", "Rank": "13424", "CUTOFF": "78.4246409", "Institute Name": "6214 - K. E. Society's Rajarambapu Institute of Technology, Walwa, Sangli", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "275", "Rank": "13432", "CUTOFF": "78.4246409", "Institute Name": "3439 - Anjuman-I-Islam's Kalsekar Technical Campus, Panvel", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "276", "Rank": "13436", "CUTOFF": "78.4246409", "Institute Name": "3154 - Saraswati Education Society's Saraswati College of Engineering,Kharghar Navi\nMumbai", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "277", "Rank": "13437", "CUTOFF": "78.4246409", "Institute Name": "6146 - MIT Academy of Engineering,Alandi, Pune", "Exam": "Chemical Engineering", "null": ["JEE"]}
{"Sr.No": "278", "Rank": "13461", "CUTOFF": "78.3780324", "Institute Name": "4142 - Ankush Shikshan Sanstha's G. H. Raisoni Institute of Engineering & Technology,\nNagpur", "Exam": "Artificial Intelligence", "null": ["JEE"]}
{"Sr.No": "279", "Rank": "13482", "CUTOFF": "78.3746832", "Institute Name": "3148 - Mahavir Education Trust's Shah & Anchor Kutchhi Engineering College, Mumbai", "Exam": "Cyber Security", "null": ["JEE"]}
{"Sr.No": "280", "Rank": "13492", "CUTOFF": "78.3746832", "Institute Name": "6179 - Indira College of Engineering & Management, Pune", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "281", "Rank": "13725", "CUTOFF": "77.9127753", "Institute Name": "6214 - K. E. Society's Rajarambapu Institute of Technology, Walwa, Sangli", "Exam": "Electrical Engineering", "null": ["JEE"]}
{"Sr.No": "282", "Rank": "13727", "CUTOFF": "77.9127753", "Institute Name": "6772 - NBN Sinhgad Technical Institutes Campus, Pune", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "283", "Rank": "13752", "CUTOFF": "77.9127753", "Institute Name": "5139 - Pravara Rural College of Engineering, Loni, Pravaranagar, Ahmednagar.", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "284", "Rank": "13887", "CUTOFF": "77.8981424", "Institute Name": "6214 - K. E. Society's Rajarambapu Institute of Technology, Walwa, Sangli", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "285", "Rank": "13891", "CUTOFF": "77.8981424", "Institute Name": "6802 - Dr. D.Y.Patil Institute of Engineering, Management & Reseach, Akurdi, Pune", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "286", "Rank": "13902", "CUTOFF": "77.7779556", "Institute Name": "4136 - Lokmanya Tilak Jankalyan Shikshan Sastha, Priyadarshini J. L. College Of\nEngineering, Nagpur", "Exam": "Artificial Intelligence", "null": ["JEE"]}
{"Sr.No": "287", "Rank": "13940", "CUTOFF": "77.715872", "Institute Name": "6206 - Pune District Education Association's College of Engineering, Pune", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "288", "Rank": "13951", "CUTOFF": "77.715872", "Institute Name": "6282 - All India Shri Shivaji Memorial Society's Institute of Information\nTechnology,Pune", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "289", "Rank": "14005", "CUTOFF": "77.656323", "Institute Name": "3192 - Smt. Indira Gandhi College of Engineering, Navi Mumbai", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "290", "Rank": "14096", "CUTOFF": "77.5295019", "Institute Name": "4116 - Ankush Shikshan Sanstha's G.H.Raisoni College of Engineering, Nagpur", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "291", "Rank": "14207", "CUTOFF": "77.4639332", "Institute Name": "3188 - Vasantdada Patil Pratishthan's College Of Engineering and Visual Arts, Sion,\nMumbai", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "292", "Rank": "14239", "CUTOFF": "77.4639332", "Institute Name": "6187 - Sinhgad Academy of Engineering, Kondhwa (BK) Kondhwa-Saswad Road, Pune", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "293", "Rank": "14323", "CUTOFF": "77.3008521", "Institute Name": "5164 - P.S.G.V.P. Mandal's D.N. Patel College of Engineering, Shahada, Dist. Nandurbar", "Exam": "Electrical Engineering", "null": ["JEE"]}
{"Sr.No": "294", "Rank": "14344", "CUTOFF": "77.3008521", "Institute Name": "4171 - Lokmanya Tilak Jankalyan Shikshan Sanstha's , Priyadarshini Institute of\nEngineering and Technology, Nagpur", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "295", "Rank": "14433", "CUTOFF": "77.1536909", "Institute Name": "3223 - Mahatma Education Society's Pillai HOC College of Engineering & Technology,\nTal. Khalapur. Dist. Raigad", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "296", "Rank": "14444", "CUTOFF": "77.1536909", "Institute Name": "6185 - Sinhagad Institute of Technology, Lonavala", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "297", "Rank": "14623", "CUTOFF": "76.7585007", "Institute Name": "6298 - Zeal Education Society's Zeal College of Engineering & Reserch, Narhe, Pune", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "298", "Rank": "14766", "CUTOFF": "76.7218886", "Institute Name": "5121 - K. K. Wagh Institute of Engineering Education and Research, Nashik", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "299", "Rank": "14790", "CUTOFF": "76.7169081", "Institute Name": "6756 - Fabtech Technical Campus College of Engineering and Research, Sangola", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "300", "Rank": "14832", "CUTOFF": "76.7169081", "Institute Name": "4177 - Priyadarshini Bhagwati College of Engineering, Harpur Nagar, Umred\nRoad,Nagpur", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "301", "Rank": "14903", "CUTOFF": "76.6575418", "Institute Name": "6622 - ISBM College Of Engineering Pune", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "302", "Rank": "15079", "CUTOFF": "76.4228752", "Institute Name": "3218 - Aldel Education Trust's St. John College of Engineering & Management, Vevoor,\nPalghar", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "303", "Rank": "15117", "CUTOFF": "76.3249696", "Institute Name": "6187 - Sinhgad Academy of Engineering, Kondhwa (BK) Kondhwa-Saswad Road, Pune", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "304", "Rank": "15180", "CUTOFF": "76.2857399", "Institute Name": "6265 - Walchand Institute of Technology, Solapur", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "305", "Rank": "15244", "CUTOFF": "76.1275799", "Institute Name": "6146 - MIT Academy of Engineering,Alandi, Pune", "Exam": "Electronics Engineering", "null": ["JEE"]}
{"Sr.No": "306", "Rank": "15274", "CUTOFF": "76.0101923", "Institute Name": "6203 - Marathwada Mitra Mandal's Institute of Technology, Lohgaon, Pune", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "307", "Rank": "15277", "CUTOFF": "76.0101923", "Institute Name": "3207 - Mahatma Education Society's Pillai College of Engineering, New Panvel", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "308", "Rank": "15321", "CUTOFF": "76.0053841", "Institute Name": "6139 - Progressive Education Society's Modern College of Engineering, Pune", "Exam": "Artificial Intelligence and Machine\nLearning", "null": ["JEE"]}
{"Sr.No": "309", "Rank": "15350", "CUTOFF": "76.0053841", "Institute Name": "6274 - Pune Vidyarthi Griha's College of Engineering and Technology and G K\nPate(Wani) Institute of Management, Pune", "Exam": "Electrical Engineering", "null": ["JEE"]}
{"Sr.No": "310", "Rank": "15386", "CUTOFF": "75.9503111", "Institute Name": "6155 - G.H.Raisoni College of Engineering & Management, Wagholi, Pune", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "311", "Rank": "15398", "CUTOFF": "75.9503111", "Institute Name": "3185 - Vivekanand Education Society's Institute of Technology, Chembur, Mumbai", "Exam": "Instrumentation Engineering", "null": ["JEE"]}
{"Sr.No": "312", "Rank": "15416", "CUTOFF": "75.9503111", "Institute Name": "6786 - Dr. D. Y. Patil School of Engineering & Technology, Charholi(Bk), Via Lohgaon,\nPune", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "313", "Rank": "15449", "CUTOFF": "75.9094961", "Institute Name": "3194 - Vidyavardhini's College of Engineering and Technology, Vasai", "Exam": "Computer Science and\nEngineering(Data Science)", "null": ["JEE"]}
{"Sr.No": "314", "Rank": "15471", "CUTOFF": "75.8366345", "Institute Name": "5108 - Maratha Vidya Prasarak Samaj's Karmaveer Adv. Baburao Ganpatrao Thakare\nCollege Of Engineering, Nashik", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "315", "Rank": "15496", "CUTOFF": "75.8074167", "Institute Name": "1105 - Prof. Ram Meghe Institute of Technology & Research, Amravati", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "316", "Rank": "15544", "CUTOFF": "75.8074167", "Institute Name": "3211 - S.I.E.S. Graduate School of Technology, Nerul, Navi Mumbai", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "317", "Rank": "15709", "CUTOFF": "75.6240321", "Institute Name": "5139 - Pravara Rural College of Engineering, Loni, Pravaranagar, Ahmednagar.", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "318", "Rank": "15715", "CUTOFF": "75.6240321", "Institute Name": "6622 - ISBM College Of Engineering Pune", "Exam": "Artificial Intelligence and Data Science", "null": ["JEE"]}
{"Sr.No": "319", "Rank": "15739", "CUTOFF": "75.5437861", "Institute Name": "6187 - Sinhgad Academy of Engineering, Kondhwa (BK) Kondhwa-Saswad Road, Pune", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "320", "Rank": "15790", "CUTOFF": "75.5208082", "Institute Name": "5172 - R. C. Patel Institute of Technology, Shirpur", "Exam": "Computer Science and\nEngineering(Data Science)", "null": ["JEE"]}
{"Sr.No": "321", "Rank": "15796", "CUTOFF": "75.5208082", "Institute Name": "3196 - Lokmanya Tilak College of Engineering, Kopar Khairane, Navi Mumbai", "Exam": "Computer Science and Engineering\n(Internet of Things and Cyber Security\nIncluding Block Chain Technology)", "null": ["JEE"]}
{"Sr.No": "322", "Rank": "15896", "CUTOFF": "75.3232443", "Institute Name": "3196 - Lokmanya Tilak College of Engineering, Kopar Khairane, Navi Mumbai", "Exam": "Computer Science and\nEngineering(Artificial Intelligence and\nMachine Learning)", "null": ["JEE"]}
{"Sr.No": "323", "Rank": "15943", "CUTOFF": "75.1866411", "Institute Name": "1120 - Jawaharlal Darda Institute of Engineering and Technology, Yavatmal", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "324", "Rank": "16026", "CUTOFF": "75.1591082", "Institute Name": "4649 - Bajaj Institute of Technology, Wardha", "Exam": "Electrical Engineering", "null": ["JEE"]}
{"Sr.No": "325", "Rank": "16041", "CUTOFF": "75.1591082", "Institute Name": "3201 - Rizvi Education Society's Rizvi College of Engineering, Bandra,Mumbai", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "326", "Rank": "16055", "CUTOFF": "75.1591082", "Institute Name": "5303 - Hon. Shri. Babanrao Pachpute Vichardhara Trust, Group of Institutions\n(Integrated Campus)-Parikrama, Kashti Shrigondha,", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "327", "Rank": "16064", "CUTOFF": "75.1591082", "Institute Name": "6325 - Alard Charitable Trust's Alard College of Engineering and Management, Pune", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "328", "Rank": "16085", "CUTOFF": "75.1591082", "Institute Name": "5121 - K. K. Wagh Institute of Engineering Education and Research, Nashik", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "329", "Rank": "16089", "CUTOFF": "75.1591082", "Institute Name": "6794 - Anantrao Pawar College of Engineering & Research, Pune", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "330", "Rank": "16090", "CUTOFF": "75.1591082", "Institute Name": "6307 - Dhole Patil Education Society, Dhole Patil College of Engineering, Wagholi, Tal.\nHaveli", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "331", "Rank": "16163", "CUTOFF": "75.1355121", "Institute Name": "6311 - Jayawant Shikshan Prasarak Mandal, Bhivarabai Sawant Institute of Technology\n& Research, Wagholi", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "332", "Rank": "16194", "CUTOFF": "75.1355121", "Institute Name": "6250 - D.Y. Patil College of Engineering and Technology, Kolhapur", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "333", "Rank": "16201", "CUTOFF": "75.1355121", "Institute Name": "3210 - Excelsior Education Society's K.C. College of Engineering and Management\nStudies and Research, Kopri, Thane (E)", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "334", "Rank": "16277", "CUTOFF": "75.0900995", "Institute Name": "3204 - St. Francis Institute of Technology,Borivali, Mumbai", "Exam": "Electrical Engineering", "null": ["JEE"]}
{"Sr.No": "335", "Rank": "16325", "CUTOFF": "75.0900995", "Institute Name": "3219 - Koti Vidya Charitable Trust's Smt. Alamuri Ratnamala Institute of Engineering\nand Technology, Sapgaon, Tal. Shahapur", "Exam": "Electrical Engineering", "null": ["JEE"]}
{"Sr.No": "336", "Rank": "16363", "CUTOFF": "74.9989387", "Institute Name": "5121 - K. K. Wagh Institute of Engineering Education and Research, Nashik", "Exam": "Electrical Engineering", "null": ["JEE"]}
{"Sr.No": "337", "Rank": "16385", "CUTOFF": "74.9989387", "Institute Name": "3218 - Aldel Education Trust's St. John College of Engineering & Management, Vevoor,\nPalghar", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "338", "Rank": "16431", "CUTOFF": "74.9711649", "Institute Name": "6272 - Dr. D. Y. Patil Pratishthan's D.Y.Patil College of Engineering Akurdi, Pune", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "339", "Rank": "16444", "CUTOFF": "74.9711649", "Institute Name": "6273 - Bansilal Ramnath Agarawal Charitable Trust's Vishwakarma Institute of\nTechnology, Bibwewadi, Pune", "Exam": "Production Engineering", "null": ["JEE"]}
{"Sr.No": "340", "Rank": "16492", "CUTOFF": "74.8831752", "Institute Name": "6185 - Sinhagad Institute of Technology, Lonavala", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "341", "Rank": "16515", "CUTOFF": "74.8024546", "Institute Name": "4123 - Lokmanya Tilak Jankalyan Shikshan Sanstha, Priyadarshani College of\nEngineering, Nagpur", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "342", "Rank": "16548", "CUTOFF": "74.8024546", "Institute Name": "4123 - Lokmanya Tilak Jankalyan Shikshan Sanstha, Priyadarshani College of\nEngineering, Nagpur", "Exam": "Aeronautical Engineering", "null": ["JEE"]}
{"Sr.No": "343", "Rank": "16563", "CUTOFF": "74.8024546", "Institute Name": "6206 - Pune District Education Association's College of Engineering, Pune", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "344", "Rank": "16568", "CUTOFF": "74.8024546", "Institute Name": "6834 - Dr.D.Y.Patil College Of Engineering & Innovation,Talegaon", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "345", "Rank": "16606", "CUTOFF": "74.8024546", "Institute Name": "6177 - Sinhgad College of Engineering, Vadgaon (BK), Pune", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "346", "Rank": "16629", "CUTOFF": "74.8024546", "Institute Name": "3475 - A. P. Shah Institute of Technology, Thane", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "347", "Rank": "16643", "CUTOFF": "74.7839723", "Institute Name": "4138 - Jaidev Education Society, J D College of Engineering and Management, Nagpur", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "348", "Rank": "16653", "CUTOFF": "74.7839723", "Institute Name": "6772 - NBN Sinhgad Technical Institutes Campus, Pune", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "349", "Rank": "16676", "CUTOFF": "74.774483", "Institute Name": "6282 - All India Shri Shivaji Memorial Society's Institute of Information\nTechnology,Pune", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "350", "Rank": "16748", "CUTOFF": "74.7728567", "Institute Name": "6622 - ISBM College Of Engineering Pune", "Exam": "Artificial Intelligence and Machine\nLearning", "null": ["JEE"]}
{"Sr.No": "351", "Rank": "16775", "CUTOFF": "74.4172228", "Institute Name": "3208 - Don Bosco Institute of Technology, Mumbai", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "352", "Rank": "16798", "CUTOFF": "74.4172228", "Institute Name": "6310 - Nutan Maharashtra Vidya Prasarak Mandal, Nutan Maharashtra Institute of\nEngineering &Technology, Talegaon station, Pune", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "353", "Rank": "16851", "CUTOFF": "74.1593729", "Institute Name": "3223 - Mahatma Education Society's Pillai HOC College of Engineering & Technology,\nTal. Khalapur. Dist. Raigad", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "354", "Rank": "16866", "CUTOFF": "74.1593729", "Institute Name": "6822 - Pimpri Chinchwad Education Trust's Pimpri Chinchwad College Of Engineering\nAnd Research, Ravet", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "355", "Rank": "16954", "CUTOFF": "74.0207333", "Institute Name": "6283 - Annasaheb Dange College of Engineering and Technology, Ashta, Sangli", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "356", "Rank": "17045", "CUTOFF": "74.0129969", "Institute Name": "6146 - MIT Academy of Engineering,Alandi, Pune", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "357", "Rank": "17086", "CUTOFF": "74.0129969", "Institute Name": "5151 - MET Bhujbal Knowledge City MET League's Engineering College, Adgaon,\nNashik.", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "358", "Rank": "17115", "CUTOFF": "73.9255885", "Institute Name": "3460 - Universal College of Engineering,Kaman Dist. Palghar", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "359", "Rank": "17174", "CUTOFF": "73.9255885", "Institute Name": "6220 - Shri Vithal Education and Research Institute's College of Engineering,\nPandharpur", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "360", "Rank": "17282", "CUTOFF": "73.866708", "Institute Name": "3201 - Rizvi Education Society's Rizvi College of Engineering, Bandra,Mumbai", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "361", "Rank": "17442", "CUTOFF": "73.5421187", "Institute Name": "3154 - Saraswati Education Society's Saraswati College of Engineering,Kharghar Navi\nMumbai", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "362", "Rank": "17482", "CUTOFF": "73.42602", "Institute Name": "3216 - Gharda Foundation's Gharda Institute of Technology,Khed, Ratnagiri", "Exam": "Chemical Engineering", "null": ["JEE"]}
{"Sr.No": "363", "Rank": "17496", "CUTOFF": "73.42602", "Institute Name": "6155 - G.H.Raisoni College of Engineering & Management, Wagholi, Pune", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "364", "Rank": "17498", "CUTOFF": "73.42602", "Institute Name": "3210 - Excelsior Education Society's K.C. College of Engineering and Management\nStudies and Research, Kopri, Thane (E)", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "365", "Rank": "17512", "CUTOFF": "73.42602", "Institute Name": "6177 - Sinhgad College of Engineering, Vadgaon (BK), Pune", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "366", "Rank": "17548", "CUTOFF": "73.42602", "Institute Name": "1101 - Shri Sant Gajanan Maharaj College of Engineering,Shegaon", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "367", "Rank": "17571", "CUTOFF": "73.3949946", "Institute Name": "3175 - M.G.M.'s College of Engineering and Technology, Kamothe, Navi Mumbai", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "368", "Rank": "17575", "CUTOFF": "73.3949946", "Institute Name": "6207 - Dr. D. Y. Patil Vidya Pratishthan Society\u00e2\u20ac\u2122s Dr. D. Y. Patil Institute of Technology,\nPimpri, Pune", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "369", "Rank": "17773", "CUTOFF": "73.1273916", "Institute Name": "4142 - Ankush Shikshan Sanstha's G. H. Raisoni Institute of Engineering & Technology,\nNagpur", "Exam": "Data Science", "null": ["JEE"]}
{"Sr.No": "370", "Rank": "17774", "CUTOFF": "73.1273916", "Institute Name": "4613 - Suryodaya College of Engineering & Technology, Nagpur", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "371", "Rank": "17930", "CUTOFF": "72.8887969", "Institute Name": "6796 - Bharati Vidyapeeth's College of Engineering,Lavale, Pune", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "372", "Rank": "17948", "CUTOFF": "72.8887969", "Institute Name": "4177 - Priyadarshini Bhagwati College of Engineering, Harpur Nagar, Umred\nRoad,Nagpur", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "373", "Rank": "17993", "CUTOFF": "72.8887969", "Institute Name": "6138 - Genba Sopanrao Moze Trust Parvatibai Genba Moze College of\nEngineering,Wagholi, Pune", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "374", "Rank": "17998", "CUTOFF": "72.8849174", "Institute Name": "6769 - Rasiklal M. Dhariwal Sinhgad Technical Institutes Campus, Warje, Pune.", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "375", "Rank": "18149", "CUTOFF": "72.7848445", "Institute Name": "5151 - MET Bhujbal Knowledge City MET League's Engineering College, Adgaon,\nNashik.", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "376", "Rank": "18173", "CUTOFF": "72.7848445", "Institute Name": "6419 - Nutan College of Engineering and Research, Talegaon Dabhade Tal. Maval, Pune", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "377", "Rank": "18233", "CUTOFF": "72.6632578", "Institute Name": "5449 - Shri Vile Parle Kelavani Mandal's Institute of Technology, Dhule", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "378", "Rank": "18326", "CUTOFF": "72.3311071", "Institute Name": "5181 - Gokhale Education Society's, R.H. Sapat College of Engineering, Management\nStudies and Research, Nashik", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "379", "Rank": "18387", "CUTOFF": "72.2639672", "Institute Name": "6276 - MKSSS's Cummins College of Engineering for Women, Karvenagar,Pune", "Exam": "Instrumentation and Control\nEngineering", "null": ["JEE"]}
{"Sr.No": "380", "Rank": "18421", "CUTOFF": "72.2639672", "Institute Name": "2113 - G. S. Mandal's Maharashtra Institute of Technology, Aurangabad", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "381", "Rank": "18466", "CUTOFF": "72.1964411", "Institute Name": "6222 - Dattajirao Kadam Technical Education Society's Textile & Engineering Institute,\nIchalkaranji.", "Exam": "Computer Science and Engineering\n(Artificial Intelligence)", "null": ["JEE"]}
{"Sr.No": "382", "Rank": "18561", "CUTOFF": "72.0753904", "Institute Name": "3146 - Jawahar Education Society's Annasaheb Chudaman Patil College of\nEngineering,Kharghar, Navi Mumbai", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "383", "Rank": "18610", "CUTOFF": "72.0753904", "Institute Name": "6283 - Annasaheb Dange College of Engineering and Technology, Ashta, Sangli", "Exam": "Aeronautical Engineering", "null": ["JEE"]}
{"Sr.No": "384", "Rank": "18663", "CUTOFF": "71.9640107", "Institute Name": "6298 - Zeal Education Society's Zeal College of Engineering & Reserch, Narhe, Pune", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "385", "Rank": "18699", "CUTOFF": "71.9640107", "Institute Name": "6311 - Jayawant Shikshan Prasarak Mandal, Bhivarabai Sawant Institute of Technology\n& Research, Wagholi", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "386", "Rank": "18771", "CUTOFF": "71.9628422", "Institute Name": "6268 - Tatyasaheb Kore Institute of Engineering and Technology, Warananagar", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "387", "Rank": "18816", "CUTOFF": "71.9410506", "Institute Name": "4649 - Bajaj Institute of Technology, Wardha", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "388", "Rank": "18818", "CUTOFF": "71.9410506", "Institute Name": "6214 - K. E. Society's Rajarambapu Institute of Technology, Walwa, Sangli", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "389", "Rank": "18866", "CUTOFF": "71.9410506", "Institute Name": "6419 - Nutan College of Engineering and Research, Talegaon Dabhade Tal. Maval, Pune", "Exam": "Computer Science and Engineering\n(Artificial Intelligence)", "null": ["JEE"]}
{"Sr.No": "390", "Rank": "18904", "CUTOFF": "71.8911882", "Institute Name": "6307 - Dhole Patil Education Society, Dhole Patil College of Engineering, Wagholi, Tal.\nHaveli", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "391", "Rank": "18913", "CUTOFF": "71.8911882", "Institute Name": "6144 - Genba Sopanrao Moze College of Engineering, Baner-Balewadi, Pune", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "392", "Rank": "18915", "CUTOFF": "71.7920906", "Institute Name": "3139 - Vidyalankar Institute of Technology,Wadala, Mumbai", "Exam": "Electronics Engineering", "null": ["JEE"]}
{"Sr.No": "393", "Rank": "18920", "CUTOFF": "71.7920906", "Institute Name": "4181 - Swaminarayan Siddhanta Institute Of Technology, Nagpur", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "394", "Rank": "18938", "CUTOFF": "71.7920906", "Institute Name": "4151 - Vidarbha Bahu-Uddeshiya Shikshan Sanstha's Tulshiramji Gaikwad Patil College\nof Engineering & Technology, Nagpur", "Exam": "Electronics and Communication\nEngineering", "null": ["JEE"]}
{"Sr.No": "395", "Rank": "18957", "CUTOFF": "71.5411222", "Institute Name": "6278 - All India Shri Shivaji Memorial Society's College of Engineering, Pune", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "396", "Rank": "18968", "CUTOFF": "71.5284584", "Institute Name": "6802 - Dr. D.Y.Patil Institute of Engineering, Management & Reseach, Akurdi, Pune", "Exam": "Chemical Engineering", "null": ["JEE"]}
{"Sr.No": "397", "Rank": "19006", "CUTOFF": "71.4568669", "Institute Name": "6275 - Shivnagar Vidya Prasarak Mandal's College of Engineering, Malegaon-Baramati", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "398", "Rank": "19014", "CUTOFF": "71.4109789", "Institute Name": "3201 - Rizvi Education Society's Rizvi College of Engineering, Bandra,Mumbai", "Exam": "Electronics and Computer Science", "null": ["JEE"]}
{"Sr.No": "399", "Rank": "19058", "CUTOFF": "71.4109789", "Institute Name": "5109 - Sandip Foundation, Sandip Institute of Technology and Research Centre,\nMahiravani, Nashik", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "400", "Rank": "19089", "CUTOFF": "71.3897523", "Institute Name": "6139 - Progressive Education Society's Modern College of Engineering, Pune", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "401", "Rank": "19196", "CUTOFF": "71.3023665", "Institute Name": "6288 - Bharati Vidyapeeth's College of Engineering, Kolhapur", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "402", "Rank": "19200", "CUTOFF": "71.3023665", "Institute Name": "2113 - G. S. Mandal's Maharashtra Institute of Technology, Aurangabad", "Exam": "Agricultural Engineering", "null": ["JEE"]}
{"Sr.No": "403", "Rank": "19243", "CUTOFF": "71.3023665", "Institute Name": "3148 - Mahavir Education Trust's Shah & Anchor Kutchhi Engineering College, Mumbai", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "404", "Rank": "19421", "CUTOFF": "71.0485263", "Institute Name": "5331 - Sandip Foundation's, Sandip Institute of Engineering & Management, Nashik", "Exam": "Electrical Engineering", "null": ["JEE"]}
{"Sr.No": "405", "Rank": "19566", "CUTOFF": "70.9815068", "Institute Name": "6177 - Sinhgad College of Engineering, Vadgaon (BK), Pune", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "406", "Rank": "19607", "CUTOFF": "70.9815068", "Institute Name": "5160 - Sanjivani Rural Education Society's Sanjivani College of Engineering, Kopargaon", "Exam": "Electronics and Computer Engineering", "null": ["JEE"]}
{"Sr.No": "407", "Rank": "19637", "CUTOFF": "70.9291669", "Institute Name": "2137 - Nagnathappa Halge Engineering College, Parli, Beed", "Exam": "Electrical and Electronics Engineering", "null": ["JEE"]}
{"Sr.No": "408", "Rank": "19656", "CUTOFF": "70.9226452", "Institute Name": "4179 - Lokmanya Tilak Jankalyan Shiksan Sanstha, Priyadarshini Indira Gandhi College\nof Engineering, Nagpur", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "409", "Rank": "19679", "CUTOFF": "70.9226452", "Institute Name": "3193 - Shivajirao S. Jondhale College of Engineering, Dombivali,Mumbai", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "410", "Rank": "19688", "CUTOFF": "70.854117", "Institute Name": "4123 - Lokmanya Tilak Jankalyan Shikshan Sanstha, Priyadarshani College of\nEngineering, Nagpur", "Exam": "Computer Technology", "null": ["JEE"]}
{"Sr.No": "411", "Rank": "19709", "CUTOFF": "70.7278391", "Institute Name": "4171 - Lokmanya Tilak Jankalyan Shikshan Sanstha's , Priyadarshini Institute of\nEngineering and Technology, Nagpur", "Exam": "Artificial Intelligence and Data Science", "null": ["JEE"]}
{"Sr.No": "412", "Rank": "19790", "CUTOFF": "70.5058095", "Institute Name": "6185 - Sinhagad Institute of Technology, Lonavala", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "413", "Rank": "19831", "CUTOFF": "70.5058095", "Institute Name": "6267 - Kolhapur Institute of Technology's College of Engineering(Autonomous),\nKolhapur", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "414", "Rank": "19833", "CUTOFF": "70.5058095", "Institute Name": "6275 - Shivnagar Vidya Prasarak Mandal's College of Engineering, Malegaon-Baramati", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "415", "Rank": "19859", "CUTOFF": "70.5058095", "Institute Name": "6278 - All India Shri Shivaji Memorial Society's College of Engineering, Pune", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "416", "Rank": "20059", "CUTOFF": "70.3751491", "Institute Name": "6298 - Zeal Education Society's Zeal College of Engineering & Reserch, Narhe, Pune", "Exam": "Artificial Intelligence and Data Science", "null": ["JEE"]}
{"Sr.No": "417", "Rank": "20130", "CUTOFF": "70.2821702", "Institute Name": "6176 - G. H.Raisoni Institute of Engineering and Technology, Wagholi, Pune", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "418", "Rank": "20290", "CUTOFF": "70.10078", "Institute Name": "4174 - ST. Vincent Pallotti College of Engineering & Technology, Nagpur", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "419", "Rank": "20308", "CUTOFF": "70.10078", "Institute Name": "6184 - K. J.'s Educational Institut Trinity College of Engineering and Research, Pisoli,\nHaveli", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "420", "Rank": "20540", "CUTOFF": "70.0402566", "Institute Name": "6770 - SKN Sinhgad Institute of Technology & Science, Kusgaon(BK),Pune.", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "421", "Rank": "20554", "CUTOFF": "70.0402566", "Institute Name": "5331 - Sandip Foundation's, Sandip Institute of Engineering & Management, Nashik", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "422", "Rank": "20567", "CUTOFF": "70.0394263", "Institute Name": "3135 - Manjara Charitable Trust's Rajiv Gandhi Institute of Technology, Mumbai", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "423", "Rank": "20583", "CUTOFF": "70.0394263", "Institute Name": "6207 - Dr. D. Y. Patil Vidya Pratishthan Society\u00e2\u20ac\u2122s Dr. D. Y. Patil Institute of Technology,\nPimpri, Pune", "Exam": "Electrical Engineering", "null": ["JEE"]}
{"Sr.No": "424", "Rank": "20605", "CUTOFF": "70.0394263", "Institute Name": "6780 - D.Y.Patil Education Society's,D.Y.Patil Technical Campus, Faculty of Engineering\n& Faculty of Management,Talsande,Kolhapur.", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "425", "Rank": "20625", "CUTOFF": "70.0394263", "Institute Name": "5121 - K. K. Wagh Institute of Engineering Education and Research, Nashik", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "426", "Rank": "20665", "CUTOFF": "69.8570446", "Institute Name": "5104 - Shramsadhana Bombay Trust, College of Engineering & Technology, Jalgaon", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "427", "Rank": "20717", "CUTOFF": "69.8570446", "Institute Name": "1114 - Sipna Shikshan Prasarak Mandal College of Engineering & Technology, Amravati", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "428", "Rank": "20769", "CUTOFF": "69.6269142", "Institute Name": "6155 - G.H.Raisoni College of Engineering & Management, Wagholi, Pune", "Exam": "Artificial Intelligence", "null": ["JEE"]}
{"Sr.No": "429", "Rank": "20790", "CUTOFF": "69.5721052", "Institute Name": "4167 - Yeshwantrao Chavan College of Engineering,Wanadongri, Nagpur", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "430", "Rank": "20809", "CUTOFF": "69.5721052", "Institute Name": "2114 - Deogiri Institute of Engineering and Management Studies, Aurangabad", "Exam": "Computer Science and\nEngineering(Artificial Intelligence and\nMachine Learning)", "null": ["JEE"]}
{"Sr.No": "431", "Rank": "20882", "CUTOFF": "69.5191252", "Institute Name": "3471 - New Horizon Institute of Technology & Management, Thane", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "432", "Rank": "21006", "CUTOFF": "69.2311403", "Institute Name": "5162 - Amrutvahini Sheti & Shikshan Vikas Sanstha's Amrutvahini College of\nEngineering, Sangamner", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "433", "Rank": "21054", "CUTOFF": "69.2311403", "Institute Name": "5109 - Sandip Foundation, Sandip Institute of Technology and Research Centre,\nMahiravani, Nashik", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "434", "Rank": "21102", "CUTOFF": "69.2278304", "Institute Name": "4167 - Yeshwantrao Chavan College of Engineering,Wanadongri, Nagpur", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "435", "Rank": "21191", "CUTOFF": "69.2200654", "Institute Name": "3135 - Manjara Charitable Trust's Rajiv Gandhi Institute of Technology, Mumbai", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "436", "Rank": "21218", "CUTOFF": "69.2200654", "Institute Name": "5121 - K. K. Wagh Institute of Engineering Education and Research, Nashik", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "437", "Rank": "21325", "CUTOFF": "68.7477964", "Institute Name": "6283 - Annasaheb Dange College of Engineering and Technology, Ashta, Sangli", "Exam": "Food Technology", "null": ["JEE"]}
{"Sr.No": "438", "Rank": "21425", "CUTOFF": "68.7138181", "Institute Name": "6278 - All India Shri Shivaji Memorial Society's College of Engineering, Pune", "Exam": "Electrical Engineering", "null": ["JEE"]}
{"Sr.No": "439", "Rank": "21464", "CUTOFF": "68.7138181", "Institute Name": "6250 - D.Y. Patil College of Engineering and Technology, Kolhapur", "Exam": "Computer Science and\nEngineering(Artificial Intelligence and\nMachine Learning)", "null": ["JEE"]}
{"Sr.No": "440", "Rank": "21478", "CUTOFF": "68.7138181", "Institute Name": "6794 - Anantrao Pawar College of Engineering & Research, Pune", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "441", "Rank": "21507", "CUTOFF": "68.7138181", "Institute Name": "4197 - Jai Mahakali Shikshan Sanstha, Agnihotri College of Engineering, Sindhi(Meghe)", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "442", "Rank": "21541", "CUTOFF": "68.687192", "Institute Name": "6822 - Pimpri Chinchwad Education Trust's Pimpri Chinchwad College Of Engineering\nAnd Research, Ravet", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "443", "Rank": "21545", "CUTOFF": "68.687192", "Institute Name": "6769 - Rasiklal M. Dhariwal Sinhgad Technical Institutes Campus, Warje, Pune.", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "444", "Rank": "21675", "CUTOFF": "68.596806", "Institute Name": "6634 - KJEI's Trinity Academy of Engineering, Yewalewadi, Pune", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "445", "Rank": "21880", "CUTOFF": "68.4444935", "Institute Name": "3193 - Shivajirao S. Jondhale College of Engineering, Dombivali,Mumbai", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "446", "Rank": "21885", "CUTOFF": "68.4444935", "Institute Name": "4116 - Ankush Shikshan Sanstha's G.H.Raisoni College of Engineering, Nagpur", "Exam": "Electrical Engineering", "null": ["JEE"]}
{"Sr.No": "447", "Rank": "21936", "CUTOFF": "68.3301235", "Institute Name": "6141 - Jaywant Shikshan Prasarak Mandal's,Rajarshi Shahu College of Engineering,\nTathawade, Pune", "Exam": "Electrical Engineering", "null": ["JEE"]}
{"Sr.No": "448", "Rank": "22006", "CUTOFF": "68.1937916", "Institute Name": "3183 - Anjuman-I-Islam's M.H. Saboo Siddik College of Engineering, Byculla, Mumbai", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "449", "Rank": "22123", "CUTOFF": "68.130492", "Institute Name": "6272 - Dr. D. Y. Patil Pratishthan's D.Y.Patil College of Engineering Akurdi, Pune", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "450", "Rank": "22133", "CUTOFF": "68.130492", "Institute Name": "6250 - D.Y. Patil College of Engineering and Technology, Kolhapur", "Exam": "Computer Science and\nEngineering(Data Science)", "null": ["JEE"]}
{"Sr.No": "451", "Rank": "22178", "CUTOFF": "68.0996227", "Institute Name": "3196 - Lokmanya Tilak College of Engineering, Kopar Khairane, Navi Mumbai", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "452", "Rank": "22181", "CUTOFF": "68.0996227", "Institute Name": "4138 - Jaidev Education Society, J D College of Engineering and Management, Nagpur", "Exam": "Artificial Intelligence", "null": ["JEE"]}
{"Sr.No": "453", "Rank": "22230", "CUTOFF": "68.0762541", "Institute Name": "5161 - Dr. Vithalrao Vikhe Patil College of Engineering, Ahmednagar", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "454", "Rank": "22263", "CUTOFF": "68.0762541", "Institute Name": "4142 - Ankush Shikshan Sanstha's G. H. Raisoni Institute of Engineering & Technology,\nNagpur", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "455", "Rank": "22272", "CUTOFF": "68.0762541", "Institute Name": "6270 - Rayat Shikshan Sanstha's Karmaveer Bhaurao Patil College of Engineering,\nSatara", "Exam": "Electronics Engineering", "null": ["JEE"]}
{"Sr.No": "456", "Rank": "22509", "CUTOFF": "67.287223", "Institute Name": "4167 - Yeshwantrao Chavan College of Engineering,Wanadongri, Nagpur", "Exam": "Electronics Engineering", "null": ["JEE"]}
{"Sr.No": "457", "Rank": "22526", "CUTOFF": "67.287223", "Institute Name": "3460 - Universal College of Engineering,Kaman Dist. Palghar", "Exam": "Data Engineering", "null": ["JEE"]}
{"Sr.No": "458", "Rank": "22591", "CUTOFF": "67.287223", "Institute Name": "5125 - Pravara Rural Education Society's Sir Visvesvaraya Institute of Technology,\nChincholi Dist. Nashik", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "459", "Rank": "22650", "CUTOFF": "67.169126", "Institute Name": "3194 - Vidyavardhini's College of Engineering and Technology, Vasai", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "460", "Rank": "22727", "CUTOFF": "67.1137277", "Institute Name": "6177 - Sinhgad College of Engineering, Vadgaon (BK), Pune", "Exam": "Chemical Engineering", "null": ["JEE"]}
{"Sr.No": "461", "Rank": "22947", "CUTOFF": "67.0027134", "Institute Name": "6222 - Dattajirao Kadam Technical Education Society's Textile & Engineering Institute,\nIchalkaranji.", "Exam": "Textile Engineering (Fashion\nTechnology)", "null": ["JEE"]}
{"Sr.No": "462", "Rank": "23013", "CUTOFF": "66.8716372", "Institute Name": "1101 - Shri Sant Gajanan Maharaj College of Engineering,Shegaon", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "463", "Rank": "23053", "CUTOFF": "66.7783253", "Institute Name": "6770 - SKN Sinhgad Institute of Technology & Science, Kusgaon(BK),Pune.", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "464", "Rank": "23163", "CUTOFF": "66.7783253", "Institute Name": "6278 - All India Shri Shivaji Memorial Society's College of Engineering, Pune", "Exam": "Chemical Engineering", "null": ["JEE"]}
{"Sr.No": "465", "Rank": "23179", "CUTOFF": "66.7475854", "Institute Name": "4116 - Ankush Shikshan Sanstha's G.H.Raisoni College of Engineering, Nagpur", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "466", "Rank": "23183", "CUTOFF": "66.7475854", "Institute Name": "3139 - Vidyalankar Institute of Technology,Wadala, Mumbai", "Exam": "Bio Medical Engineering", "null": ["JEE"]}
{"Sr.No": "467", "Rank": "23364", "CUTOFF": "66.2619983", "Institute Name": "6222 - Dattajirao Kadam Technical Education Society's Textile & Engineering Institute,\nIchalkaranji.", "Exam": "Textile Technology", "null": ["JEE"]}
{"Sr.No": "468", "Rank": "23600", "CUTOFF": "66.0143085", "Institute Name": "4116 - Ankush Shikshan Sanstha's G.H.Raisoni College of Engineering, Nagpur", "Exam": "Electronics Engineering", "null": ["JEE"]}
{"Sr.No": "469", "Rank": "23613", "CUTOFF": "65.9994434", "Institute Name": "6139 - Progressive Education Society's Modern College of Engineering, Pune", "Exam": "Electronics and Computer Engineering", "null": ["JEE"]}
{"Sr.No": "470", "Rank": "23675", "CUTOFF": "65.9994434", "Institute Name": "3192 - Smt. Indira Gandhi College of Engineering, Navi Mumbai", "Exam": "Computer Science and\nEngineering(Artificial Intelligence and\nMachine Learning)", "null": ["JEE"]}
{"Sr.No": "471", "Rank": "23807", "CUTOFF": "65.8548294", "Institute Name": "3221 - Late Shri. Vishnu Waman Thakur Charitable Trust, Viva Institute of Technology,\nShirgaon", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "472", "Rank": "23817", "CUTOFF": "65.8548294", "Institute Name": "4147 - K.D.K. College of Engineering, Nagpur", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "473", "Rank": "23882", "CUTOFF": "65.7479355", "Institute Name": "6808 - Keystone School of Engineering, Pune", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "474", "Rank": "23893", "CUTOFF": "65.7479355", "Institute Name": "4116 - Ankush Shikshan Sanstha's G.H.Raisoni College of Engineering, Nagpur", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "475", "Rank": "24022", "CUTOFF": "65.5495182", "Institute Name": "6269 - Shetkari Shikshan Mandal's Pad. Vasantraodada Patil Institute of Technology,\nBudhgaon, Sangli", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "476", "Rank": "24208", "CUTOFF": "65.2431354", "Institute Name": "3154 - Saraswati Education Society's Saraswati College of Engineering,Kharghar Navi\nMumbai", "Exam": "Computer Science and\nEngineering(Artificial Intelligence and\nMachine Learning)", "null": ["JEE"]}
{"Sr.No": "477", "Rank": "24270", "CUTOFF": "65.0307172", "Institute Name": "4172 - Anjuman College of Engineering & Technology, Nagpur", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "478", "Rank": "24549", "CUTOFF": "64.908509", "Institute Name": "2134 - Peoples Education Society's College of Engineering, Aurangabad", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "479", "Rank": "24550", "CUTOFF": "64.908509", "Institute Name": "3222 - Haji Jamaluddin Thim Trust's Theem College of Engineering, At. Villege\nBetegaon, Boisar", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "480", "Rank": "24573", "CUTOFF": "64.908509", "Institute Name": "1107 - P. R. Pote (Patil) Education & Welfare Trust's Group of Institution(Integrated\nCampus), Amravati", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "481", "Rank": "24625", "CUTOFF": "64.9011073", "Institute Name": "6732 - Dr. D. Y. Patil School OF Engineering, Lohegaon, Pune", "Exam": "Artificial Intelligence and Data Science", "null": ["JEE"]}
{"Sr.No": "482", "Rank": "24668", "CUTOFF": "64.8959321", "Institute Name": "4163 - Rajiv Gandhi College of Engineering Research & Technology Chandrapur", "Exam": "Mining Engineering", "null": ["JEE"]}
{"Sr.No": "483", "Rank": "24736", "CUTOFF": "64.7918988", "Institute Name": "6223 - Pradnya Niketan Education Society's Nagesh Karajagi Orchid College of\nEngineering & Technology, Solapur", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "484", "Rank": "24787", "CUTOFF": "64.7900418", "Institute Name": "6643 - S K N Sinhgad College of Engineering, Korti Tal. Pandharpur Dist Solapur", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "485", "Rank": "24794", "CUTOFF": "64.7900418", "Institute Name": "5418 - Guru Gobind Singh College of Engineering & Research Centre, Nashik.", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "486", "Rank": "24817", "CUTOFF": "64.5685027", "Institute Name": "6267 - Kolhapur Institute of Technology's College of Engineering(Autonomous),\nKolhapur", "Exam": "Electrical Engineering", "null": ["JEE"]}
{"Sr.No": "487", "Rank": "24850", "CUTOFF": "64.5685027", "Institute Name": "3467 - Vishwaniketan's Institute of Management Entrepreneurship and Engineering\nTechnology(i MEET), Khalapur Dist Raigad", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "488", "Rank": "25049", "CUTOFF": "63.9247764", "Institute Name": "3477 - Chhartrapati Shivaji Maharaj Institute of Technology, Shedung, Panvel", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "489", "Rank": "25087", "CUTOFF": "63.9247764", "Institute Name": "3203 - Atharva College of Engineering,Malad(West),Mumbai", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "490", "Rank": "25132", "CUTOFF": "63.9247764", "Institute Name": "3207 - Mahatma Education Society's Pillai College of Engineering, New Panvel", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "491", "Rank": "25140", "CUTOFF": "63.9025795", "Institute Name": "6177 - Sinhgad College of Engineering, Vadgaon (BK), Pune", "Exam": "Bio Technology", "null": ["JEE"]}
{"Sr.No": "492", "Rank": "25150", "CUTOFF": "63.9025795", "Institute Name": "6317 - Sharad Institute of Technology College of Engineering, Yadrav(Ichalkaranji)", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "493", "Rank": "25151", "CUTOFF": "63.9025795", "Institute Name": "6281 - Modern Education Society's College of Engineering, Pune", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "494", "Rank": "25294", "CUTOFF": "63.8282598", "Institute Name": "3175 - M.G.M.'s College of Engineering and Technology, Kamothe, Navi Mumbai", "Exam": "Bio Medical Engineering", "null": ["JEE"]}
{"Sr.No": "495", "Rank": "25435", "CUTOFF": "63.8282598", "Institute Name": "6640 - N. B. Navale Sinhgad College of Engineering, Kegaon, solapur", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "496", "Rank": "25437", "CUTOFF": "63.8282598", "Institute Name": "6284 - Vidya Pratishthan's Kamalnayan Bajaj Institute of Engineering & Technology,\nBaramati Dist.Pune", "Exam": "Artificial Intelligence and Data Science", "null": ["JEE"]}
{"Sr.No": "497", "Rank": "25520", "CUTOFF": "63.7897492", "Institute Name": "2127 - Mahatma Gandhi Missions College of Engineering, Hingoli Rd, Nanded.", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "498", "Rank": "25543", "CUTOFF": "63.7897492", "Institute Name": "3192 - Smt. Indira Gandhi College of Engineering, Navi Mumbai", "Exam": "Computer Science and Engineering\n(Internet of Things and Cyber Security\nIncluding Block Chain Technology)", "null": ["JEE"]}
{"Sr.No": "499", "Rank": "25551", "CUTOFF": "63.7496286", "Institute Name": "1126 - Shri. Dadasaheb Gawai Charitable Trust's Dr. Smt. Kamaltai Gawai Institute of\nEngineering & Technology, Darapur, Amravati", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "500", "Rank": "25571", "CUTOFF": "63.7496286", "Institute Name": "5169 - Nagaon Education Society's Gangamai College of Engineering, Nagaon, Tal Dist\nDhule", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "501", "Rank": "25646", "CUTOFF": "63.6696335", "Institute Name": "1101 - Shri Sant Gajanan Maharaj College of Engineering,Shegaon", "Exam": "Electrical Engg[Electronics and Power]", "null": ["JEE"]}
{"Sr.No": "502", "Rank": "25694", "CUTOFF": "63.6696335", "Institute Name": "1128 - Prof Ram Meghe College of Engineering and Management, Badnera", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "503", "Rank": "25736", "CUTOFF": "63.6696335", "Institute Name": "5173 - SNJB's Late Sau. Kantabai Bhavarlalji Jain College of Engineering, (Jain Gurukul),\nNeminagar,Chandwad,(Nashik)", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "504", "Rank": "25741", "CUTOFF": "63.6696335", "Institute Name": "6141 - Jaywant Shikshan Prasarak Mandal's,Rajarshi Shahu College of Engineering,\nTathawade, Pune", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "505", "Rank": "25751", "CUTOFF": "63.6696335", "Institute Name": "2129 - M.S. Bidve Engineering College, Latur", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "506", "Rank": "25812", "CUTOFF": "63.4977421", "Institute Name": "4123 - Lokmanya Tilak Jankalyan Shikshan Sanstha, Priyadarshani College of\nEngineering, Nagpur", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "507", "Rank": "25842", "CUTOFF": "63.4810593", "Institute Name": "4151 - Vidarbha Bahu-Uddeshiya Shikshan Sanstha's Tulshiramji Gaikwad Patil College\nof Engineering & Technology, Nagpur", "Exam": "Aeronautical Engineering", "null": ["JEE"]}
{"Sr.No": "508", "Rank": "25845", "CUTOFF": "63.4810593", "Institute Name": "6272 - Dr. D. Y. Patil Pratishthan's D.Y.Patil College of Engineering Akurdi, Pune", "Exam": "Production Engineering[Sandwich]", "null": ["JEE"]}
{"Sr.No": "509", "Rank": "25920", "CUTOFF": "63.4810593", "Institute Name": "6156 - Marathwada Mitra Mandal's College of Engineering, Karvenagar, Pune", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "510", "Rank": "26064", "CUTOFF": "63.2129688", "Institute Name": "5177 - Matoshri College of Engineering and Research Centre, Eklahare, Nashik", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "511", "Rank": "26069", "CUTOFF": "63.2129688", "Institute Name": "3207 - Mahatma Education Society's Pillai College of Engineering, New Panvel", "Exam": "Electronics and Computer Science", "null": ["JEE"]}
{"Sr.No": "512", "Rank": "26135", "CUTOFF": "63.0112156", "Institute Name": "6622 - ISBM College Of Engineering Pune", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "513", "Rank": "26338", "CUTOFF": "62.7368048", "Institute Name": "6177 - Sinhgad College of Engineering, Vadgaon (BK), Pune", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "514", "Rank": "26373", "CUTOFF": "62.7368048", "Institute Name": "5160 - Sanjivani Rural Education Society's Sanjivani College of Engineering, Kopargaon", "Exam": "Mechatronics Engineering", "null": ["JEE"]}
{"Sr.No": "515", "Rank": "26382", "CUTOFF": "62.7368048", "Institute Name": "6250 - D.Y. Patil College of Engineering and Technology, Kolhapur", "Exam": "Chemical Engineering", "null": ["JEE"]}
{"Sr.No": "516", "Rank": "26403", "CUTOFF": "62.7368048", "Institute Name": "6839 - Dr. D Y Patil Pratishthan's College of Engineering, Kolhapur", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "517", "Rank": "26454", "CUTOFF": "62.7368048", "Institute Name": "5152 - G. H. Raisoni Institute of Business Management,Jalgaon", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "518", "Rank": "26485", "CUTOFF": "62.6356061", "Institute Name": "6145 - JSPM'S Jaywantrao Sawant College of Engineering,Pune", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "519", "Rank": "26690", "CUTOFF": "62.1723066", "Institute Name": "5172 - R. C. Patel Institute of Technology, Shirpur", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "520", "Rank": "26692", "CUTOFF": "62.1723066", "Institute Name": "6138 - Genba Sopanrao Moze Trust Parvatibai Genba Moze College of\nEngineering,Wagholi, Pune", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "521", "Rank": "26715", "CUTOFF": "62.1723066", "Institute Name": "6267 - Kolhapur Institute of Technology's College of Engineering(Autonomous),\nKolhapur", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "522", "Rank": "26730", "CUTOFF": "62.1723066", "Institute Name": "5121 - K. K. Wagh Institute of Engineering Education and Research, Nashik", "Exam": "Chemical Engineering", "null": ["JEE"]}
{"Sr.No": "523", "Rank": "26893", "CUTOFF": "61.8106139", "Institute Name": "6207 - Dr. D. Y. Patil Vidya Pratishthan Society\u00e2\u20ac\u2122s Dr. D. Y. Patil Institute of Technology,\nPimpri, Pune", "Exam": "Automation and Robotics", "null": ["JEE"]}
{"Sr.No": "524", "Rank": "26984", "CUTOFF": "61.8068601", "Institute Name": "5396 - College of Engineering and Technology ,North Maharashtra Knowledge City,\nJalgaon", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "525", "Rank": "26989", "CUTOFF": "61.8068601", "Institute Name": "4174 - ST. Vincent Pallotti College of Engineering & Technology, Nagpur", "Exam": "Electrical Engineering", "null": ["JEE"]}
{"Sr.No": "526", "Rank": "27077", "CUTOFF": "61.7967833", "Institute Name": "1182 - Padmashri Dr. V.B. Kolte College of Engineering, Malkapur, Buldhana", "Exam": "Electrical Engineering", "null": ["JEE"]}
{"Sr.No": "527", "Rank": "27110", "CUTOFF": "61.7967833", "Institute Name": "1105 - Prof. Ram Meghe Institute of Technology & Research, Amravati", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "528", "Rank": "27133", "CUTOFF": "61.7967833", "Institute Name": "6277 - Dr. J. J. Magdum Charitable Trust's Dr. J.J. Magdum College of Engineering,\nJaysingpur", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "529", "Rank": "27172", "CUTOFF": "61.736534", "Institute Name": "6625 - Universal College of Engineering & Research, Sasewadi", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "530", "Rank": "27355", "CUTOFF": "61.4689324", "Institute Name": "3183 - Anjuman-I-Islam's M.H. Saboo Siddik College of Engineering, Byculla, Mumbai", "Exam": "Automobile Engineering", "null": ["JEE"]}
{"Sr.No": "531", "Rank": "27477", "CUTOFF": "61.3915184", "Institute Name": "6250 - D.Y. Patil College of Engineering and Technology, Kolhapur", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "532", "Rank": "27548", "CUTOFF": "61.2449702", "Institute Name": "6222 - Dattajirao Kadam Technical Education Society's Textile & Engineering Institute,\nIchalkaranji.", "Exam": "Man Made Textile Technology", "null": ["JEE"]}
{"Sr.No": "533", "Rank": "27586", "CUTOFF": "61.2449702", "Institute Name": "4171 - Lokmanya Tilak Jankalyan Shikshan Sanstha's , Priyadarshini Institute of\nEngineering and Technology, Nagpur", "Exam": "Bio Technology", "null": ["JEE"]}
{"Sr.No": "534", "Rank": "27588", "CUTOFF": "61.2449702", "Institute Name": "6315 - Holy-Wood Academy's Sanjeevan Engineering and Technology Institute,\nPanhala", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "535", "Rank": "27591", "CUTOFF": "61.2449702", "Institute Name": "1121 - Shri Hanuman Vyayam Prasarak Mandals College of Engineering & Technology,\nAmravati", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "536", "Rank": "27634", "CUTOFF": "61.2449702", "Institute Name": "6176 - G. H.Raisoni Institute of Engineering and Technology, Wagholi, Pune", "Exam": "Electrical Engineering", "null": ["JEE"]}
{"Sr.No": "537", "Rank": "27740", "CUTOFF": "60.9325994", "Institute Name": "4174 - ST. Vincent Pallotti College of Engineering & Technology, Nagpur", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "538", "Rank": "27789", "CUTOFF": "60.9283224", "Institute Name": "6609 - Jaihind College Of Engineering,Kuran", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "539", "Rank": "27831", "CUTOFF": "60.9283224", "Institute Name": "5172 - R. C. Patel Institute of Technology, Shirpur", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "540", "Rank": "27911", "CUTOFF": "60.7106959", "Institute Name": "6184 - K. J.'s Educational Institut Trinity College of Engineering and Research, Pisoli,\nHaveli", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "541", "Rank": "27988", "CUTOFF": "60.6136506", "Institute Name": "6265 - Walchand Institute of Technology, Solapur", "Exam": "Electronics Engineering", "null": ["JEE"]}
{"Sr.No": "542", "Rank": "27989", "CUTOFF": "60.6136506", "Institute Name": "6284 - Vidya Pratishthan's Kamalnayan Bajaj Institute of Engineering & Technology,\nBaramati Dist.Pune", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "543", "Rank": "28011", "CUTOFF": "60.6136506", "Institute Name": "2533 - CSMSS Chh. Shahu College of Engineering, Aurangabad", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "544", "Rank": "28143", "CUTOFF": "60.374472", "Institute Name": "4134 - Guru Nanak Institute of Engineering & Technology,Kalmeshwar, Nagpur", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "545", "Rank": "28190", "CUTOFF": "60.2733485", "Institute Name": "5121 - K. K. Wagh Institute of Engineering Education and Research, Nashik", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "546", "Rank": "28198", "CUTOFF": "60.2733485", "Institute Name": "3196 - Lokmanya Tilak College of Engineering, Kopar Khairane, Navi Mumbai", "Exam": "Electrical Engineering", "null": ["JEE"]}
{"Sr.No": "547", "Rank": "28206", "CUTOFF": "60.2733485", "Institute Name": "5172 - R. C. Patel Institute of Technology, Shirpur", "Exam": "Electrical Engineering", "null": ["JEE"]}
{"Sr.No": "548", "Rank": "28301", "CUTOFF": "60.1411398", "Institute Name": "6797 - Dnyanshree Institute Engineering and Technology, Satara", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "549", "Rank": "28340", "CUTOFF": "60.1411398", "Institute Name": "4147 - K.D.K. College of Engineering, Nagpur", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "550", "Rank": "28413", "CUTOFF": "60.1371142", "Institute Name": "2126 - Gramodyogik Shikshan Mandal's Marathwada Institute of Technology,\nAurangabad", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "551", "Rank": "28436", "CUTOFF": "60.1371142", "Institute Name": "3471 - New Horizon Institute of Technology & Management, Thane", "Exam": "Artificial Intelligence and Data Science", "null": ["JEE"]}
{"Sr.No": "552", "Rank": "28460", "CUTOFF": "60.1371142", "Institute Name": "3200 - Hope Foundation and research center's Finolex Academy of Management and\nTechnology, Ratnagiri", "Exam": "Computer Science and\nEngineering(Artificial Intelligence and\nMachine Learning)", "null": ["JEE"]}
{"Sr.No": "553", "Rank": "28471", "CUTOFF": "60.1371142", "Institute Name": "6138 - Genba Sopanrao Moze Trust Parvatibai Genba Moze College of\nEngineering,Wagholi, Pune", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "554", "Rank": "28516", "CUTOFF": "60.0851338", "Institute Name": "6768 - P.K. Technical Campus, Pune.", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "555", "Rank": "28691", "CUTOFF": "59.8178469", "Institute Name": "3175 - M.G.M.'s College of Engineering and Technology, Kamothe, Navi Mumbai", "Exam": "Chemical Engineering", "null": ["JEE"]}
{"Sr.No": "556", "Rank": "28696", "CUTOFF": "59.8178469", "Institute Name": "3187 - N.Y.S.S.'s Datta Meghe College of Engineering, Airoli, Navi Mumbai", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "557", "Rank": "28720", "CUTOFF": "59.6810501", "Institute Name": "6781 - Bhagwant Institute of Technology, Barshi", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "558", "Rank": "28729", "CUTOFF": "59.4964083", "Institute Name": "3194 - Vidyavardhini's College of Engineering and Technology, Vasai", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "559", "Rank": "28783", "CUTOFF": "59.4964083", "Institute Name": "4304 - Cummins College of Engineering For Women, Sukhali (Gupchup), Tal. Hingna\nHingna Nagpur", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "560", "Rank": "28885", "CUTOFF": "59.4364433", "Institute Name": "6815 - Vidya Prasarini Sabha's College of Engineering & Technology, Lonavala", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "561", "Rank": "28943", "CUTOFF": "59.4364433", "Institute Name": "5103 - Shri Shivaji Vidya Prasarak Sanstha's Late Bapusaheb Shivaji Rao Deore College\nof Engineering,Dhule", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "562", "Rank": "28988", "CUTOFF": "59.368952", "Institute Name": "5160 - Sanjivani Rural Education Society's Sanjivani College of Engineering, Kopargaon", "Exam": "Electrical Engineering", "null": ["JEE"]}
{"Sr.No": "563", "Rank": "29000", "CUTOFF": "59.368952", "Institute Name": "4133 - Sanmarg Shikshan Sanstha's Smt. Radhikatai Pandav College of Engineering,\nNagpur", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "564", "Rank": "29021", "CUTOFF": "59.368952", "Institute Name": "4137 - Sir Shantilal Badjate Charitable Trust's S. B. Jain Institute of technology,\nManagement & Research, Nagpur", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "565", "Rank": "29034", "CUTOFF": "59.368952", "Institute Name": "6317 - Sharad Institute of Technology College of Engineering, Yadrav(Ichalkaranji)", "Exam": "Artificial Intelligence and Data Science", "null": ["JEE"]}
{"Sr.No": "566", "Rank": "29266", "CUTOFF": "58.9066059", "Institute Name": "5162 - Amrutvahini Sheti & Shikshan Vikas Sanstha's Amrutvahini College of\nEngineering, Sangamner", "Exam": "Electrical Engineering", "null": ["JEE"]}
{"Sr.No": "567", "Rank": "29498", "CUTOFF": "58.7898164", "Institute Name": "6268 - Tatyasaheb Kore Institute of Engineering and Technology, Warananagar", "Exam": "Chemical Engineering", "null": ["JEE"]}
{"Sr.No": "568", "Rank": "29606", "CUTOFF": "58.6924683", "Institute Name": "4104 - Kavi Kulguru Institute of Technology & Science, Ramtek", "Exam": "Computer Technology", "null": ["JEE"]}
{"Sr.No": "569", "Rank": "29699", "CUTOFF": "58.3782796", "Institute Name": "6155 - G.H.Raisoni College of Engineering & Management, Wagholi, Pune", "Exam": "Data Science", "null": ["JEE"]}
{"Sr.No": "570", "Rank": "29713", "CUTOFF": "58.3466684", "Institute Name": "5330 - PUNE VIDYARTHI GRIHA\u00e2\u20ac\u2122S COLLEGE OF ENGINEERING & SHRIKRUSHNA S.\nDHAMANKAR INSTITUTE OF MANAGEMENT, NASHIK", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "571", "Rank": "29803", "CUTOFF": "58.2063894", "Institute Name": "3200 - Hope Foundation and research center's Finolex Academy of Management and\nTechnology, Ratnagiri", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "572", "Rank": "29807", "CUTOFF": "58.2063894", "Institute Name": "5121 - K. K. Wagh Institute of Engineering Education and Research, Nashik", "Exam": "Electrical Engineering", "null": ["JEE"]}
{"Sr.No": "573", "Rank": "29827", "CUTOFF": "58.2063894", "Institute Name": "6270 - Rayat Shikshan Sanstha's Karmaveer Bhaurao Patil College of Engineering,\nSatara", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "574", "Rank": "29878", "CUTOFF": "58.131914", "Institute Name": "4147 - K.D.K. College of Engineering, Nagpur", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "575", "Rank": "30222", "CUTOFF": "57.5032788", "Institute Name": "1265 - Mauli Group of Institutions, College of Engineering and Technology, Shegaon.", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "576", "Rank": "30229", "CUTOFF": "57.5032788", "Institute Name": "3187 - N.Y.S.S.'s Datta Meghe College of Engineering, Airoli, Navi Mumbai", "Exam": "Civil and infrastructure Engineering", "null": ["JEE"]}
{"Sr.No": "577", "Rank": "30236", "CUTOFF": "57.5032788", "Institute Name": "3222 - Haji Jamaluddin Thim Trust's Theem College of Engineering, At. Villege\nBetegaon, Boisar", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "578", "Rank": "30391", "CUTOFF": "57.4239924", "Institute Name": "5172 - R. C. Patel Institute of Technology, Shirpur", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "579", "Rank": "30403", "CUTOFF": "57.4239924", "Institute Name": "3189 - Bharati Vidyapeeth College of Engineering, Navi Mumbai", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "580", "Rank": "30414", "CUTOFF": "57.4239924", "Institute Name": "3194 - Vidyavardhini's College of Engineering and Technology, Vasai", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "581", "Rank": "30630", "CUTOFF": "57.1182619", "Institute Name": "4179 - Lokmanya Tilak Jankalyan Shiksan Sanstha, Priyadarshini Indira Gandhi College\nof Engineering, Nagpur", "Exam": "Artificial Intelligence and Data Science", "null": ["JEE"]}
{"Sr.No": "582", "Rank": "30732", "CUTOFF": "57.032754", "Institute Name": "3194 - Vidyavardhini's College of Engineering and Technology, Vasai", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "583", "Rank": "30784", "CUTOFF": "57.032754", "Institute Name": "6222 - Dattajirao Kadam Technical Education Society's Textile & Engineering Institute,\nIchalkaranji.", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "584", "Rank": "30834", "CUTOFF": "57.0233901", "Institute Name": "6222 - Dattajirao Kadam Technical Education Society's Textile & Engineering Institute,\nIchalkaranji.", "Exam": "Textile Plant Engineering", "null": ["JEE"]}
{"Sr.No": "585", "Rank": "30955", "CUTOFF": "56.9811784", "Institute Name": "3207 - Mahatma Education Society's Pillai College of Engineering, New Panvel", "Exam": "Automobile Engineering", "null": ["JEE"]}
{"Sr.No": "586", "Rank": "31139", "CUTOFF": "56.5877156", "Institute Name": "6755 - JSPM Narhe Technical Campus, Pune.", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "587", "Rank": "31171", "CUTOFF": "56.2050411", "Institute Name": "4142 - Ankush Shikshan Sanstha's G. H. Raisoni Institute of Engineering & Technology,\nNagpur", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "588", "Rank": "31230", "CUTOFF": "56.1546451", "Institute Name": "4144 - Shri. Sai Shikshan Sanstha, Nagpur Institute of Technology, Nagpur", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "589", "Rank": "31244", "CUTOFF": "56.1196908", "Institute Name": "6144 - Genba Sopanrao Moze College of Engineering, Baner-Balewadi, Pune", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "590", "Rank": "31297", "CUTOFF": "56.1196908", "Institute Name": "6762 - Nanasaheb Mahadik College of Engineering,Walwa, Sangli.", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "591", "Rank": "31390", "CUTOFF": "56.1054739", "Institute Name": "5104 - Shramsadhana Bombay Trust, College of Engineering & Technology, Jalgaon", "Exam": "Chemical Engineering", "null": ["JEE"]}
{"Sr.No": "592", "Rank": "31474", "CUTOFF": "56.1054739", "Institute Name": "5121 - K. K. Wagh Institute of Engineering Education and Research, Nashik", "Exam": "Robotics and Automation", "null": ["JEE"]}
{"Sr.No": "593", "Rank": "31518", "CUTOFF": "56.1054739", "Institute Name": "3218 - Aldel Education Trust's St. John College of Engineering & Management, Vevoor,\nPalghar", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "594", "Rank": "31533", "CUTOFF": "56.1054739", "Institute Name": "3190 - Terna Engineering College, Nerul, Navi Mumbai", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "595", "Rank": "31570", "CUTOFF": "56.094761", "Institute Name": "2127 - Mahatma Gandhi Missions College of Engineering, Hingoli Rd, Nanded.", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "596", "Rank": "31657", "CUTOFF": "56.094761", "Institute Name": "6303 - Dr. Ashok Gujar Technical Institute's Dr. Daulatrao Aher College of Engineering,\nKarad", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "597", "Rank": "31689", "CUTOFF": "55.9786086", "Institute Name": "4104 - Kavi Kulguru Institute of Technology & Science, Ramtek", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "598", "Rank": "31705", "CUTOFF": "55.9656403", "Institute Name": "6207 - Dr. D. Y. Patil Vidya Pratishthan Society\u00e2\u20ac\u2122s Dr. D. Y. Patil Institute of Technology,\nPimpri, Pune", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "599", "Rank": "31828", "CUTOFF": "55.9656403", "Institute Name": "1114 - Sipna Shikshan Prasarak Mandal College of Engineering & Technology, Amravati", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "600", "Rank": "31921", "CUTOFF": "55.9351597", "Institute Name": "4138 - Jaidev Education Society, J D College of Engineering and Management, Nagpur", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "601", "Rank": "31994", "CUTOFF": "55.9351597", "Institute Name": "6139 - Progressive Education Society's Modern College of Engineering, Pune", "Exam": "Electrical Engineering", "null": ["JEE"]}
{"Sr.No": "602", "Rank": "32038", "CUTOFF": "55.7621254", "Institute Name": "6298 - Zeal Education Society's Zeal College of Engineering & Reserch, Narhe, Pune", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "603", "Rank": "32084", "CUTOFF": "55.6161188", "Institute Name": "5152 - G. H. Raisoni Institute of Business Management,Jalgaon", "Exam": "Data Science", "null": ["JEE"]}
{"Sr.No": "604", "Rank": "32100", "CUTOFF": "55.6161188", "Institute Name": "1120 - Jawaharlal Darda Institute of Engineering and Technology, Yavatmal", "Exam": "Chemical Engineering", "null": ["JEE"]}
{"Sr.No": "605", "Rank": "32131", "CUTOFF": "55.6161188", "Institute Name": "4142 - Ankush Shikshan Sanstha's G. H. Raisoni Institute of Engineering & Technology,\nNagpur", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "606", "Rank": "32152", "CUTOFF": "55.6161188", "Institute Name": "6178 - Sinhgad Technical Education Society's Smt. Kashibai Navale College of\nEngineering,Vadgaon,Pune", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "607", "Rank": "32343", "CUTOFF": "55.501039", "Institute Name": "3187 - N.Y.S.S.'s Datta Meghe College of Engineering, Airoli, Navi Mumbai", "Exam": "Chemical Engineering", "null": ["JEE"]}
{"Sr.No": "608", "Rank": "32374", "CUTOFF": "55.501039", "Institute Name": "5411 - Maulana Mukhtar Ahmad Nadvi Technical Campus, Malegaon.", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "609", "Rank": "32393", "CUTOFF": "55.4845927", "Institute Name": "6794 - Anantrao Pawar College of Engineering & Research, Pune", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "610", "Rank": "32402", "CUTOFF": "55.4845927", "Institute Name": "4123 - Lokmanya Tilak Jankalyan Shikshan Sanstha, Priyadarshani College of\nEngineering, Nagpur", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "611", "Rank": "32456", "CUTOFF": "55.0706796", "Institute Name": "4177 - Priyadarshini Bhagwati College of Engineering, Harpur Nagar, Umred\nRoad,Nagpur", "Exam": "Electronics and Communication\nEngineering", "null": ["JEE"]}
{"Sr.No": "612", "Rank": "32488", "CUTOFF": "54.8724746", "Institute Name": "6265 - Walchand Institute of Technology, Solapur", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "613", "Rank": "32672", "CUTOFF": "54.5210218", "Institute Name": "5104 - Shramsadhana Bombay Trust, College of Engineering & Technology, Jalgaon", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "614", "Rank": "32704", "CUTOFF": "54.5210218", "Institute Name": "6285 - Bharati Vidyapeeth's College of Engineering for Women, Katraj, Dhankawadi,\nPune", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "615", "Rank": "32830", "CUTOFF": "54.4854936", "Institute Name": "5125 - Pravara Rural Education Society's Sir Visvesvaraya Institute of Technology,\nChincholi Dist. Nashik", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "616", "Rank": "32843", "CUTOFF": "54.4854936", "Institute Name": "4145 - Wainganga College of Engineering and Management, Dongargaon, Nagpur", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "617", "Rank": "32862", "CUTOFF": "54.4854936", "Institute Name": "3447 - G.M.Vedak Institute of Technology, Tala, Raigad.", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "618", "Rank": "32960", "CUTOFF": "54.3233046", "Institute Name": "5130 - Brahma Valley College of Engineering & Research, Trimbakeshwar, Nashik", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "619", "Rank": "33372", "CUTOFF": "53.5861512", "Institute Name": "1128 - Prof Ram Meghe College of Engineering and Management, Badnera", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "620", "Rank": "33427", "CUTOFF": "53.5743091", "Institute Name": "6282 - All India Shri Shivaji Memorial Society's Institute of Information\nTechnology,Pune", "Exam": "Electrical Engineering", "null": ["JEE"]}
{"Sr.No": "621", "Rank": "33439", "CUTOFF": "53.5743091", "Institute Name": "6268 - Tatyasaheb Kore Institute of Engineering and Technology, Warananagar", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "622", "Rank": "33454", "CUTOFF": "53.5389012", "Institute Name": "3203 - Atharva College of Engineering,Malad(West),Mumbai", "Exam": "Electrical Engineering", "null": ["JEE"]}
{"Sr.No": "623", "Rank": "33524", "CUTOFF": "53.5211172", "Institute Name": "6122 - TSSMS's Pd. Vasantdada Patil Institute of Technology, Bavdhan, Pune", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "624", "Rank": "33695", "CUTOFF": "53.2188173", "Institute Name": "3216 - Gharda Foundation's Gharda Institute of Technology,Khed, Ratnagiri", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "625", "Rank": "33775", "CUTOFF": "53.079385", "Institute Name": "4174 - ST. Vincent Pallotti College of Engineering & Technology, Nagpur", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "626", "Rank": "33788", "CUTOFF": "53.079385", "Institute Name": "3439 - Anjuman-I-Islam's Kalsekar Technical Campus, Panvel", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "627", "Rank": "33862", "CUTOFF": "52.9664503", "Institute Name": "6178 - Sinhgad Technical Education Society's Smt. Kashibai Navale College of\nEngineering,Vadgaon,Pune", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "628", "Rank": "33880", "CUTOFF": "52.9664503", "Institute Name": "3208 - Don Bosco Institute of Technology, Mumbai", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "629", "Rank": "33917", "CUTOFF": "52.8740068", "Institute Name": "1268 - Siddhivinayak Technical Campus, School of Engineering & Research Technology,\nShirasgon, Nile", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "630", "Rank": "33987", "CUTOFF": "52.8740068", "Institute Name": "5121 - K. K. Wagh Institute of Engineering Education and Research, Nashik", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "631", "Rank": "34055", "CUTOFF": "52.7710985", "Institute Name": "6758 - Sahyadri Valley College of Engineering & Technology, Rajuri, Pune.", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "632", "Rank": "34075", "CUTOFF": "52.7710985", "Institute Name": "5170 - Hindi Seva Mandal's Shri Sant Gadgebaba College of Engineering & Technology,\nBhusawal", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "633", "Rank": "34084", "CUTOFF": "52.7710985", "Institute Name": "4138 - Jaidev Education Society, J D College of Engineering and Management, Nagpur", "Exam": "Electrical Engineering", "null": ["JEE"]}
{"Sr.No": "634", "Rank": "34110", "CUTOFF": "52.332402", "Institute Name": "6176 - G. H.Raisoni Institute of Engineering and Technology, Wagholi, Pune", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "635", "Rank": "34299", "CUTOFF": "52.3027847", "Institute Name": "4167 - Yeshwantrao Chavan College of Engineering,Wanadongri, Nagpur", "Exam": "Electrical Engg[Electronics and Power]", "null": ["JEE"]}
{"Sr.No": "636", "Rank": "34382", "CUTOFF": "52.3027847", "Institute Name": "6207 - Dr. D. Y. Patil Vidya Pratishthan Society\u00e2\u20ac\u2122s Dr. D. Y. Patil Institute of Technology,\nPimpri, Pune", "Exam": "Instrumentation Engineering", "null": ["JEE"]}
{"Sr.No": "637", "Rank": "34394", "CUTOFF": "52.3027847", "Institute Name": "1117 - Janata Shikshan Prasarak Mandal\u00e2\u20ac\u2122s Babasaheb Naik College Of Engineering,\nPusad", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "638", "Rank": "34410", "CUTOFF": "52.3027847", "Institute Name": "4649 - Bajaj Institute of Technology, Wardha", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "639", "Rank": "34506", "CUTOFF": "52.0562632", "Institute Name": "5177 - Matoshri College of Engineering and Research Centre, Eklahare, Nashik", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "640", "Rank": "34619", "CUTOFF": "51.8402041", "Institute Name": "3194 - Vidyavardhini's College of Engineering and Technology, Vasai", "Exam": "Instrumentation Engineering", "null": ["JEE"]}
{"Sr.No": "641", "Rank": "34819", "CUTOFF": "51.8101657", "Institute Name": "1120 - Jawaharlal Darda Institute of Engineering and Technology, Yavatmal", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "642", "Rank": "34877", "CUTOFF": "51.8101657", "Institute Name": "6141 - Jaywant Shikshan Prasarak Mandal's,Rajarshi Shahu College of Engineering,\nTathawade, Pune", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "643", "Rank": "35021", "CUTOFF": "51.6183121", "Institute Name": "5173 - SNJB's Late Sau. Kantabai Bhavarlalji Jain College of Engineering, (Jain Gurukul),\nNeminagar,Chandwad,(Nashik)", "Exam": "Artificial Intelligence and Data Science", "null": ["JEE"]}
{"Sr.No": "644", "Rank": "35148", "CUTOFF": "51.4351083", "Institute Name": "4177 - Priyadarshini Bhagwati College of Engineering, Harpur Nagar, Umred\nRoad,Nagpur", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "645", "Rank": "35279", "CUTOFF": "50.7704716", "Institute Name": "3190 - Terna Engineering College, Nerul, Navi Mumbai", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "646", "Rank": "35319", "CUTOFF": "50.7704716", "Institute Name": "5390 - K.V.N. Naik S. P. Sansth's Loknete Gopinathji Munde Institute of Engineering\nEducation & Research, Nashik.", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "647", "Rank": "35330", "CUTOFF": "50.7704716", "Institute Name": "5170 - Hindi Seva Mandal's Shri Sant Gadgebaba College of Engineering & Technology,\nBhusawal", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "648", "Rank": "35344", "CUTOFF": "50.734494", "Institute Name": "6794 - Anantrao Pawar College of Engineering & Research, Pune", "Exam": "Artificial Intelligence and Data Science", "null": ["JEE"]}
{"Sr.No": "649", "Rank": "35375", "CUTOFF": "50.6740377", "Institute Name": "5390 - K.V.N. Naik S. P. Sansth's Loknete Gopinathji Munde Institute of Engineering\nEducation & Research, Nashik.", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "650", "Rank": "35441", "CUTOFF": "50.496325", "Institute Name": "6320 - K.J.'s Educational Institute's K.J.College of Engineering & Management\nResearch, Pisoli", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "651", "Rank": "35875", "CUTOFF": "50.1932767", "Institute Name": "1125 - Dwarka Bahu Uddeshiya Gramin Vikas Foundation, Rajarshri Shahu College of\nEngineering, Buldhana", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "652", "Rank": "35881", "CUTOFF": "50.1932767", "Institute Name": "4142 - Ankush Shikshan Sanstha's G. H. Raisoni Institute of Engineering & Technology,\nNagpur", "Exam": "Electrical Engineering", "null": ["JEE"]}
{"Sr.No": "653", "Rank": "35899", "CUTOFF": "50.1760245", "Institute Name": "6149 - Choudhary Attar Singh Yadav Memorial Trust,Siddhant College of Engineering,\nMaval", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "654", "Rank": "35998", "CUTOFF": "50.1760245", "Institute Name": "3154 - Saraswati Education Society's Saraswati College of Engineering,Kharghar Navi\nMumbai", "Exam": "Computer Science and\nEngineering(Data Science)", "null": ["JEE"]}
{"Sr.No": "655", "Rank": "36006", "CUTOFF": "50.1760245", "Institute Name": "6759 - Shree Ramchandra College of Engineering, Lonikand,Pune", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "656", "Rank": "36181", "CUTOFF": "50.0065467", "Institute Name": "5182 - Kalyani Charitable Trust, Late Gambhirrao Natuba Sapkal College of\nEngineering, Anjaneri, Trimbakeshwar Road, Nashik", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "657", "Rank": "36188", "CUTOFF": "50.0065467", "Institute Name": "5449 - Shri Vile Parle Kelavani Mandal's Institute of Technology, Dhule", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "658", "Rank": "36227", "CUTOFF": "49.6510469", "Institute Name": "1265 - Mauli Group of Institutions, College of Engineering and Technology, Shegaon.", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "659", "Rank": "36351", "CUTOFF": "49.6417427", "Institute Name": "6222 - Dattajirao Kadam Technical Education Society's Textile & Engineering Institute,\nIchalkaranji.", "Exam": "Electrical Engineering", "null": ["JEE"]}
{"Sr.No": "660", "Rank": "36447", "CUTOFF": "49.4031236", "Institute Name": "2126 - Gramodyogik Shikshan Mandal's Marathwada Institute of Technology,\nAurangabad", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "661", "Rank": "36449", "CUTOFF": "49.4031236", "Institute Name": "6203 - Marathwada Mitra Mandal's Institute of Technology, Lohgaon, Pune", "Exam": "Mechatronics Engineering", "null": ["JEE"]}
{"Sr.No": "662", "Rank": "36520", "CUTOFF": "49.0629492", "Institute Name": "6122 - TSSMS's Pd. Vasantdada Patil Institute of Technology, Bavdhan, Pune", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "663", "Rank": "36530", "CUTOFF": "49.0629492", "Institute Name": "5170 - Hindi Seva Mandal's Shri Sant Gadgebaba College of Engineering & Technology,\nBhusawal", "Exam": "Robotics", "null": ["JEE"]}
{"Sr.No": "664", "Rank": "36606", "CUTOFF": "48.8733653", "Institute Name": "5152 - G. H. Raisoni Institute of Business Management,Jalgaon", "Exam": "Artificial Intelligence", "null": ["JEE"]}
{"Sr.No": "665", "Rank": "36654", "CUTOFF": "48.8733653", "Institute Name": "5108 - Maratha Vidya Prasarak Samaj's Karmaveer Adv. Baburao Ganpatrao Thakare\nCollege Of Engineering, Nashik", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "666", "Rank": "36690", "CUTOFF": "48.7595338", "Institute Name": "6794 - Anantrao Pawar College of Engineering & Research, Pune", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "667", "Rank": "36722", "CUTOFF": "48.6407358", "Institute Name": "4139 - Samridhi Sarwajanik Charitable Trust, Jhulelal Institute of Technology, Nagpur", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "668", "Rank": "36791", "CUTOFF": "48.6407358", "Institute Name": "2112 - Shree Yash Pratishthan, Shreeyash College of Engineering and Technology,\nAurangabad", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "669", "Rank": "37175", "CUTOFF": "48.0636197", "Institute Name": "4138 - Jaidev Education Society, J D College of Engineering and Management, Nagpur", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "670", "Rank": "37285", "CUTOFF": "47.8236972", "Institute Name": "5139 - Pravara Rural College of Engineering, Loni, Pravaranagar, Ahmednagar.", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "671", "Rank": "37319", "CUTOFF": "47.8236972", "Institute Name": "4193 - K.D.M. Education Society, Vidharbha Institute of Technology,Umred Road\n,Nagpur", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "672", "Rank": "37351", "CUTOFF": "47.8236972", "Institute Name": "5108 - Maratha Vidya Prasarak Samaj's Karmaveer Adv. Baburao Ganpatrao Thakare\nCollege Of Engineering, Nashik", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "673", "Rank": "37370", "CUTOFF": "47.8236972", "Institute Name": "6222 - Dattajirao Kadam Technical Education Society's Textile & Engineering Institute,\nIchalkaranji.", "Exam": "Textile Chemistry", "null": ["JEE"]}
{"Sr.No": "674", "Rank": "37658", "CUTOFF": "47.3984733", "Institute Name": "5396 - College of Engineering and Technology ,North Maharashtra Knowledge City,\nJalgaon", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "675", "Rank": "37665", "CUTOFF": "47.3984733", "Institute Name": "5124 - Jagadamba Education Soc. Nashik's S.N.D. College of Engineering & Reserch,\nBabulgaon", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "676", "Rank": "37715", "CUTOFF": "47.3984733", "Institute Name": "6182 - Sinhgad Technical Education Society, Sinhgad Institute of Technology and\nScience, Narhe (Ambegaon)", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "677", "Rank": "37870", "CUTOFF": "47.2243758", "Institute Name": "5162 - Amrutvahini Sheti & Shikshan Vikas Sanstha's Amrutvahini College of\nEngineering, Sangamner", "Exam": "Production Engineering", "null": ["JEE"]}
{"Sr.No": "678", "Rank": "37932", "CUTOFF": "47.2195101", "Institute Name": "3423 - Shree L.R. Tiwari College of Engineering, Mira Road, Mumbai", "Exam": "Electronics and Computer Science", "null": ["JEE"]}
{"Sr.No": "679", "Rank": "37950", "CUTOFF": "47.2195101", "Institute Name": "6622 - ISBM College Of Engineering Pune", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "680", "Rank": "37952", "CUTOFF": "47.2195101", "Institute Name": "6187 - Sinhgad Academy of Engineering, Kondhwa (BK) Kondhwa-Saswad Road, Pune", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "681", "Rank": "38001", "CUTOFF": "47.1462961", "Institute Name": "6802 - Dr. D.Y.Patil Institute of Engineering, Management & Reseach, Akurdi, Pune", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "682", "Rank": "38183", "CUTOFF": "47.0407952", "Institute Name": "5449 - Shri Vile Parle Kelavani Mandal's Institute of Technology, Dhule", "Exam": "Electrical Engineering", "null": ["JEE"]}
{"Sr.No": "683", "Rank": "38225", "CUTOFF": "47.0407952", "Institute Name": "6732 - Dr. D. Y. Patil School OF Engineering, Lohegaon, Pune", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "684", "Rank": "38391", "CUTOFF": "47.0339246", "Institute Name": "3219 - Koti Vidya Charitable Trust's Smt. Alamuri Ratnamala Institute of Engineering\nand Technology, Sapgaon, Tal. Shahapur", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "685", "Rank": "38393", "CUTOFF": "47.0339246", "Institute Name": "6632 - Navsahyadri Education Society's Group of Institutions", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "686", "Rank": "38472", "CUTOFF": "46.6043774", "Institute Name": "2129 - M.S. Bidve Engineering College, Latur", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "687", "Rank": "38526", "CUTOFF": "46.217723", "Institute Name": "5162 - Amrutvahini Sheti & Shikshan Vikas Sanstha's Amrutvahini College of\nEngineering, Sangamner", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "688", "Rank": "38580", "CUTOFF": "46.217723", "Institute Name": "3423 - Shree L.R. Tiwari College of Engineering, Mira Road, Mumbai", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "689", "Rank": "38636", "CUTOFF": "46.0804821", "Institute Name": "3148 - Mahavir Education Trust's Shah & Anchor Kutchhi Engineering College, Mumbai", "Exam": "Electronics and Computer Science", "null": ["JEE"]}
{"Sr.No": "690", "Rank": "38797", "CUTOFF": "45.7902205", "Institute Name": "4151 - Vidarbha Bahu-Uddeshiya Shikshan Sanstha's Tulshiramji Gaikwad Patil College\nof Engineering & Technology, Nagpur", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "691", "Rank": "38805", "CUTOFF": "45.7902205", "Institute Name": "1127 - Jagadambha Bahuuddeshiya Gramin Vikas Sanstha's Jagdambha College of\nEngineering and Technology, Yavatmal", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "692", "Rank": "38861", "CUTOFF": "45.7804866", "Institute Name": "6183 - Al-Ameen Educational and Medical Foundation, College of Engineering,\nKoregaon, Bhima", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "693", "Rank": "38904", "CUTOFF": "45.7804866", "Institute Name": "3206 - S.S.P.M.'s College of Engineering, Kankavli", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "694", "Rank": "38922", "CUTOFF": "45.7804866", "Institute Name": "5184 - Amruta Vaishnavi Education & Welfare Trust's Shatabdi Institute of Engineering\n& Research, Agaskhind Tal. Sinnar", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "695", "Rank": "38998", "CUTOFF": "45.5906789", "Institute Name": "6796 - Bharati Vidyapeeth's College of Engineering,Lavale, Pune", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "696", "Rank": "39097", "CUTOFF": "45.3472919", "Institute Name": "3471 - New Horizon Institute of Technology & Management, Thane", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "697", "Rank": "39109", "CUTOFF": "45.2455746", "Institute Name": "6160 - JSPM's Imperial College of Engineering and Research, Wagholi, Pune", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "698", "Rank": "39193", "CUTOFF": "45.0374181", "Institute Name": "6206 - Pune District Education Association's College of Engineering, Pune", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "699", "Rank": "39209", "CUTOFF": "45.0374181", "Institute Name": "5449 - Shri Vile Parle Kelavani Mandal's Institute of Technology, Dhule", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "700", "Rank": "39225", "CUTOFF": "45.0374181", "Institute Name": "3147 - Saraswati Education Society, Yadavrao Tasgaonkar Institute of Engineering &\nTechnology, Karjat", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "701", "Rank": "39242", "CUTOFF": "45.0374181", "Institute Name": "6769 - Rasiklal M. Dhariwal Sinhgad Technical Institutes Campus, Warje, Pune.", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "702", "Rank": "39295", "CUTOFF": "44.9736417", "Institute Name": "5382 - Ahmednagar Jilha Maratha Vidya Prasarak Samajache, Shri. Chhatrapati Shivaji\nMaharaj College of Engineering, Nepti", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "703", "Rank": "39330", "CUTOFF": "44.9736417", "Institute Name": "6803 - Sant Gajanan Maharaj College of Engineering, Gadhinglaj", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "704", "Rank": "39374", "CUTOFF": "44.6527699", "Institute Name": "6267 - Kolhapur Institute of Technology's College of Engineering(Autonomous),\nKolhapur", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "705", "Rank": "39575", "CUTOFF": "44.4346883", "Institute Name": "6277 - Dr. J. J. Magdum Charitable Trust's Dr. J.J. Magdum College of Engineering,\nJaysingpur", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "706", "Rank": "39607", "CUTOFF": "44.4346883", "Institute Name": "6649 - TSSM's Bhivarabai Sawant College of Engineering and Research, Narhe, Pune", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "707", "Rank": "39683", "CUTOFF": "44.4053173", "Institute Name": "1265 - Mauli Group of Institutions, College of Engineering and Technology, Shegaon.", "Exam": "Electrical Engg[Electronics and Power]", "null": ["JEE"]}
{"Sr.No": "708", "Rank": "39700", "CUTOFF": "44.4053173", "Institute Name": "3146 - Jawahar Education Society's Annasaheb Chudaman Patil College of\nEngineering,Kharghar, Navi Mumbai", "Exam": "Computer Science and Engineering\n(Internet of Things and Cyber Security\nIncluding Block Chain Technology)", "null": ["JEE"]}
{"Sr.No": "709", "Rank": "39763", "CUTOFF": "44.3219926", "Institute Name": "3188 - Vasantdada Patil Pratishthan's College Of Engineering and Visual Arts, Sion,\nMumbai", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "710", "Rank": "39766", "CUTOFF": "44.3219926", "Institute Name": "1123 - Dr.Rajendra Gode Institute of Technology & Research, Amravati", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "711", "Rank": "39773", "CUTOFF": "44.3219926", "Institute Name": "1114 - Sipna Shikshan Prasarak Mandal College of Engineering & Technology, Amravati", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "712", "Rank": "39849", "CUTOFF": "44.3133247", "Institute Name": "5103 - Shri Shivaji Vidya Prasarak Sanstha's Late Bapusaheb Shivaji Rao Deore College\nof Engineering,Dhule", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "713", "Rank": "40137", "CUTOFF": "43.9085319", "Institute Name": "4193 - K.D.M. Education Society, Vidharbha Institute of Technology,Umred Road\n,Nagpur", "Exam": "Electrical Engineering", "null": ["JEE"]}
{"Sr.No": "714", "Rank": "40384", "CUTOFF": "43.1388868", "Institute Name": "3219 - Koti Vidya Charitable Trust's Smt. Alamuri Ratnamala Institute of Engineering\nand Technology, Sapgaon, Tal. Shahapur", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "715", "Rank": "40385", "CUTOFF": "43.1388868", "Institute Name": "5401 - Jawahar Education Society's Institute of Technology, Management & Research,\nNashik.", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "716", "Rank": "40448", "CUTOFF": "43.1388868", "Institute Name": "6311 - Jayawant Shikshan Prasarak Mandal, Bhivarabai Sawant Institute of Technology\n& Research, Wagholi", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "717", "Rank": "40459", "CUTOFF": "43.1388868", "Institute Name": "6149 - Choudhary Attar Singh Yadav Memorial Trust,Siddhant College of Engineering,\nMaval", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "718", "Rank": "40540", "CUTOFF": "42.8699409", "Institute Name": "5411 - Maulana Mukhtar Ahmad Nadvi Technical Campus, Malegaon.", "Exam": "Electrical Engineering", "null": ["JEE"]}
{"Sr.No": "719", "Rank": "40743", "CUTOFF": "42.4413035", "Institute Name": "2114 - Deogiri Institute of Engineering and Management Studies, Aurangabad", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "720", "Rank": "40746", "CUTOFF": "42.4413035", "Institute Name": "5399 - Sanghavi College of Engineering, Varvandi, Nashik.", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "721", "Rank": "40820", "CUTOFF": "42.4413035", "Institute Name": "2127 - Mahatma Gandhi Missions College of Engineering, Hingoli Rd, Nanded.", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "722", "Rank": "41323", "CUTOFF": "42.1318504", "Institute Name": "6269 - Shetkari Shikshan Mandal's Pad. Vasantraodada Patil Institute of Technology,\nBudhgaon, Sangli", "Exam": "Chemical Engineering", "null": ["JEE"]}
{"Sr.No": "723", "Rank": "41437", "CUTOFF": "41.7292723", "Institute Name": "3198 - Konkan Gyanpeeth College of Engineering, Karjat", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "724", "Rank": "41526", "CUTOFF": "41.5159598", "Institute Name": "6313 - Jaywant College of Engineering & Polytechnic , Kille Macchindragad Tal. Walva\nDistrict- Sangali", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "725", "Rank": "41619", "CUTOFF": "41.2725431", "Institute Name": "5411 - Maulana Mukhtar Ahmad Nadvi Technical Campus, Malegaon.", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "726", "Rank": "41659", "CUTOFF": "41.2725431", "Institute Name": "5125 - Pravara Rural Education Society's Sir Visvesvaraya Institute of Technology,\nChincholi Dist. Nashik", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "727", "Rank": "41797", "CUTOFF": "41.1445071", "Institute Name": "5109 - Sandip Foundation, Sandip Institute of Technology and Research Centre,\nMahiravani, Nashik", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "728", "Rank": "41816", "CUTOFF": "41.1445071", "Institute Name": "3217 - Vighnaharata Trust's Shivajirao S. Jondhale College of Engineering &\nTechnology, Shahapur, Asangaon, Dist Thane", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "729", "Rank": "41905", "CUTOFF": "40.8759878", "Institute Name": "5408 - Vidya Niketan College of Engineering, Bota Sangamner", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "730", "Rank": "41965", "CUTOFF": "40.7696398", "Institute Name": "6277 - Dr. J. J. Magdum Charitable Trust's Dr. J.J. Magdum College of Engineering,\nJaysingpur", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "731", "Rank": "42015", "CUTOFF": "40.7696398", "Institute Name": "6283 - Annasaheb Dange College of Engineering and Technology, Ashta, Sangli", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "732", "Rank": "42178", "CUTOFF": "40.6861324", "Institute Name": "4179 - Lokmanya Tilak Jankalyan Shiksan Sanstha, Priyadarshini Indira Gandhi College\nof Engineering, Nagpur", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "733", "Rank": "42244", "CUTOFF": "40.6057647", "Institute Name": "4139 - Samridhi Sarwajanik Charitable Trust, Jhulelal Institute of Technology, Nagpur", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "734", "Rank": "42270", "CUTOFF": "40.6057647", "Institute Name": "3189 - Bharati Vidyapeeth College of Engineering, Navi Mumbai", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "735", "Rank": "42308", "CUTOFF": "40.4856981", "Institute Name": "4163 - Rajiv Gandhi College of Engineering Research & Technology Chandrapur", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "736", "Rank": "42337", "CUTOFF": "40.3677687", "Institute Name": "6839 - Dr. D Y Patil Pratishthan's College of Engineering, Kolhapur", "Exam": "Computer Science and\nEngineering(Data Science)", "null": ["JEE"]}
{"Sr.No": "737", "Rank": "42347", "CUTOFF": "40.3677687", "Institute Name": "6284 - Vidya Pratishthan's Kamalnayan Bajaj Institute of Engineering & Technology,\nBaramati Dist.Pune", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "738", "Rank": "42392", "CUTOFF": "40.1103087", "Institute Name": "1105 - Prof. Ram Meghe Institute of Technology & Research, Amravati", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "739", "Rank": "42478", "CUTOFF": "39.9073588", "Institute Name": "4136 - Lokmanya Tilak Jankalyan Shikshan Sastha, Priyadarshini J. L. College Of\nEngineering, Nagpur", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "740", "Rank": "42539", "CUTOFF": "39.9073588", "Institute Name": "4145 - Wainganga College of Engineering and Management, Dongargaon, Nagpur", "Exam": "Electrical Engineering", "null": ["JEE"]}
{"Sr.No": "741", "Rank": "42645", "CUTOFF": "39.6393106", "Institute Name": "3475 - A. P. Shah Institute of Technology, Thane", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "742", "Rank": "42735", "CUTOFF": "39.6393106", "Institute Name": "4133 - Sanmarg Shikshan Sanstha's Smt. Radhikatai Pandav College of Engineering,\nNagpur", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "743", "Rank": "42797", "CUTOFF": "39.3730397", "Institute Name": "3216 - Gharda Foundation's Gharda Institute of Technology,Khed, Ratnagiri", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "744", "Rank": "42809", "CUTOFF": "39.3730397", "Institute Name": "6298 - Zeal Education Society's Zeal College of Engineering & Reserch, Narhe, Pune", "Exam": "Robotics and Automation", "null": ["JEE"]}
{"Sr.No": "745", "Rank": "42817", "CUTOFF": "39.3730397", "Institute Name": "3203 - Atharva College of Engineering,Malad(West),Mumbai", "Exam": "Electronics Engineering", "null": ["JEE"]}
{"Sr.No": "746", "Rank": "43076", "CUTOFF": "39.0696101", "Institute Name": "5104 - Shramsadhana Bombay Trust, College of Engineering & Technology, Jalgaon", "Exam": "Bio Technology", "null": ["JEE"]}
{"Sr.No": "747", "Rank": "43241", "CUTOFF": "39.0066957", "Institute Name": "4144 - Shri. Sai Shikshan Sanstha, Nagpur Institute of Technology, Nagpur", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "748", "Rank": "43704", "CUTOFF": "38.2578264", "Institute Name": "2252 - Marathwada Shikshan Prasarak Mandal's Shri Shivaji Institute of Engineering\nand Management Studies, Parbhani", "Exam": "Electrical and Electronics Engineering", "null": ["JEE"]}
{"Sr.No": "749", "Rank": "43868", "CUTOFF": "37.75596", "Institute Name": "6284 - Vidya Pratishthan's Kamalnayan Bajaj Institute of Engineering & Technology,\nBaramati Dist.Pune", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "750", "Rank": "43902", "CUTOFF": "37.3316025", "Institute Name": "5170 - Hindi Seva Mandal's Shri Sant Gadgebaba College of Engineering & Technology,\nBhusawal", "Exam": "Electrical Engineering", "null": ["JEE"]}
{"Sr.No": "751", "Rank": "44161", "CUTOFF": "37.2476388", "Institute Name": "6732 - Dr. D. Y. Patil School OF Engineering, Lohegaon, Pune", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "752", "Rank": "44335", "CUTOFF": "37.1005644", "Institute Name": "1120 - Jawaharlal Darda Institute of Engineering and Technology, Yavatmal", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "753", "Rank": "44368", "CUTOFF": "36.9338201", "Institute Name": "1180 - Sanmati Engineering College, Sawargaon Barde, Washim", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "754", "Rank": "44474", "CUTOFF": "36.7327018", "Institute Name": "6207 - Dr. D. Y. Patil Vidya Pratishthan Society\u00e2\u20ac\u2122s Dr. D. Y. Patil Institute of Technology,\nPimpri, Pune", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "755", "Rank": "44525", "CUTOFF": "36.6680582", "Institute Name": "2138 - Matsyodari Shikshan Sansatha's College of Engineering and Technology, Jalna", "Exam": "Electrical Engineering", "null": ["JEE"]}
{"Sr.No": "756", "Rank": "44633", "CUTOFF": "36.6206866", "Institute Name": "6139 - Progressive Education Society's Modern College of Engineering, Pune", "Exam": "Electrical Engineering", "null": ["JEE"]}
{"Sr.No": "757", "Rank": "44778", "CUTOFF": "35.6771064", "Institute Name": "2134 - Peoples Education Society's College of Engineering, Aurangabad", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "758", "Rank": "44944", "CUTOFF": "35.430986", "Institute Name": "3198 - Konkan Gyanpeeth College of Engineering, Karjat", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "759", "Rank": "44999", "CUTOFF": "35.2427212", "Institute Name": "6267 - Kolhapur Institute of Technology's College of Engineering(Autonomous),\nKolhapur", "Exam": "Civil and Environmental Engineering", "null": ["JEE"]}
{"Sr.No": "760", "Rank": "45334", "CUTOFF": "34.7484478", "Institute Name": "5104 - Shramsadhana Bombay Trust, College of Engineering & Technology, Jalgaon", "Exam": "Electrical Engineering", "null": ["JEE"]}
{"Sr.No": "761", "Rank": "45457", "CUTOFF": "34.4909229", "Institute Name": "2111 - Everest Education Society, Group of Institutions (Integrated Campus), Ohar", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "762", "Rank": "45486", "CUTOFF": "34.4909229", "Institute Name": "6155 - G.H.Raisoni College of Engineering & Management, Wagholi, Pune", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "763", "Rank": "45513", "CUTOFF": "34.4909229", "Institute Name": "5124 - Jagadamba Education Soc. Nashik's S.N.D. College of Engineering & Reserch,\nBabulgaon", "Exam": "Electrical Engineering", "null": ["JEE"]}
{"Sr.No": "764", "Rank": "45605", "CUTOFF": "34.3267209", "Institute Name": "6802 - Dr. D.Y.Patil Institute of Engineering, Management & Reseach, Akurdi, Pune", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "765", "Rank": "45609", "CUTOFF": "34.3267209", "Institute Name": "3471 - New Horizon Institute of Technology & Management, Thane", "Exam": "Mechatronics Engineering", "null": ["JEE"]}
{"Sr.No": "766", "Rank": "45737", "CUTOFF": "33.7253645", "Institute Name": "4195 - Vidharbha Bahu uddeshiya Shikshan Sanstha's Abha Gaikwad \u00e2\u20ac\u201c Patil College of\nEngineering, Nagpur", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "767", "Rank": "45857", "CUTOFF": "33.5809745", "Institute Name": "1116 - Shri Shivaji Education Society's College of Engineering and Technology, Akola", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "768", "Rank": "45867", "CUTOFF": "33.5809745", "Institute Name": "1128 - Prof Ram Meghe College of Engineering and Management, Badnera", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "769", "Rank": "45920", "CUTOFF": "33.5809745", "Institute Name": "6757 - Yashoda Technical Campus, Wadhe, Satara.", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "770", "Rank": "45950", "CUTOFF": "33.2778596", "Institute Name": "6217 - Shri. Balasaheb Mane Shikshan Prasarak Mandal's, Ashokrao Mane Group of\nInstitutions", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "771", "Rank": "46013", "CUTOFF": "33.254018", "Institute Name": "4151 - Vidarbha Bahu-Uddeshiya Shikshan Sanstha's Tulshiramji Gaikwad Patil College\nof Engineering & Technology, Nagpur", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "772", "Rank": "46049", "CUTOFF": "33.254018", "Institute Name": "6315 - Holy-Wood Academy's Sanjeevan Engineering and Technology Institute,\nPanhala", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "773", "Rank": "46078", "CUTOFF": "33.254018", "Institute Name": "2116 - Matoshri Pratishan's Group of Institutions (Integrated Campus), Kupsarwadi ,\nNanded", "Exam": "Electrical Engineering", "null": ["JEE"]}
{"Sr.No": "774", "Rank": "46130", "CUTOFF": "33.0741999", "Institute Name": "6732 - Dr. D. Y. Patil School OF Engineering, Lohegaon, Pune", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "775", "Rank": "46168", "CUTOFF": "33.0320404", "Institute Name": "5161 - Dr. Vithalrao Vikhe Patil College of Engineering, Ahmednagar", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "776", "Rank": "46206", "CUTOFF": "32.7673615", "Institute Name": "2133 - Mahatma Basaweshwar Education Society's College of Engineering, Ambejogai", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "777", "Rank": "46266", "CUTOFF": "32.6665943", "Institute Name": "6644 - Shri. Ambabai Talim Sanstha's Sanjay Bhokare Group of Institutes, Miraj", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "778", "Rank": "46368", "CUTOFF": "32.6278647", "Institute Name": "5164 - P.S.G.V.P. Mandal's D.N. Patel College of Engineering, Shahada, Dist. Nandurbar", "Exam": "Instrumentation Engineering", "null": ["JEE"]}
{"Sr.No": "779", "Rank": "46485", "CUTOFF": "32.3065098", "Institute Name": "6222 - Dattajirao Kadam Technical Education Society's Textile & Engineering Institute,\nIchalkaranji.", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "780", "Rank": "46572", "CUTOFF": "32.0485446", "Institute Name": "5162 - Amrutvahini Sheti & Shikshan Vikas Sanstha's Amrutvahini College of\nEngineering, Sangamner", "Exam": "Electronics Engineering", "null": ["JEE"]}
{"Sr.No": "781", "Rank": "46791", "CUTOFF": "31.7643216", "Institute Name": "6322 - Shree Gajanan Maharaj Shikshan Prasarak Manda'l Sharadchandra Pawar\nCollege of Engineering, Dumbarwadi", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "782", "Rank": "46796", "CUTOFF": "31.7643216", "Institute Name": "5125 - Pravara Rural Education Society's Sir Visvesvaraya Institute of Technology,\nChincholi Dist. Nashik", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "783", "Rank": "46860", "CUTOFF": "31.7643216", "Institute Name": "6275 - Shivnagar Vidya Prasarak Mandal's College of Engineering, Malegaon-Baramati", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "784", "Rank": "46959", "CUTOFF": "31.6266886", "Institute Name": "2127 - Mahatma Gandhi Missions College of Engineering, Hingoli Rd, Nanded.", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "785", "Rank": "46976", "CUTOFF": "31.6266886", "Institute Name": "3206 - S.S.P.M.'s College of Engineering, Kankavli", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "786", "Rank": "46996", "CUTOFF": "31.6266886", "Institute Name": "4139 - Samridhi Sarwajanik Charitable Trust, Jhulelal Institute of Technology, Nagpur", "Exam": "Electrical Engineering", "null": ["JEE"]}
{"Sr.No": "787", "Rank": "47060", "CUTOFF": "31.5668267", "Institute Name": "6220 - Shri Vithal Education and Research Institute's College of Engineering,\nPandharpur", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "788", "Rank": "47102", "CUTOFF": "31.5668267", "Institute Name": "4138 - Jaidev Education Society, J D College of Engineering and Management, Nagpur", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "789", "Rank": "47150", "CUTOFF": "31.5668267", "Institute Name": "6310 - Nutan Maharashtra Vidya Prasarak Mandal, Nutan Maharashtra Institute of\nEngineering &Technology, Talegaon station, Pune", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "790", "Rank": "47468", "CUTOFF": "30.4835081", "Institute Name": "3222 - Haji Jamaluddin Thim Trust's Theem College of Engineering, At. Villege\nBetegaon, Boisar", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "791", "Rank": "47519", "CUTOFF": "30.4342956", "Institute Name": "5160 - Sanjivani Rural Education Society's Sanjivani College of Engineering, Kopargaon", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "792", "Rank": "47663", "CUTOFF": "30.3863939", "Institute Name": "3198 - Konkan Gyanpeeth College of Engineering, Karjat", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "793", "Rank": "47685", "CUTOFF": "30.3863939", "Institute Name": "5106 - Khandesh College Education Society's College Of Engineering And Management,\nJalgaon", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "794", "Rank": "47692", "CUTOFF": "30.3863939", "Institute Name": "5418 - Guru Gobind Singh College of Engineering & Research Centre, Nashik.", "Exam": "Electrical Engineering", "null": ["JEE"]}
{"Sr.No": "795", "Rank": "47695", "CUTOFF": "30.3863939", "Institute Name": "5125 - Pravara Rural Education Society's Sir Visvesvaraya Institute of Technology,\nChincholi Dist. Nashik", "Exam": "Electrical Engineering", "null": ["JEE"]}
{"Sr.No": "796", "Rank": "47764", "CUTOFF": "30.0602099", "Institute Name": "6274 - Pune Vidyarthi Griha's College of Engineering and Technology and G K\nPate(Wani) Institute of Management, Pune", "Exam": "Printing Technology", "null": ["JEE"]}
{"Sr.No": "797", "Rank": "47787", "CUTOFF": "30.0602099", "Institute Name": "1276 - Manav School of Engineering & Technology, Gut No. 1035 Nagpur Surat\nHighway, NH No. 6 Tal.Vyala, Balapur, Akola, 444302", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "798", "Rank": "47818", "CUTOFF": "29.8564768", "Institute Name": "4172 - Anjuman College of Engineering & Technology, Nagpur", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "799", "Rank": "47937", "CUTOFF": "29.2236623", "Institute Name": "4141 - Shriram Gram Vikas Shikshan Sanstha, Vilasrao Deshmukh College of\nEngineering and Technology, Nagpur", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "800", "Rank": "48019", "CUTOFF": "29.1868408", "Institute Name": "5184 - Amruta Vaishnavi Education & Welfare Trust's Shatabdi Institute of Engineering\n& Research, Agaskhind Tal. Sinnar", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "801", "Rank": "48075", "CUTOFF": "29.1226617", "Institute Name": "3423 - Shree L.R. Tiwari College of Engineering, Mira Road, Mumbai", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "802", "Rank": "48118", "CUTOFF": "29.007862", "Institute Name": "5179 - Vishwabharati Academy's College of Engineering, Ahmednagar", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "803", "Rank": "48190", "CUTOFF": "29.0025088", "Institute Name": "6649 - TSSM's Bhivarabai Sawant College of Engineering and Research, Narhe, Pune", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "804", "Rank": "48267", "CUTOFF": "29.0025088", "Institute Name": "3154 - Saraswati Education Society's Saraswati College of Engineering,Kharghar Navi\nMumbai", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "805", "Rank": "48314", "CUTOFF": "28.8380421", "Institute Name": "4136 - Lokmanya Tilak Jankalyan Shikshan Sastha, Priyadarshini J. L. College Of\nEngineering, Nagpur", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "806", "Rank": "48332", "CUTOFF": "28.8380421", "Institute Name": "1121 - Shri Hanuman Vyayam Prasarak Mandals College of Engineering & Technology,\nAmravati", "Exam": "Information Technology", "null": ["JEE"]}
{"Sr.No": "807", "Rank": "48572", "CUTOFF": "27.8187043", "Institute Name": "4188 - Krushi Jivan Vikas Pratishthan, Ballarpur Institute of Technology, Mouza Bamni", "Exam": "Electrical Engineering", "null": ["JEE"]}
{"Sr.No": "808", "Rank": "48665", "CUTOFF": "27.5436573", "Institute Name": "6545 - Samarth Education Trust's Arvind Gavali College Of Engineering Panwalewadi,\nVarye,Satara.", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "809", "Rank": "48810", "CUTOFF": "27.365224", "Institute Name": "4137 - Sir Shantilal Badjate Charitable Trust's S. B. Jain Institute of technology,\nManagement & Research, Nagpur", "Exam": "Electrical Engineering", "null": ["JEE"]}
{"Sr.No": "810", "Rank": "48867", "CUTOFF": "27.365224", "Institute Name": "2111 - Everest Education Society, Group of Institutions (Integrated Campus), Ohar", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "811", "Rank": "48896", "CUTOFF": "27.365224", "Institute Name": "3219 - Koti Vidya Charitable Trust's Smt. Alamuri Ratnamala Institute of Engineering\nand Technology, Sapgaon, Tal. Shahapur", "Exam": "Computer Science and\nEngineering(Artificial Intelligence and\nMachine Learning)", "null": ["JEE"]}
{"Sr.No": "812", "Rank": "48907", "CUTOFF": "27.365224", "Institute Name": "3202 - Rajendra Mane College of Engineering & Technology Ambav Deorukh", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "813", "Rank": "48980", "CUTOFF": "27.1112503", "Institute Name": "6145 - JSPM'S Jaywantrao Sawant College of Engineering,Pune", "Exam": "Electrical Engineering", "null": ["JEE"]}
{"Sr.No": "814", "Rank": "49218", "CUTOFF": "26.2649485", "Institute Name": "6178 - Sinhgad Technical Education Society's Smt. Kashibai Navale College of\nEngineering,Vadgaon,Pune", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "815", "Rank": "49222", "CUTOFF": "26.2649485", "Institute Name": "6298 - Zeal Education Society's Zeal College of Engineering & Reserch, Narhe, Pune", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "816", "Rank": "49243", "CUTOFF": "26.2649485", "Institute Name": "3465 - Ideal Institute of Technology, Wada, Dist.Thane", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "817", "Rank": "49263", "CUTOFF": "26.0849642", "Institute Name": "6187 - Sinhgad Academy of Engineering, Kondhwa (BK) Kondhwa-Saswad Road, Pune", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "818", "Rank": "49320", "CUTOFF": "25.9994074", "Institute Name": "1119 - Paramhansa Ramkrishna Maunibaba Shikshan Santha's , Anuradha Engineering\nCollege, Chikhali", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "819", "Rank": "49363", "CUTOFF": "25.9994074", "Institute Name": "3475 - A. P. Shah Institute of Technology, Thane", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "820", "Rank": "49402", "CUTOFF": "25.8496658", "Institute Name": "6178 - Sinhgad Technical Education Society's Smt. Kashibai Navale College of\nEngineering,Vadgaon,Pune", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "821", "Rank": "49614", "CUTOFF": "25.1627968", "Institute Name": "1105 - Prof. Ram Meghe Institute of Technology & Research, Amravati", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "822", "Rank": "49751", "CUTOFF": "24.8403201", "Institute Name": "6207 - Dr. D. Y. Patil Vidya Pratishthan Society\u00e2\u20ac\u2122s Dr. D. Y. Patil Institute of Technology,\nPimpri, Pune", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "823", "Rank": "49900", "CUTOFF": "24.5298782", "Institute Name": "3351 - Bharat College of Engineering, Kanhor, Badlapur(W)", "Exam": "Computer Science and\nEngineering(Artificial Intelligence and\nMachine Learning)", "null": ["JEE"]}
{"Sr.No": "824", "Rank": "49947", "CUTOFF": "24.495142", "Institute Name": "4163 - Rajiv Gandhi College of Engineering Research & Technology Chandrapur", "Exam": "Electronics and Communication\nEngineering", "null": ["JEE"]}
{"Sr.No": "825", "Rank": "49963", "CUTOFF": "24.4474919", "Institute Name": "6156 - Marathwada Mitra Mandal's College of Engineering, Karvenagar, Pune", "Exam": "Electrical Engineering", "null": ["JEE"]}
{"Sr.No": "826", "Rank": "50027", "CUTOFF": "24.3984801", "Institute Name": "4195 - Vidharbha Bahu uddeshiya Shikshan Sanstha's Abha Gaikwad \u00e2\u20ac\u201c Patil College of\nEngineering, Nagpur", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "827", "Rank": "50040", "CUTOFF": "24.3984801", "Institute Name": "2127 - Mahatma Gandhi Missions College of Engineering, Hingoli Rd, Nanded.", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "828", "Rank": "50077", "CUTOFF": "24.3984801", "Institute Name": "6759 - Shree Ramchandra College of Engineering, Lonikand,Pune", "Exam": "Artificial Intelligence and Data Science", "null": ["JEE"]}
{"Sr.No": "829", "Rank": "50166", "CUTOFF": "23.9631532", "Institute Name": "4190 - M.D. Yergude Memorial Shikshan Prasarak Mandal's Shri Sai College of\nEngineering & Technology, Badravati", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "830", "Rank": "50173", "CUTOFF": "23.9631532", "Institute Name": "3206 - S.S.P.M.'s College of Engineering, Kankavli", "Exam": "Computer Science and\nEngineering(Artificial Intelligence and\nMachine Learning)", "null": ["JEE"]}
{"Sr.No": "831", "Rank": "50175", "CUTOFF": "23.9631532", "Institute Name": "4145 - Wainganga College of Engineering and Management, Dongargaon, Nagpur", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "832", "Rank": "50263", "CUTOFF": "23.7707141", "Institute Name": "4118 - Bapurao Deshmukh College of Engineering, Sevagram", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "833", "Rank": "50313", "CUTOFF": "23.6800095", "Institute Name": "1265 - Mauli Group of Institutions, College of Engineering and Technology, Shegaon.", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "834", "Rank": "50367", "CUTOFF": "23.4733236", "Institute Name": "3439 - Anjuman-I-Islam's Kalsekar Technical Campus, Panvel", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "835", "Rank": "50557", "CUTOFF": "22.9334785", "Institute Name": "3353 - Dilkap Research Institute Of Engineering and Management Studies,\nAt.Mamdapur, Post- Neral, Tal- Karjat, Mumbai", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "836", "Rank": "50620", "CUTOFF": "22.7953366", "Institute Name": "3192 - Smt. Indira Gandhi College of Engineering, Navi Mumbai", "Exam": "Electrical Engineering", "null": ["JEE"]}
{"Sr.No": "837", "Rank": "50639", "CUTOFF": "22.7953366", "Institute Name": "3187 - N.Y.S.S.'s Datta Meghe College of Engineering, Airoli, Navi Mumbai", "Exam": "Electronics Engineering", "null": ["JEE"]}
{"Sr.No": "838", "Rank": "50674", "CUTOFF": "22.7914682", "Institute Name": "6767 - Suman Ramesh Tulsiani Technical Campus: Faculty of Engineering,\nKamshet,Pune.", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "839", "Rank": "50681", "CUTOFF": "22.7914682", "Institute Name": "4613 - Suryodaya College of Engineering & Technology, Nagpur", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "840", "Rank": "50821", "CUTOFF": "22.3648508", "Institute Name": "4163 - Rajiv Gandhi College of Engineering Research & Technology Chandrapur", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "841", "Rank": "50899", "CUTOFF": "22.3648508", "Institute Name": "6277 - Dr. J. J. Magdum Charitable Trust's Dr. J.J. Magdum College of Engineering,\nJaysingpur", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "842", "Rank": "50934", "CUTOFF": "21.7803754", "Institute Name": "5399 - Sanghavi College of Engineering, Varvandi, Nashik.", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "843", "Rank": "50938", "CUTOFF": "21.7803754", "Institute Name": "1268 - Siddhivinayak Technical Campus, School of Engineering & Research Technology,\nShirasgon, Nile", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "844", "Rank": "51064", "CUTOFF": "21.5881766", "Institute Name": "3503 - Indala College Of Engineering, Bapsai Tal.Kalyan", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "845", "Rank": "51273", "CUTOFF": "21.4595949", "Institute Name": "6278 - All India Shri Shivaji Memorial Society's College of Engineering, Pune", "Exam": "Mechanical Engineering[Sandwich]", "null": ["JEE"]}
{"Sr.No": "846", "Rank": "51448", "CUTOFF": "21.2720091", "Institute Name": "1123 - Dr.Rajendra Gode Institute of Technology & Research, Amravati", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "847", "Rank": "51476", "CUTOFF": "21.2197142", "Institute Name": "3436 - B.R. Harne College of Engineering & Technology, Karav, Tal-Ambernath.", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "848", "Rank": "51524", "CUTOFF": "21.1611442", "Institute Name": "5152 - G. H. Raisoni Institute of Business Management,Jalgaon", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "849", "Rank": "51597", "CUTOFF": "20.2468881", "Institute Name": "5107 - Shri Gulabrao Deokar College of Engineering, Jalgaon", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "850", "Rank": "51749", "CUTOFF": "19.8018924", "Institute Name": "4151 - Vidarbha Bahu-Uddeshiya Shikshan Sanstha's Tulshiramji Gaikwad Patil College\nof Engineering & Technology, Nagpur", "Exam": "Bio Technology", "null": ["JEE"]}
{"Sr.No": "851", "Rank": "51800", "CUTOFF": "19.8018924", "Institute Name": "5409 - Rajiv Gandhi College of Engineering, At Post Karjule Hariya Tal.Parner,\nDist.Ahmednagar", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "852", "Rank": "51869", "CUTOFF": "19.2492929", "Institute Name": "4172 - Anjuman College of Engineering & Technology, Nagpur", "Exam": "Electrical Engineering", "null": ["JEE"]}
{"Sr.No": "853", "Rank": "51911", "CUTOFF": "19.2492929", "Institute Name": "4104 - Kavi Kulguru Institute of Technology & Science, Ramtek", "Exam": "Electrical Engineering", "null": ["JEE"]}
{"Sr.No": "854", "Rank": "51956", "CUTOFF": "19.1549917", "Institute Name": "4139 - Samridhi Sarwajanik Charitable Trust, Jhulelal Institute of Technology, Nagpur", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "855", "Rank": "52042", "CUTOFF": "18.9039932", "Institute Name": "6643 - S K N Sinhgad College of Engineering, Korti Tal. Pandharpur Dist Solapur", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "856", "Rank": "52053", "CUTOFF": "18.706025", "Institute Name": "6272 - Dr. D. Y. Patil Pratishthan's D.Y.Patil College of Engineering Akurdi, Pune", "Exam": "Instrumentation Engineering", "null": ["JEE"]}
{"Sr.No": "857", "Rank": "52076", "CUTOFF": "18.6441397", "Institute Name": "1128 - Prof Ram Meghe College of Engineering and Management, Badnera", "Exam": "Electrical Engineering", "null": ["JEE"]}
{"Sr.No": "858", "Rank": "52095", "CUTOFF": "18.6441397", "Institute Name": "6288 - Bharati Vidyapeeth's College of Engineering, Kolhapur", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "859", "Rank": "52125", "CUTOFF": "18.5776005", "Institute Name": "1120 - Jawaharlal Darda Institute of Engineering and Technology, Yavatmal", "Exam": "Textile Engineering / Technology", "null": ["JEE"]}
{"Sr.No": "860", "Rank": "52147", "CUTOFF": "18.46003", "Institute Name": "1120 - Jawaharlal Darda Institute of Engineering and Technology, Yavatmal", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "861", "Rank": "52154", "CUTOFF": "18.46003", "Institute Name": "4179 - Lokmanya Tilak Jankalyan Shiksan Sanstha, Priyadarshini Indira Gandhi College\nof Engineering, Nagpur", "Exam": "Electrical Engineering", "null": ["JEE"]}
{"Sr.No": "862", "Rank": "52354", "CUTOFF": "18.1818182", "Institute Name": "4136 - Lokmanya Tilak Jankalyan Shikshan Sastha, Priyadarshini J. L. College Of\nEngineering, Nagpur", "Exam": "Electrical Engineering", "null": ["JEE"]}
{"Sr.No": "863", "Rank": "52423", "CUTOFF": "17.5410548", "Institute Name": "5109 - Sandip Foundation, Sandip Institute of Technology and Research Centre,\nMahiravani, Nashik", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "864", "Rank": "52738", "CUTOFF": "16.2968272", "Institute Name": "5161 - Dr. Vithalrao Vikhe Patil College of Engineering, Ahmednagar", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "865", "Rank": "52747", "CUTOFF": "16.2968272", "Institute Name": "4135 - Amar Seva Mandal's Shree Govindrao Vanjari College of Engineering &\nTechnology, Nagpur", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "866", "Rank": "52754", "CUTOFF": "16.2220645", "Institute Name": "6283 - Annasaheb Dange College of Engineering and Technology, Ashta, Sangli", "Exam": "Electrical Engineering", "null": ["JEE"]}
{"Sr.No": "867", "Rank": "52877", "CUTOFF": "16.0565984", "Institute Name": "3219 - Koti Vidya Charitable Trust's Smt. Alamuri Ratnamala Institute of Engineering\nand Technology, Sapgaon, Tal. Shahapur", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "868", "Rank": "52897", "CUTOFF": "16.0565984", "Institute Name": "3146 - Jawahar Education Society's Annasaheb Chudaman Patil College of\nEngineering,Kharghar, Navi Mumbai", "Exam": "Artificial Intelligence and Data Science", "null": ["JEE"]}
{"Sr.No": "869", "Rank": "52903", "CUTOFF": "16.0565984", "Institute Name": "3175 - M.G.M.'s College of Engineering and Technology, Kamothe, Navi Mumbai", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "870", "Rank": "52912", "CUTOFF": "16.0440633", "Institute Name": "1116 - Shri Shivaji Education Society's College of Engineering and Technology, Akola", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "871", "Rank": "53029", "CUTOFF": "15.5689793", "Institute Name": "1107 - P. R. Pote (Patil) Education & Welfare Trust's Group of Institution(Integrated\nCampus), Amravati", "Exam": "Electrical Engineering", "null": ["JEE"]}
{"Sr.No": "872", "Rank": "53090", "CUTOFF": "15.2992116", "Institute Name": "5162 - Amrutvahini Sheti & Shikshan Vikas Sanstha's Amrutvahini College of\nEngineering, Sangamner", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "873", "Rank": "53128", "CUTOFF": "15.1398735", "Institute Name": "5151 - MET Bhujbal Knowledge City MET League's Engineering College, Adgaon,\nNashik.", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "874", "Rank": "53218", "CUTOFF": "14.6569278", "Institute Name": "5164 - P.S.G.V.P. Mandal's D.N. Patel College of Engineering, Shahada, Dist. Nandurbar", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "875", "Rank": "53383", "CUTOFF": "14.3059295", "Institute Name": "6206 - Pune District Education Association's College of Engineering, Pune", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "876", "Rank": "53439", "CUTOFF": "14.226675", "Institute Name": "1123 - Dr.Rajendra Gode Institute of Technology & Research, Amravati", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "877", "Rank": "53451", "CUTOFF": "14.2187036", "Institute Name": "4171 - Lokmanya Tilak Jankalyan Shikshan Sanstha's , Priyadarshini Institute of\nEngineering and Technology, Nagpur", "Exam": "Electrical Engineering", "null": ["JEE"]}
{"Sr.No": "878", "Rank": "53474", "CUTOFF": "14.2187036", "Institute Name": "4143 - Sanmarg Shikshan Sanstha, Mandukarrao Pandav College of Engineering,\nBhandara", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "879", "Rank": "53484", "CUTOFF": "14.2187036", "Institute Name": "6303 - Dr. Ashok Gujar Technical Institute's Dr. Daulatrao Aher College of Engineering,\nKarad", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "880", "Rank": "53549", "CUTOFF": "13.7370702", "Institute Name": "5303 - Hon. Shri. Babanrao Pachpute Vichardhara Trust, Group of Institutions\n(Integrated Campus)-Parikrama, Kashti Shrigondha,", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "881", "Rank": "53584", "CUTOFF": "13.7370702", "Institute Name": "2111 - Everest Education Society, Group of Institutions (Integrated Campus), Ohar", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "882", "Rank": "53587", "CUTOFF": "13.7370702", "Institute Name": "4193 - K.D.M. Education Society, Vidharbha Institute of Technology,Umred Road\n,Nagpur", "Exam": "Electronics and Communication\nEngineering", "null": ["JEE"]}
{"Sr.No": "883", "Rank": "53638", "CUTOFF": "13.4009735", "Institute Name": "1116 - Shri Shivaji Education Society's College of Engineering and Technology, Akola", "Exam": "Chemical Engineering", "null": ["JEE"]}
{"Sr.No": "884", "Rank": "53645", "CUTOFF": "13.4009735", "Institute Name": "6628 - Dattakala Group Of Institutions, Swami - Chincholi Tal. Daund Dist. Pune", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "885", "Rank": "53669", "CUTOFF": "13.4009735", "Institute Name": "6545 - Samarth Education Trust's Arvind Gavali College Of Engineering Panwalewadi,\nVarye,Satara.", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "886", "Rank": "53670", "CUTOFF": "13.4009735", "Institute Name": "5103 - Shri Shivaji Vidya Prasarak Sanstha's Late Bapusaheb Shivaji Rao Deore College\nof Engineering,Dhule", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "887", "Rank": "53706", "CUTOFF": "13.3733173", "Institute Name": "6219 - KSGBS's Bharat- Ratna Indira Gandhi College of Engineering, Kegaon, Solapur", "Exam": "Bio Medical Engineering", "null": ["JEE"]}
{"Sr.No": "888", "Rank": "53896", "CUTOFF": "12.2848547", "Institute Name": "6834 - Dr.D.Y.Patil College Of Engineering & Innovation,Talegaon", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "889", "Rank": "53991", "CUTOFF": "11.8326776", "Institute Name": "1125 - Dwarka Bahu Uddeshiya Gramin Vikas Foundation, Rajarshri Shahu College of\nEngineering, Buldhana", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "890", "Rank": "54033", "CUTOFF": "11.7399784", "Institute Name": "2130 - Terna Public Charitable Trust's College of Engineering, Osmanabad", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "891", "Rank": "54035", "CUTOFF": "11.7399784", "Institute Name": "4193 - K.D.M. Education Society, Vidharbha Institute of Technology,Umred Road\n,Nagpur", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "892", "Rank": "54089", "CUTOFF": "11.494117", "Institute Name": "6122 - TSSMS's Pd. Vasantdada Patil Institute of Technology, Bavdhan, Pune", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "893", "Rank": "54091", "CUTOFF": "11.4550268", "Institute Name": "6139 - Progressive Education Society's Modern College of Engineering, Pune", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "894", "Rank": "54128", "CUTOFF": "11.2974404", "Institute Name": "4188 - Krushi Jivan Vikas Pratishthan, Ballarpur Institute of Technology, Mouza Bamni", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "895", "Rank": "54153", "CUTOFF": "10.960427", "Institute Name": "1130 - Vision Buldhana Educational & Welfare Society's Pankaj Laddhad Institute of\nTechnology & Management Studies, Yelgaon", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "896", "Rank": "54188", "CUTOFF": "10.960427", "Institute Name": "5390 - K.V.N. Naik S. P. Sansth's Loknete Gopinathji Munde Institute of Engineering\nEducation & Research, Nashik.", "Exam": "Artificial Intelligence and Machine\nLearning", "null": ["JEE"]}
{"Sr.No": "897", "Rank": "54248", "CUTOFF": "10.9183886", "Institute Name": "6317 - Sharad Institute of Technology College of Engineering, Yadrav(Ichalkaranji)", "Exam": "Mechatronics Engineering", "null": ["JEE"]}
{"Sr.No": "898", "Rank": "54283", "CUTOFF": "10.7247877", "Institute Name": "5181 - Gokhale Education Society's, R.H. Sapat College of Engineering, Management\nStudies and Research, Nashik", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "899", "Rank": "54309", "CUTOFF": "10.6967535", "Institute Name": "3146 - Jawahar Education Society's Annasaheb Chudaman Patil College of\nEngineering,Kharghar, Navi Mumbai", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "900", "Rank": "54353", "CUTOFF": "10.5202225", "Institute Name": "2129 - M.S. Bidve Engineering College, Latur", "Exam": "Electronics Engineering", "null": ["JEE"]}
{"Sr.No": "901", "Rank": "54383", "CUTOFF": "10.4231617", "Institute Name": "4139 - Samridhi Sarwajanik Charitable Trust, Jhulelal Institute of Technology, Nagpur", "Exam": "Electronics Engineering", "null": ["JEE"]}
{"Sr.No": "902", "Rank": "54501", "CUTOFF": "9.7274695", "Institute Name": "1276 - Manav School of Engineering & Technology, Gut No. 1035 Nagpur Surat\nHighway, NH No. 6 Tal.Vyala, Balapur, Akola, 444302", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "903", "Rank": "54532", "CUTOFF": "9.5258113", "Institute Name": "2112 - Shree Yash Pratishthan, Shreeyash College of Engineering and Technology,\nAurangabad", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "904", "Rank": "54539", "CUTOFF": "9.2436574", "Institute Name": "4171 - Lokmanya Tilak Jankalyan Shikshan Sanstha's , Priyadarshini Institute of\nEngineering and Technology, Nagpur", "Exam": "Electronics and Communication\nEngineering", "null": ["JEE"]}
{"Sr.No": "905", "Rank": "54563", "CUTOFF": "9.1547718", "Institute Name": "4304 - Cummins College of Engineering For Women, Sukhali (Gupchup), Tal. Hingna\nHingna Nagpur", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "906", "Rank": "54632", "CUTOFF": "8.9638987", "Institute Name": "4118 - Bapurao Deshmukh College of Engineering, Sevagram", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "907", "Rank": "54638", "CUTOFF": "8.9581697", "Institute Name": "3460 - Universal College of Engineering,Kaman Dist. Palghar", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "908", "Rank": "54739", "CUTOFF": "8.3658708", "Institute Name": "4188 - Krushi Jivan Vikas Pratishthan, Ballarpur Institute of Technology, Mouza Bamni", "Exam": "Mining Engineering", "null": ["JEE"]}
{"Sr.No": "909", "Rank": "54810", "CUTOFF": "8.1375507", "Institute Name": "4123 - Lokmanya Tilak Jankalyan Shikshan Sanstha, Priyadarshani College of\nEngineering, Nagpur", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "910", "Rank": "54854", "CUTOFF": "8.0254644", "Institute Name": "6275 - Shivnagar Vidya Prasarak Mandal's College of Engineering, Malegaon-Baramati", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "911", "Rank": "54950", "CUTOFF": "7.4849748", "Institute Name": "3175 - M.G.M.'s College of Engineering and Technology, Kamothe, Navi Mumbai", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "912", "Rank": "55060", "CUTOFF": "6.8282551", "Institute Name": "5151 - MET Bhujbal Knowledge City MET League's Engineering College, Adgaon,\nNashik.", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "913", "Rank": "55072", "CUTOFF": "6.7704666", "Institute Name": "4177 - Priyadarshini Bhagwati College of Engineering, Harpur Nagar, Umred\nRoad,Nagpur", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "914", "Rank": "55133", "CUTOFF": "6.5101056", "Institute Name": "6185 - Sinhagad Institute of Technology, Lonavala", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "915", "Rank": "55227", "CUTOFF": "5.8147644", "Institute Name": "4188 - Krushi Jivan Vikas Pratishthan, Ballarpur Institute of Technology, Mouza Bamni", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "916", "Rank": "55235", "CUTOFF": "5.8147644", "Institute Name": "6780 - D.Y.Patil Education Society's,D.Y.Patil Technical Campus, Faculty of Engineering\n& Faculty of Management,Talsande,Kolhapur.", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "917", "Rank": "55282", "CUTOFF": "5.607096", "Institute Name": "6769 - Rasiklal M. Dhariwal Sinhgad Technical Institutes Campus, Warje, Pune.", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "918", "Rank": "55323", "CUTOFF": "5.4054919", "Institute Name": "6176 - G. H.Raisoni Institute of Engineering and Technology, Wagholi, Pune", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "919", "Rank": "55354", "CUTOFF": "5.0358728", "Institute Name": "5164 - P.S.G.V.P. Mandal's D.N. Patel College of Engineering, Shahada, Dist. Nandurbar", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "920", "Rank": "55397", "CUTOFF": "4.6029236", "Institute Name": "1121 - Shri Hanuman Vyayam Prasarak Mandals College of Engineering & Technology,\nAmravati", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "921", "Rank": "55440", "CUTOFF": "4.3637586", "Institute Name": "4145 - Wainganga College of Engineering and Management, Dongargaon, Nagpur", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "922", "Rank": "55453", "CUTOFF": "4.362867", "Institute Name": "6293 - Kai Amdar Bramhadevdada Mane Shikshan & Samajik Prathistan's\nBramhadevdada Mane Institute of Technology, Solapur", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "923", "Rank": "55476", "CUTOFF": "4.3435656", "Institute Name": "5411 - Maulana Mukhtar Ahmad Nadvi Technical Campus, Malegaon.", "Exam": "Electronics and Telecommunication\nEngg", "null": ["JEE"]}
{"Sr.No": "924", "Rank": "55507", "CUTOFF": "3.9555372", "Institute Name": "4151 - Vidarbha Bahu-Uddeshiya Shikshan Sanstha's Tulshiramji Gaikwad Patil College\nof Engineering & Technology, Nagpur", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "925", "Rank": "55517", "CUTOFF": "3.9552275", "Institute Name": "4304 - Cummins College of Engineering For Women, Sukhali (Gupchup), Tal. Hingna\nHingna Nagpur", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "926", "Rank": "55520", "CUTOFF": "3.9231374", "Institute Name": "6219 - KSGBS's Bharat- Ratna Indira Gandhi College of Engineering, Kegaon, Solapur", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "927", "Rank": "55561", "CUTOFF": "3.6439701", "Institute Name": "6317 - Sharad Institute of Technology College of Engineering, Yadrav(Ichalkaranji)", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "928", "Rank": "55571", "CUTOFF": "3.6439701", "Institute Name": "5106 - Khandesh College Education Society's College Of Engineering And Management,\nJalgaon", "Exam": "Electrical Engineering", "null": ["JEE"]}
{"Sr.No": "929", "Rank": "55600", "CUTOFF": "3.392846", "Institute Name": "4195 - Vidharbha Bahu uddeshiya Shikshan Sanstha's Abha Gaikwad \u00e2\u20ac\u201c Patil College of\nEngineering, Nagpur", "Exam": "Electrical Engineering", "null": ["JEE"]}
{"Sr.No": "930", "Rank": "55602", "CUTOFF": "3.392846", "Institute Name": "6185 - Sinhagad Institute of Technology, Lonavala", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "931", "Rank": "55603", "CUTOFF": "3.392846", "Institute Name": "6268 - Tatyasaheb Kore Institute of Engineering and Technology, Warananagar", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "932", "Rank": "55682", "CUTOFF": "2.6045966", "Institute Name": "6632 - Navsahyadri Education Society's Group of Institutions", "Exam": "Computer Engineering", "null": ["JEE"]}
{"Sr.No": "933", "Rank": "55735", "CUTOFF": "2.1034088", "Institute Name": "6319 - Shahajirao Patil Vikas Pratishthan, S.B.Patil College of Engineering, Vangali, Tal.\nIndapur", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "934", "Rank": "55737", "CUTOFF": "2.1034088", "Institute Name": "1126 - Shri. Dadasaheb Gawai Charitable Trust's Dr. Smt. Kamaltai Gawai Institute of\nEngineering & Technology, Darapur, Amravati", "Exam": "Computer Science and Engineering", "null": ["JEE"]}
{"Sr.No": "935", "Rank": "55744", "CUTOFF": "2.031587", "Institute Name": "1180 - Sanmati Engineering College, Sawargaon Barde, Washim", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "936", "Rank": "55760", "CUTOFF": "1.8771153", "Institute Name": "1130 - Vision Buldhana Educational & Welfare Society's Pankaj Laddhad Institute of\nTechnology & Management Studies, Yelgaon", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "937", "Rank": "55771", "CUTOFF": "1.8353047", "Institute Name": "4285 - V M Institute of Engineering and Technology, Dongargaon, Nagpur", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "938", "Rank": "55782", "CUTOFF": "1.7200626", "Institute Name": "1130 - Vision Buldhana Educational & Welfare Society's Pankaj Laddhad Institute of\nTechnology & Management Studies, Yelgaon", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "939", "Rank": "55861", "CUTOFF": "1.0063173", "Institute Name": "4172 - Anjuman College of Engineering & Technology, Nagpur", "Exam": "Mechanical Engineering", "null": ["JEE"]}
{"Sr.No": "940", "Rank": "55882", "CUTOFF": "0.776475", "Institute Name": "1276 - Manav School of Engineering & Technology, Gut No. 1035 Nagpur Surat\nHighway, NH No. 6 Tal.Vyala, Balapur, Akola, 444302", "Exam": "Civil Engineering", "null": ["JEE"]}
{"Sr.No": "941", "Rank": "56584", "CUTOFF": "95.5178877", "Institute Name": "5418 - Guru Gobind Singh College of Engineering & Research Centre, Nashik.", "Exam": "Mechanical Engineering", "null": ["MHT-CET"]}
{"Sr.No": "942", "Rank": "57702", "CUTOFF": "91.4432402", "Institute Name": "3218 - Aldel Education Trust's St. John College of Engineering & Management, Vevoor,\nPalghar", "Exam": "Electronics and Telecommunication\nEngg", "null": ["MHT-CET"]}
{"Sr.No": "943", "Rank": "58005", "CUTOFF": "90.5079656", "Institute Name": "6179 - Indira College of Engineering & Management, Pune", "Exam": "Mechanical Engineering", "null": ["MHT-CET"]}
{"Sr.No": "944", "Rank": "58022", "CUTOFF": "90.4789478", "Institute Name": "3222 - Haji Jamaluddin Thim Trust's Theem College of Engineering, At. Villege\nBetegaon, Boisar", "Exam": "Automobile Engineering", "null": ["MHT-CET"]}
{"Sr.No": "945", "Rank": "59371", "CUTOFF": "87.0496161", "Institute Name": "5181 - Gokhale Education Society's, R.H. Sapat College of Engineering, Management\nStudies and Research, Nashik", "Exam": "Electronics and Telecommunication\nEngg", "null": ["MHT-CET"]}
{"Sr.No": "946", "Rank": "59706", "CUTOFF": "86.2580042", "Institute Name": "3222 - Haji Jamaluddin Thim Trust's Theem College of Engineering, At. Villege\nBetegaon, Boisar", "Exam": "Computer Science and\nEngineering(Artificial Intelligence and\nMachine Learning)", "null": ["MHT-CET"]}
{"Sr.No": "947", "Rank": "60800", "CUTOFF": "83.9184061", "Institute Name": "2516 - International Centre Of Excellence In Engineering and Management (ICEEM)", "Exam": "Computer Science and Engineering", "null": ["MHT-CET"]}
{"Sr.No": "948", "Rank": "60808", "CUTOFF": "83.9184061", "Institute Name": "3200 - Hope Foundation and research center's Finolex Academy of Management and\nTechnology, Ratnagiri", "Exam": "Chemical Engineering", "null": ["MHT-CET"]}
{"Sr.No": "949", "Rank": "60898", "CUTOFF": "83.7542269", "Institute Name": "3460 - Universal College of Engineering,Kaman Dist. Palghar", "Exam": "Artificial Intelligence and Machine\nLearning", "null": ["MHT-CET"]}
{"Sr.No": "950", "Rank": "62051", "CUTOFF": "81.3053751", "Institute Name": "5152 - G. H. Raisoni Institute of Business Management,Jalgaon", "Exam": "Electrical Engineering", "null": ["MHT-CET"]}
{"Sr.No": "951", "Rank": "62184", "CUTOFF": "81.016291", "Institute Name": "5108 - Maratha Vidya Prasarak Samaj's Karmaveer Adv. Baburao Ganpatrao Thakare\nCollege Of Engineering, Nashik", "Exam": "Mechanical Engineering", "null": ["MHT-CET"]}
{"Sr.No": "952", "Rank": "62291", "CUTOFF": "80.818283", "Institute Name": "3467 - Vishwaniketan's Institute of Management Entrepreneurship and Engineering\nTechnology(i MEET), Khalapur Dist Raigad", "Exam": "Computer Science and\nEngineering(Artificial Intelligence and\nMachine Learning)", "null": ["MHT-CET"]}
{"Sr.No": "953", "Rank": "63196", "CUTOFF": "78.9697101", "Institute Name": "6206 - Pune District Education Association's College of Engineering, Pune", "Exam": "Instrumentation Engineering", "null": ["MHT-CET"]}
{"Sr.No": "954", "Rank": "63431", "CUTOFF": "78.4854138", "Institute Name": "3477 - Chhartrapati Shivaji Maharaj Institute of Technology, Shedung, Panvel", "Exam": "Mechanical Engineering", "null": ["MHT-CET"]}
{"Sr.No": "955", "Rank": "63483", "CUTOFF": "78.3911539", "Institute Name": "6324 - Rajgad Dnyanpeeth's Technical Campus,Dhangwadi, Bhor", "Exam": "Computer Engineering", "null": ["MHT-CET"]}
{"Sr.No": "956", "Rank": "63497", "CUTOFF": "78.3206831", "Institute Name": "6311 - Jayawant Shikshan Prasarak Mandal, Bhivarabai Sawant Institute of Technology\n& Research, Wagholi", "Exam": "Electrical Engineering", "null": ["MHT-CET"]}
{"Sr.No": "957", "Rank": "65589", "CUTOFF": "74.3378698", "Institute Name": "3175 - M.G.M.'s College of Engineering and Technology, Kamothe, Navi Mumbai", "Exam": "Electrical Engineering", "null": ["MHT-CET"]}
{"Sr.No": "958", "Rank": "65969", "CUTOFF": "73.5329037", "Institute Name": "4147 - K.D.K. College of Engineering, Nagpur", "Exam": "Mechanical Engineering", "null": ["MHT-CET"]}
{"Sr.No": "959", "Rank": "66445", "CUTOFF": "72.577622", "Institute Name": "3154 - Saraswati Education Society's Saraswati College of Engineering,Kharghar Navi\nMumbai", "Exam": "Civil Engineering", "null": ["MHT-CET"]}
{"Sr.No": "960", "Rank": "66726", "CUTOFF": "71.9509242", "Institute Name": "2522 - STMEI's Sandipani Technical Campus-Faculty of Engineering, Latur.", "Exam": "Computer Engineering", "null": ["MHT-CET"]}
{"Sr.No": "961", "Rank": "66898", "CUTOFF": "71.6974982", "Institute Name": "6183 - Al-Ameen Educational and Medical Foundation, College of Engineering,\nKoregaon, Bhima", "Exam": "Electronics and Telecommunication\nEngg", "null": ["MHT-CET"]}
{"Sr.No": "", "Rank": "", "CUTOFF": "0", "Institute Name": "", "Exam": "", "null": [""]}
{"Sr.No": "962", "Rank": "66912", "CUTOFF": "71.6974982", "Institute Name": "4172 - Anjuman College of Engineering & Technology, Nagpur", "Exam": "Civil Engineering", "null": ["MHT-CET"]}
{"Sr.No": "963", "Rank": "67275", "CUTOFF": "71.0406477", "Institute Name": "3206 - S.S.P.M.'s College of Engineering, Kankavli", "Exam": "Electrical Engineering", "null": ["MHT-CET"]}
{"Sr.No": "964", "Rank": "67508", "CUTOFF": "70.5748291", "Institute Name": "6419 - Nutan College of Engineering and Research, Talegaon Dabhade Tal. Maval, Pune", "Exam": "Electronics and Communication\nEngineering", "null": ["MHT-CET"]}
{"Sr.No": "965", "Rank": "69286", "CUTOFF": "66.9447726", "Institute Name": "6419 - Nutan College of Engineering and Research, Talegaon Dabhade Tal. Maval, Pune", "Exam": "Mechanical Engineering", "null": ["MHT-CET"]}
{"Sr.No": "966", "Rank": "69458", "CUTOFF": "66.7530038", "Institute Name": "3196 - Lokmanya Tilak College of Engineering, Kopar Khairane, Navi Mumbai", "Exam": "Mechanical Engineering", "null": ["MHT-CET"]}
{"Sr.No": "967", "Rank": "69625", "CUTOFF": "66.5276503", "Institute Name": "3439 - Anjuman-I-Islam's Kalsekar Technical Campus, Panvel", "Exam": "Electrical Engineering", "null": ["MHT-CET"]}
{"Sr.No": "968", "Rank": "69641", "CUTOFF": "66.5204925", "Institute Name": "6796 - Bharati Vidyapeeth's College of Engineering,Lavale, Pune", "Exam": "Mechanical Engineering", "null": ["MHT-CET"]}
{"Sr.No": "969", "Rank": "69960", "CUTOFF": "66.0447761", "Institute Name": "6878 - Dr. A. D. Shinde College Of Engineering, Tal.Gadhinglaj, Kolhapur", "Exam": "Civil Engineering", "null": ["MHT-CET"]}
{"Sr.No": "970", "Rank": "70141", "CUTOFF": "65.276137", "Institute Name": "1105 - Prof. Ram Meghe Institute of Technology & Research, Amravati", "Exam": "Electronics and Telecommunication\nEngg", "null": ["MHT-CET"]}
{"Sr.No": "971", "Rank": "70260", "CUTOFF": "65.0496408", "Institute Name": "6635 - Samarth Group of Institutions, Bangarwadi, Post Belhe Tal. Junnar Dist. Pune", "Exam": "Computer Engineering", "null": ["MHT-CET"]}
{"Sr.No": "972", "Rank": "70452", "CUTOFF": "64.9940968", "Institute Name": "3423 - Shree L.R. Tiwari College of Engineering, Mira Road, Mumbai", "Exam": "Mechanical Engineering", "null": ["MHT-CET"]}
{"Sr.No": "973", "Rank": "70794", "CUTOFF": "64.0086029", "Institute Name": "3467 - Vishwaniketan's Institute of Management Entrepreneurship and Engineering\nTechnology(i MEET), Khalapur Dist Raigad", "Exam": "Mechanical Engineering", "null": ["MHT-CET"]}
{"Sr.No": "974", "Rank": "70800", "CUTOFF": "64.0086029", "Institute Name": "3224 - Leela Education Society, G.V. Acharya Institute of Engineering and Technology,\nShelu, Karjat", "Exam": "Computer Engineering", "null": ["MHT-CET"]}
{"Sr.No": "975", "Rank": "71442", "CUTOFF": "62.8864315", "Institute Name": "6625 - Universal College of Engineering & Research, Sasewadi", "Exam": "Mechanical Engineering", "null": ["MHT-CET"]}
{"Sr.No": "976", "Rank": "71669", "CUTOFF": "62.4154511", "Institute Name": "3445 - Vishvatmak Jangli Maharaj Ashram Trust's Vishvatmak Om Gurudev College of\nEngineering, Mohili-Aghai, Shahpur.", "Exam": "Computer Science and Technology", "null": ["MHT-CET"]}
{"Sr.No": "977", "Rank": "71823", "CUTOFF": "61.8218588", "Institute Name": "3190 - Terna Engineering College, Nerul, Navi Mumbai", "Exam": "Mechatronics Engineering", "null": ["MHT-CET"]}
{"Sr.No": "978", "Rank": "72509", "CUTOFF": "60.5737104", "Institute Name": "3212 - WATUMULL INSTITUTE OF ELECTRONICS ENGINEERING & COMPUTER\nTECHNOLOGY, ULHASNAGAR", "Exam": "Electronics and Telecommunication\nEngg", "null": ["MHT-CET"]}
{"Sr.No": "979", "Rank": "72842", "CUTOFF": "59.6157997", "Institute Name": "6634 - KJEI's Trinity Academy of Engineering, Yewalewadi, Pune", "Exam": "Electronics and Telecommunication\nEngg", "null": ["MHT-CET"]}
{"Sr.No": "980", "Rank": "73825", "CUTOFF": "57.9531237", "Institute Name": "1119 - Paramhansa Ramkrishna Maunibaba Shikshan Santha's , Anuradha Engineering\nCollege, Chikhali", "Exam": "Chemical Engineering", "null": ["MHT-CET"]}
{"Sr.No": "981", "Rank": "74029", "CUTOFF": "57.1344296", "Institute Name": "6310 - Nutan Maharashtra Vidya Prasarak Mandal, Nutan Maharashtra Institute of\nEngineering &Technology, Talegaon station, Pune", "Exam": "Mechanical Engineering", "null": ["MHT-CET"]}
{"Sr.No": "982", "Rank": "74163", "CUTOFF": "57.0105054", "Institute Name": "6319 - Shahajirao Patil Vikas Pratishthan, S.B.Patil College of Engineering, Vangali, Tal.\nIndapur", "Exam": "Computer Engineering", "null": ["MHT-CET"]}
{"Sr.No": "983", "Rank": "74546", "CUTOFF": "56.2223276", "Institute Name": "3439 - Anjuman-I-Islam's Kalsekar Technical Campus, Panvel", "Exam": "Mechanical Engineering", "null": ["MHT-CET"]}
{"Sr.No": "984", "Rank": "74720", "CUTOFF": "55.7162386", "Institute Name": "6284 - Vidya Pratishthan's Kamalnayan Bajaj Institute of Engineering & Technology,\nBaramati Dist.Pune", "Exam": "Electrical Engineering", "null": ["MHT-CET"]}
{"Sr.No": "985", "Rank": "75271", "CUTOFF": "54.5240027", "Institute Name": "3210 - Excelsior Education Society's K.C. College of Engineering and Management\nStudies and Research, Kopri, Thane (E)", "Exam": "Electronics and Telecommunication\nEngg", "null": ["MHT-CET"]}
{"Sr.No": "986", "Rank": "75510", "CUTOFF": "54.1568222", "Institute Name": "3190 - Terna Engineering College, Nerul, Navi Mumbai", "Exam": "Electronics Engineering", "null": ["MHT-CET"]}
{"Sr.No": "987", "Rank": "75568", "CUTOFF": "54.1113194", "Institute Name": "3221 - Late Shri. Vishnu Waman Thakur Charitable Trust, Viva Institute of Technology,\nShirgaon", "Exam": "Civil Engineering", "null": ["MHT-CET"]}
{"Sr.No": "988", "Rank": "76031", "CUTOFF": "52.9257123", "Institute Name": "6160 - JSPM's Imperial College of Engineering and Research, Wagholi, Pune", "Exam": "Mechanical Engineering", "null": ["MHT-CET"]}
{"Sr.No": "989", "Rank": "76033", "CUTOFF": "52.9257123", "Institute Name": "2573 - Gramin College of Engineering, Vishnupuri, Nanded", "Exam": "Computer Engineering", "null": ["MHT-CET"]}
{"Sr.No": "990", "Rank": "76122", "CUTOFF": "52.7484058", "Institute Name": "6220 - Shri Vithal Education and Research Institute's College of Engineering,\nPandharpur", "Exam": "Electrical Engineering", "null": ["MHT-CET"]}
{"Sr.No": "991", "Rank": "76530", "CUTOFF": "52.0094388", "Institute Name": "1117 - Janata Shikshan Prasarak Mandal\u00e2\u20ac\u2122s Babasaheb Naik College Of Engineering,\nPusad", "Exam": "Computer Science and Engineering", "null": ["MHT-CET"]}
{"Sr.No": "992", "Rank": "76687", "CUTOFF": "51.6391022", "Institute Name": "2250 - Aurangabad College of Engineering, Naygaon Savangi, Aurangabad", "Exam": "Electronics and Telecommunication\nEngg", "null": ["MHT-CET"]}
{"Sr.No": "993", "Rank": "76690", "CUTOFF": "51.6391022", "Institute Name": "3223 - Mahatma Education Society's Pillai HOC College of Engineering & Technology,\nTal. Khalapur. Dist. Raigad", "Exam": "Electronics and Telecommunication\nEngg", "null": ["MHT-CET"]}
{"Sr.No": "994", "Rank": "76833", "CUTOFF": "50.9892798", "Institute Name": "6122 - TSSMS's Pd. Vasantdada Patil Institute of Technology, Bavdhan, Pune", "Exam": "Civil Engineering", "null": ["MHT-CET"]}
{"Sr.No": "995", "Rank": "77659", "CUTOFF": "49.4727527", "Institute Name": "4135 - Amar Seva Mandal's Shree Govindrao Vanjari College of Engineering &\nTechnology, Nagpur", "Exam": "Civil Engineering", "null": ["MHT-CET"]}
{"Sr.No": "996", "Rank": "77699", "CUTOFF": "49.4727527", "Institute Name": "2254 - Vilasrao Deshmukh Foundation Group of Institutions, Latur", "Exam": "Computer Engineering", "null": ["MHT-CET"]}
{"Sr.No": "997", "Rank": "77743", "CUTOFF": "49.4727527", "Institute Name": "5139 - Pravara Rural College of Engineering, Loni, Pravaranagar, Ahmednagar.", "Exam": "Electronics and Telecommunication\nEngg", "null": ["MHT-CET"]}
{"Sr.No": "998", "Rank": "77986", "CUTOFF": "48.4998921", "Institute Name": "6177 - Sinhgad College of Engineering, Vadgaon (BK), Pune", "Exam": "Mechanical Engineering", "null": ["MHT-CET"]}