-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
925 lines (900 loc) · 78.3 KB
/
index.html
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
<!DOCTYPE html>
<html lang='en'>
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-Y4BX3G368N"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-Y4BX3G368N');
</script>
<meta name='google-site-verification' content='xlUTCUMRvEa8sgN7C4hDnxgR_f2yoeUouYWNG6qlhv4' />
<meta charset='UTF-8'>
<!-- search engine look -->
<title>JoSAA Cutoffs</title>
<meta name='description' content='2023 JoSAA Cutoffs: Round 6 Opening and Closing Rank'>
<!-- OG protocol -->
<meta property='og:title' content='JoSAA Cutoffs'>
<meta property='og:description' content='Look up JoSAA cutoffs based on your rank and category 🚀'>
<meta property='og:image' content='https://sbrjt.github.io/josaa-cutoffs/favicon.png'>
<!-- json schema -->
<script type='application/ld+json'>
{
"@context": "https://schema.org",
"@type": "WebSite",
"name": "JoSAA Cutoffs",
"description": "A website to look up closing ranks/cutoffs of various colleges under JoSAA providing personalized results based on rank, category, state and gender.",
"url": "https://sbrjt.github.io/josaa-cutoffs/",
"sameAs": [
"https://github.com/Sbrjt/josaa-cutoffs",
"https://josaa.nic.in/",
"https://josaa.admissions.nic.in/Applicant/seatallotmentresult/currentorcr.aspx"
]
}
</script>
<link rel='icon' type='image/png' href='favicon.png?' alt='Website favicon'>
<meta name='viewport' content='width=device-width, initial-scale=1.0'>
<link rel='preload' fetchpriority='high' href='data.db.gz' as='fetch' type='application/gzip' crossorigin='anonymous'>
<!-- Bootstrap, bootstrap-select, bootstrap-table, bootstrap-icons css -->
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css'>
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap-select.min.css'>
<link rel='preload' href='https://cdnjs.cloudflare.com/ajax/libs/bootstrap-table/1.22.1/bootstrap-table.min.css' as='style' onload='this.onload=null;this.rel="stylesheet"'>
<link rel='preload' href='https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css' as='style' onload='this.onload=null;this.rel="stylesheet"'>
<link rel='stylesheet' href='styles.css'>
<!-- Scripts -->
<script src='https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js' defer></script>
<script src='https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap-select.min.js' defer></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/bootstrap-table/1.22.1/bootstrap-table.min.js' defer></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/pako/2.1.0/pako_inflate.min.js' defer></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/sql.js/0.5.0/js/sql-optimized.js' defer></script>
<script src='script.js' defer></script>
<script type='module' defer>
if ("serviceWorker" in navigator)
await navigator.serviceWorker.register('sw.js', { scope: '/josaa-cutoffs/' })
</script>
</head>
<body>
<div class='bg-light min-vh-100 d-flex flex-column justify-content-between'>
<!-- Heading -->
<div class='text-center mt-5'>
<h1 class='display-3 mb-sm-3'>2023 JoSAA Cutoffs</h1>
<p class='lead d-none d-sm-block'>Round 6 Opening and Closing Ranks</p>
<p class='fw-light d-sm-none' style='font-size: large;'>Round 6 Opening and Closing Ranks</p>
</div>
<!-- Form -->
<div class='container bg-white mx-auto my-sm-5 my-4 border shadow col-xl-7 col-md-9 col-sm-10 col-11 p-md-5 p-sm-3 py-2'>
<form onsubmit='return false'>
<!-- Rank -->
<div class='row justify-content-around align-items-center p-sm-3 p-2'>
<label for='rank' class='col my-auto py-2 form-label'>Rank</label>
<div class='col-sm-8'>
<input type='text' class='form-control' id='rank' placeholder='Enter category rank, if applicable' required>
</div>
</div>
<!-- rank buffer -->
<!-- <div class='row justify-content-around align-items-center p-sm-3 p-2'>
<label for='rank' class='col my-auto py-2 form-label'>Rank</label>
<div class='col-sm-8 input-group dropup'>
<input type='text' class='form-control' id='rank'
placeholder='Enter category rank, if applicable' required>
<button type='button' data-bs-toggle='dropdown' class='btn btn-light
dropdown-toggle dropdown-toggle-split '>
</button>
<ul class='dropdown-menu p-0 dropdown-menu-end w-25'>
<li><input type='text' class='form-control ' id='rank' placeholder='Buffer'></li>
</ul>
</div>
</div> -->
<!-- Category (Seat type) -->
<div class='row justify-content-around align-items-center p-sm-3 p-2'>
<label class='col my-auto py-2 form-label ' for='category'>Category</label>
<div class='col-sm-8'>
<select class='selectpicker form-control' id='category'>
<option value='OPEN' selected>OPEN</option>
<option value='EWS'>EWS</option>
<option value='OBC-NCL'>OBC-NCL</option>
<option value='SC'>SC</option>
<option value='ST'>ST</option>
<option value='OPEN (PwD)'>OPEN (PwD)</option>
<option value='OBC-NCL (PwD)'>OBC-NCL (PwD)</option>
<option value='EWS (PwD)'>EWS (PwD)</option>
<option value='ST (PwD)'>ST (PwD)</option>
<option value='SC (PwD)'>SC (PwD)</option>
</select>
</div>
</div>
<!-- Branch -->
<div class='row justify-content-around align-items-center p-sm-3 p-2'>
<label class='col my-auto py-2 form-label ' for='branch'>Branch</label><br>
<div class='col-sm-8'>
<select class='selectpicker form-control' data-live-search='true' data-actions-box='true' data-selected-text-format='count>0' id='branch' multiple required>
<option value='Civil Engineering (4 Years, Bachelor of Technology)'>
Civil Engineering (4 Years, Bachelor of Technology)
</option>
<option value='Civil Engineering and M. Tech. in Structural Engineering (5 Years, Bachelor and Master of Technology (Dual Degree))'>
Civil Engineering and M. Tech. in Structural Engineering (5 Years, Bachelor and
Master of Technology (Dual Degree))</option>
<option value='Civil Engineering and M.Tech in Transportation Engineering (5 Years, Bachelor and Master of Technology (Dual Degree))'>
Civil Engineering and M.Tech in Transportation Engineering (5 Years, Bachelor
and Master of Technology (Dual Degree))</option>
<option value='Civil Engineering and M.Tech. in Environmental Engineering (5 Years, Bachelor and Master of Technology (Dual Degree))'>
Civil Engineering and M.Tech. in Environmental Engineering (5 Years, Bachelor
and Master of Technology (Dual Degree))</option>
<option value='Computer Science and Engineering (4 Years, Bachelor of Technology)' selected>
Computer Science and Engineering (4 Years, Bachelor of Technology)</option>
<option value='Computer Science and Engineering (5 Years, Bachelor and Master of Technology (Dual Degree))' selected>Computer
Science and Engineering (5 Years, Bachelor and Master of Technology
(Dual Degree))</option>
<option value='Electrical Engineering and M.Tech Power Electronics and Drives (5 Years, Bachelor and Master of Technology (Dual Degree))'>
Electrical Engineering and M.Tech Power Electronics and Drives (5 Years,
Bachelor and Master of Technology (Dual Degree))</option>
<option value='Electrical Engineering (4 Years, Bachelor of Technology)'>Electrical
Engineering (4 Years, Bachelor of Technology)</option>
<option value='Electronics and Communication Engineering (4 Years, Bachelor of Technology)'>
Electronics and
Communication Engineering (4 Years, Bachelor of Technology)
</option>
<option value='Mechanical Engineering (4 Years, Bachelor of Technology)'>Mechanical
Engineering (4 Years, Bachelor of Technology)</option>
<option value='Mechanical Engineering and M. Tech. in Mechanical System Design (5 Years, Bachelor and Master of Technology (Dual Degree))'>
Mechanical Engineering and M. Tech. in Mechanical System Design (5 Years,
Bachelor and Master of Technology (Dual Degree))</option>
<option value='Mechanical Engineering and M. Tech. in Thermal Science & Engineering (5 Years, Bachelor and Master of Technology (Dual Degree))'>
Mechanical Engineering and M. Tech. in Thermal Science & Engineering (5 Years,
Bachelor and Master of Technology (Dual Degree))</option>
<option value='Mechanical Engineering with M.Tech. in Manufacturing Engineering (5 Years, Bachelor and Master of Technology (Dual Degree))'>
Mechanical Engineering with M.Tech. in Manufacturing Engineering (5 Years,
Bachelor and Master of Technology (Dual Degree))</option>
<option value='Metallurgical and Materials Engineering (4 Years, Bachelor of Technology)'>
Metallurgical and
Materials Engineering (4 Years, Bachelor of Technology)
</option>
<option value='Metallurgical and Materials Engineering (5 Years, Bachelor and Master of Technology (Dual Degree))'>
Metallurgical and Materials Engineering (5 Years, Bachelor and Master of
Technology (Dual Degree))</option>
<option value='Aerospace Engineering (4 Years, Bachelor of Technology)'>Aerospace
Engineering (4 Years, Bachelor of Technology)</option>
<option value='BS in Mathematics (4 Years, Bachelor of Science)'>BS in Mathematics
(4 Years, Bachelor of Science)</option>
<option value='Chemical Engineering (4 Years, Bachelor of Technology)'>Chemical
Engineering (4 Years, Bachelor of Technology)</option>
<option value='Chemistry (4 Years, Bachelor of Science)'>Chemistry (4 Years,
Bachelor of Science)</option>
<option value='Economics (4 Years, Bachelor of Science)'>Economics (4 Years,
Bachelor of Science)</option>
<option value='Electrical Engineering (5 Years, Bachelor and Master of Technology (Dual Degree))'>
Electrical Engineering (5 Years, Bachelor and Master of Technology (Dual
Degree))</option>
<option value='Energy Engineering (4 Years, Bachelor of Technology)'>Energy
Engineering (4 Years, Bachelor of Technology)</option>
<option value='Engineering Physics (4 Years, Bachelor of Technology)'>Engineering
Physics (4 Years, Bachelor of Technology)</option>
<option value='Environmental Science and Engineering (4 Years, Bachelor of Technology)'>
Environmental
Science and Engineering (4 Years, Bachelor of Technology)
</option>
<option value='Metallurgical Engineering and Materials Science (4 Years, Bachelor of Technology)'>
Metallurgical Engineering and Materials Science (4 Years, Bachelor of
Technology)</option>
<option value='B.Tech in General Engineering (4 Years, Bachelor of Technology)'>
B.Tech in General Engineering (4 Years, Bachelor of Technology)</option>
<option value='B.Tech in Materials Science and Engineering (4 Years, Bachelor of Technology)'>
B.Tech in
Materials Science and Engineering (4 Years, Bachelor of Technology)
</option>
<option value='B.Tech in Mathematics and Computing (4 Years, Bachelor of Technology)' selected>B.Tech in Mathematics
and Computing (4 Years, Bachelor of Technology)</option>
<option value='B.Tech in Microelectronics & VLSI (4 Years, Bachelor of Technology)'>B.Tech
in
Microelectronics & VLSI (4 Years, Bachelor of Technology)</option>
<option value='Bio Engineering (4 Years, Bachelor of Technology)'>Bio Engineering
(4 Years, Bachelor of Technology)</option>
<option value='BS in Chemical Sciences (4 Years, Bachelor of Science)'>BS in
Chemical Sciences (4 Years, Bachelor of Science)</option>
<option value='Data Science and Engineering (4 Years, Bachelor of Technology)'>Data
Science and Engineering (4 Years, Bachelor of Technology)</option>
<option value='Biotechnology and Biochemical Engineering (4 Years, Bachelor of Technology)'>
Biotechnology
and Biochemical Engineering (4 Years, Bachelor of Technology)
</option>
<option value='Chemical Engineering (5 Years, Bachelor and Master of Technology (Dual Degree))'>
Chemical
Engineering (5 Years, Bachelor and Master of Technology (Dual Degree))
</option>
<option value='Electrical Engineering (Power and Automation) (4 Years, Bachelor of Technology)'>
Electrical
Engineering (Power and Automation) (4 Years, Bachelor of Technology)
</option>
<option value='Engineering and Computational Mechanics (4 Years, Bachelor of Technology)'>
Engineering and
Computational Mechanics (4 Years, Bachelor of Technology)
</option>
<option value='Materials Engineering (4 Years, Bachelor of Technology)'>Materials
Engineering (4 Years, Bachelor of Technology)</option>
<option value='Mathematics and Computing (4 Years, Bachelor of Technology)' selected>
Mathematics and Computing (4 Years, Bachelor of Technology)</option>
<option value='Mathematics and Computing (5 Years, Bachelor and Master of Technology (Dual Degree))' selected>
Mathematics and Computing (5 Years, Bachelor and Master of Technology (Dual
Degree))</option>
<option value='Production and Industrial Engineering (4 Years, Bachelor of Technology)'>
Production and
Industrial Engineering (4 Years, Bachelor of Technology)
</option>
<option value='Textile Technology (4 Years, Bachelor of Technology)'>Textile
Technology (4 Years, Bachelor of Technology)</option>
<option value='Space Sciences and Engineering (4 Years, Bachelor of Technology)'>
Space Sciences and Engineering (4 Years, Bachelor of Technology)</option>
<option value='Aerospace Engineering (5 Years, Bachelor and Master of Technology (Dual Degree))'>
Aerospace
Engineering (5 Years, Bachelor and Master of Technology (Dual
Degree))</option>
<option value='Agricultural and Food Engineering (4 Years, Bachelor of Technology)'>
Agricultural and Food
Engineering (4 Years, Bachelor of Technology)</option>
<option value='Agricultural and Food Engineering with M.Tech. in any of the listed specializations (5 Years, Bachelor and Master of Technology (Dual Degree))'>
Agricultural and Food Engineering with M.Tech. in any of the listed
specializations (5 Years, Bachelor and Master of Technology (Dual Degree))</option>
<option value='Applied Geology (4 Years, Bachelor of Science)'>Applied Geology (4
Years, Bachelor of Science)</option>
<option value='Architecture (5 Years, Bachelor of Architecture)'>Architecture (5
Years, Bachelor of Architecture)</option>
<option value='Biotechnology and Biochemical Engineering (5 Years, Bachelor and Master of Technology (Dual Degree))'>
Biotechnology and Biochemical Engineering (5 Years, Bachelor and Master of
Technology (Dual Degree))</option>
<option value='Civil Engineering with any of the listed specialization (5 Years, Bachelor and Master of Technology (Dual Degree))'>
Civil Engineering with any of the listed specialization (5 Years, Bachelor and
Master of Technology (Dual Degree))</option>
<option value='Electrical Engineering with M.Tech. in any of the listed specializations (5 Years, Bachelor and Master of Technology (Dual Degree))'>
Electrical Engineering with M.Tech. in any of the listed specializations (5
Years, Bachelor and Master of Technology (Dual Degree))</option>
<option value='Electronics and Electrical Communication Engineering (4 Years, Bachelor of Technology)'>
Electronics and Electrical Communication Engineering (4 Years, Bachelor of
Technology)</option>
<option value='Electronics and Electrical Communication Engineering with M.Tech. in any of the listed specializations (5 Years, Bachelor and Master of Technology (Dual Degree))'>
Electronics and Electrical Communication Engineering with M.Tech. in any of the
listed specializations (5 Years, Bachelor and Master of Technology (Dual Degree))
</option>
<option value='Exploration Geophysics (4 Years, Bachelor of Science)'>Exploration
Geophysics (4 Years, Bachelor of Science)</option>
<option value='Industrial and Systems Engineering (4 Years, Bachelor of Technology)'>
Industrial and Systems
Engineering (4 Years, Bachelor of Technology)</option>
<option value='Industrial and Systems Engineering with M.Tech. in Industrial and Systems Engineering and Management (5 Years, Bachelor and Master of Technology (Dual Degree))'>
Industrial and Systems Engineering with M.Tech. in Industrial and Systems
Engineering and Management (5 Years, Bachelor and Master of Technology (Dual Degree))
</option>
<option value='Instrumentation Engineering (4 Years, Bachelor of Technology)'>
Instrumentation Engineering (4 Years, Bachelor of Technology)</option>
<option value='Manufacturing Science and Engineering (4 Years, Bachelor of Technology)'>
Manufacturing
Science and Engineering (4 Years, Bachelor of Technology)
</option>
<option value='Manufacturing Science and Engineering with M.Tech. in Industrial and Systems Engineering and Management (5 Years, Bachelor and Master of Technology (Dual Degree))'>
Manufacturing Science and Engineering with M.Tech. in Industrial and Systems
Engineering and Management (5 Years, Bachelor and Master of Technology (Dual Degree))
</option>
<option value='Mathematics and Computing (4 Years, Bachelor of Science)' selected>
Mathematics and Computing (4 Years, Bachelor of Science)</option>
<option value='Mechanical Engineering with M.Tech. in any of the listed specializations (5 Years, Bachelor and Master of Technology (Dual Degree))'>
Mechanical Engineering with M.Tech. in any of the listed specializations (5
Years, Bachelor and Master of Technology (Dual Degree))</option>
<option value='Mining Engineering (4 Years, Bachelor of Technology)'>Mining
Engineering (4 Years, Bachelor of Technology)</option>
<option value='Mining Engineering (5 Years, Bachelor and Master of Technology (Dual Degree))'>
Mining
Engineering (5 Years, Bachelor and Master of Technology (Dual Degree))
</option>
<option value='Mining Safety Engineering (5 Years, Bachelor and Master of Technology (Dual Degree))'>
Mining
Safety Engineering (5 Years, Bachelor and Master of Technology (Dual
Degree))</option>
<option value='Ocean Engineering and Naval Architecture (4 Years, Bachelor of Technology)'>
Ocean
Engineering and Naval Architecture (4 Years, Bachelor of Technology)
</option>
<option value='Ocean Engineering and Naval Architecture (5 Years, Bachelor and Master of Technology (Dual Degree))'>
Ocean Engineering and Naval Architecture (5 Years, Bachelor and Master of
Technology (Dual Degree))</option>
<option value='Physics (4 Years, Bachelor of Science)'>Physics (4 Years, Bachelor
of Science)</option>
<option value='Artificial Intelligence (4 Years, Bachelor of Technology)' selected>
Artificial Intelligence (4 Years, Bachelor of Technology)</option>
<option value='Biomedical Engineering (4 Years, Bachelor of Technology)'>Biomedical
Engineering (4 Years, Bachelor of Technology)</option>
<option value='Biotechnology and Bioinformatics (4 Years, Bachelor of Technology)'>
Biotechnology and Bioinformatics (4 Years, Bachelor of Technology)</option>
<option value='Computational Engineering (4 Years, Bachelor of Technology)'>
Computational Engineering (4 Years, Bachelor of Technology)</option>
<option value='Electrical Engineering (IC Design and Technology) (4 Years, Bachelor of Technology)'>
Electrical Engineering (IC Design and Technology) (4 Years, Bachelor of
Technology)</option>
<option value='Engineering Science (4 Years, Bachelor of Technology)'>Engineering
Science (4 Years, Bachelor of Technology)</option>
<option value='Industrial Chemistry (4 Years, Bachelor of Technology)'>Industrial
Chemistry (4 Years, Bachelor of Technology)</option>
<option value='Materials Science and Metallurgical Engineering (4 Years, Bachelor of Technology)'>
Materials
Science and Metallurgical Engineering (4 Years, Bachelor of
Technology)</option>
<option value='Artificial Intelligence and Data Science (4 Years, Bachelor of Technology)' selected>Artificial
Intelligence and Data Science (4 Years, Bachelor of Technology)
</option>
<option value='Chemistry with Specialization (4 Years, Bachelor of Science)'>
Chemistry with Specialization (4 Years, Bachelor of Science)</option>
<option value='Civil and Infrastructure Engineering (4 Years, Bachelor of Technology)'>Civil
and
Infrastructure Engineering (4 Years, Bachelor of Technology)</option>
<option value='Physics with Specialization (4 Years, Bachelor of Science)'>Physics
with Specialization (4 Years, Bachelor of Science)</option>
<option value='Biological Sciences and Bioengineering (4 Years, Bachelor of Technology)'>
Biological
Sciences and Bioengineering (4 Years, Bachelor of Technology)
</option>
<option value='Earth Sciences (4 Years, Bachelor of Science)'>Earth Sciences (4
Years, Bachelor of Science)</option>
<option value='Materials Science and Engineering (4 Years, Bachelor of Technology)'>
Materials Science and
Engineering (4 Years, Bachelor of Technology)</option>
<option value='Mathematics and Scientific Computing (4 Years, Bachelor of Science)' selected>Mathematics and
Scientific Computing (4 Years, Bachelor of Science)</option>
<option value='Statistics and Data Science (4 Years, Bachelor of Science)' selected>
Statistics and Data Science (4 Years, Bachelor of Science)</option>
<option value='Biological Engineering (4 Years, Bachelor of Technology)'>Biological
Engineering (4 Years, Bachelor of Technology)</option>
<option value='Biological Science (4 Years, Bachelor of Science)'>Biological
Science (4 Years, Bachelor of Science)</option>
<option value='Engineering Design (5 Years, Bachelor and Master of Technology (Dual Degree))'>
Engineering
Design (5 Years, Bachelor and Master of Technology (Dual Degree))
</option>
<option value='Naval Architecture and Ocean Engineering (4 Years, Bachelor of Technology)'>
Naval
Architecture and Ocean Engineering (4 Years, Bachelor of Technology)
</option>
<option value='Physics (5 Years, Bachelor of Science and Master of Science (Dual Degree))'>
Physics (5
Years, Bachelor of Science and Master of Science (Dual Degree))
</option>
<option value='Mechanical Engineering (5 Years, Bachelor and Master of Technology (Dual Degree))'>
Mechanical Engineering (5 Years, Bachelor and Master of Technology (Dual
Degree))</option>
<option value='B. Tech in CE. - M. Tech. in Geotechnical Engineering (5 Years, B.Tech. + M.Tech./MS (Dual Degree))'>
B. Tech in CE. - M. Tech. in Geotechnical Engineering (5 Years, B.Tech. +
M.Tech./MS (Dual Degree))</option>
<option value='B. Tech in CE. - M. Tech. in Structural Engineering (5 Years, B.Tech. + M.Tech./MS (Dual Degree))'>
B.
Tech in CE. - M. Tech. in Structural Engineering (5 Years, B.Tech. +
M.Tech./MS (Dual Degree))</option>
<option value='B. Tech. (CSE) and M.Tech in CSE (5 Years, B.Tech. + M.Tech./MS (Dual Degree))'>
B. Tech.
(CSE) and M.Tech in CSE (5 Years, B.Tech. + M.Tech./MS (Dual Degree))
</option>
<option value='B. Tech. (ECE) -M. Tech. in VLSI (5 Years, B.Tech. + M.Tech./MS (Dual Degree))'>
B. Tech.
(ECE) -M. Tech. in VLSI (5 Years, B.Tech. + M.Tech./MS (Dual Degree))
</option>
<option value='B. Tech. (EEE)-M. Tech. in (Power &. Control) (5 Years, B.Tech. + M.Tech./MS (Dual Degree))'>
B. Tech.
(EEE)-M. Tech. in (Power &. Control) (5 Years, B.Tech. + M.Tech./MS
(Dual Degree))</option>
<option value='B. Tech. (Mathematics & Computing) M. Tech. in (Mathematics & Computing) (5 Years, B.Tech. + M.Tech./MS (Dual Degree))' selected>
B. Tech. (Mathematics & Computing) M. Tech. in (Mathematics & Computing) (5
Years, B.Tech. + M.Tech./MS (Dual Degree))</option>
<option value='B. Tech. (ME) - M. Tech. in Mechatronics (5 Years, B.Tech. + M.Tech./MS (Dual Degree))'>
B.
Tech. (ME) - M. Tech. in Mechatronics (5 Years, B.Tech. + M.Tech./MS (Dual
Degree))</option>
<option value='B. Tech. (ME) - MBA (NITIE) (5 Years, Bachelor of Technology and MBA (Dual Degree))'>
B.
Tech. (ME) - MBA (NITIE) (5 Years, Bachelor of Technology and MBA (Dual
Degree))</option>
<option value='B.Tech. in Electronics and Communication Engineering and M.Tech. in Communication Systems (5 Years, Bachelor and Master of Technology (Dual Degree))'>
B.Tech. in Electronics and Communication Engineering and M.Tech. in
Communication Systems (5 Years, Bachelor and Master of Technology (Dual Degree))
</option>
<option value='Chemical Science and Technology (4 Years, Bachelor of Technology)'>
Chemical Science and Technology (4 Years, Bachelor of Technology)</option>
<option value='Electrical and Electronics Engineering (4 Years, Bachelor of Technology)'>
Electrical and
Electronics Engineering (4 Years, Bachelor of Technology)
</option>
<option value='Biosciences and Bioengineering (4 Years, Bachelor of Technology)'>
Biosciences and Bioengineering (4 Years, Bachelor of Technology)</option>
<option value='Chemical Sciences (5 Years, Bachelor of Science and Master of Science (Dual Degree))'>
Chemical Sciences (5 Years, Bachelor of Science and Master of Science (Dual
Degree))</option>
<option value='Data Science and Artificial Intelligence (4 Years, Bachelor of Technology)' selected>Data Science and
Artificial Intelligence (4 Years, Bachelor of Technology)
</option>
<option value='Economics (5 Years, Bachelor of Science and Master of Science (Dual Degree))'>
Economics (5
Years, Bachelor of Science and Master of Science (Dual Degree))
</option>
<option value='Geological Technology (5 Years, Integrated Master of Technology)'>
Geological Technology (5 Years, Integrated Master of Technology)</option>
<option value='Geophysical Technology (5 Years, Integrated Master of Technology)'>
Geophysical Technology (5 Years, Integrated Master of Technology)</option>
<option value='Mathematics & Computing (5 Years, Bachelor of Science and Master of Science (Dual Degree))' selected>
Mathematics & Computing (5 Years, Bachelor of Science and Master of Science
(Dual Degree))</option>
<option value='Applied Geology (5 Years, Integrated Master of Technology)'>Applied
Geology (5 Years, Integrated Master of Technology)</option>
<option value='Applied Geophysics (5 Years, Integrated Master of Technology)'>
Applied Geophysics (5 Years, Integrated Master of Technology)</option>
<option value='Environmental Engineering (4 Years, Bachelor of Technology)'>
Environmental Engineering (4 Years, Bachelor of Technology)</option>
<option value='Mathematics and Computing (5 Years, Integrated Master of Technology)' selected>Mathematics and
Computing (5 Years, Integrated Master of Technology)</option>
<option value='Mineral and Metallurgical Engineering (4 Years, Bachelor of Technology)'>
Mineral and
Metallurgical Engineering (4 Years, Bachelor of Technology)
</option>
<option value='Mining Machinery Engineering (4 Years, Bachelor of Technology)'>
Mining Machinery Engineering (4 Years, Bachelor of Technology)</option>
<option value='Petroleum Engineering (4 Years, Bachelor of Technology)'>Petroleum
Engineering (4 Years, Bachelor of Technology)</option>
<option value='Artificial Intelligence and Data Engineering (4 Years, Bachelor of Technology)' selected>Artificial
Intelligence and Data Engineering (4 Years, Bachelor of Technology)
</option>
<option value='Biochemical Engineering with M.Tech. in Biochemical Engineering and Biotechnology (5 Years, Bachelor and Master of Technology (Dual Degree))'>
Biochemical Engineering with M.Tech. in Biochemical Engineering and
Biotechnology (5 Years, Bachelor and Master of Technology (Dual Degree))</option>
<option value='Bioengineering with M.Tech in Biomedical Technology (5 Years, Bachelor and Master of Technology (Dual Degree))'>
Bioengineering with M.Tech in Biomedical Technology (5 Years, Bachelor and
Master of Technology (Dual Degree))</option>
<option value='Ceramic Engineering (4 Years, Bachelor of Technology)'>Ceramic
Engineering (4 Years, Bachelor of Technology)</option>
<option value='Ceramic Engineering (5 Years, Bachelor and Master of Technology (Dual Degree))'>
Ceramic
Engineering (5 Years, Bachelor and Master of Technology (Dual Degree))
</option>
<option value='Civil Engineering (5 Years, Bachelor and Master of Technology (Dual Degree))'>
Civil
Engineering (5 Years, Bachelor and Master of Technology (Dual Degree))
</option>
<option value='Electrical Engineering with M.Tech. in Power Electronics (5 Years, Bachelor and Master of Technology (Dual Degree))'>
Electrical Engineering with M.Tech. in Power Electronics (5 Years, Bachelor and
Master of Technology (Dual Degree))</option>
<option value='Electronics Engineering (4 Years, Bachelor of Technology)'>
Electronics Engineering (4 Years, Bachelor of Technology)</option>
<option value='Engineering Physics (5 Years, Bachelor and Master of Technology (Dual Degree))'>
Engineering
Physics (5 Years, Bachelor and Master of Technology (Dual Degree))
</option>
<option value='Industrial Chemistry (5 Years, Bachelor and Master of Technology (Dual Degree))'>
Industrial
Chemistry (5 Years, Bachelor and Master of Technology (Dual Degree))
</option>
<option value='Materials Science and Technology (5 Years, Bachelor and Master of Technology (Dual Degree))'>
Materials Science and Technology (5 Years, Bachelor and Master of Technology
(Dual Degree))</option>
<option value='Metallurgical Engineering (4 Years, Bachelor of Technology)'>
Metallurgical Engineering (4 Years, Bachelor of Technology)</option>
<option value='Metallurgical Engineering (5 Years, Bachelor and Master of Technology (Dual Degree))'>
Metallurgical Engineering (5 Years, Bachelor and Master of Technology (Dual
Degree))</option>
<option value='Pharmaceutical Engineering & Technology (4 Years, Bachelor of Technology)'>
Pharmaceutical
Engineering & Technology (4 Years, Bachelor of Technology)
</option>
<option value='Pharmaceutical Engineering & Technology (5 Years, Bachelor and Master of Technology (Dual Degree))'>
Pharmaceutical Engineering & Technology (5 Years, Bachelor and Master of
Technology (Dual Degree))</option>
<option value='Electronics and Electrical Engineering (4 Years, Bachelor of Technology)'>
Electronics and
Electrical Engineering (4 Years, Bachelor of Technology)
</option>
<option value='Mechatronics Engineering (4 Years, Bachelor of Technology)'>
Mechatronics Engineering (4 Years, Bachelor of Technology)</option>
<option value='Chemical and Biochemical Engineering (4 Years, Bachelor of Technology)'>
Chemical and
Biochemical Engineering (4 Years, Bachelor of Technology)</option>
<option value='Interdisciplinary Sciences (5 Years, Bachelor of Science and Master of Science (Dual Degree))'>
Interdisciplinary Sciences (5 Years, Bachelor of Science and Master of Science
(Dual Degree))</option>
<option value='Agricultural Engineering (4 Years, Bachelor of Technology)'>
Agricultural Engineering (4 Years, Bachelor of Technology)</option>
<option value='Artificial Intelligence and Machine Learning (4 Years, Bachelor of Technology)' selected>Artificial
Intelligence and Machine Learning (4 Years, Bachelor of Technology)
</option>
<option value='Bio Technology (4 Years, Bachelor of Technology)'>Bio Technology (4
Years, Bachelor of Technology)</option>
<option value='Food Engineering and Technology (4 Years, Bachelor of Technology)'>
Food Engineering and Technology (4 Years, Bachelor of Technology)</option>
<option value='Mathematics and Computing (5 Years, Integrated Master of Science)' selected>
Mathematics and Computing (5 Years, Integrated Master of Science)</option>
<option value='Physics (5 Years, Integrated Master of Science)'>Physics (5 Years,
Integrated Master of Science)</option>
<option value='Quantitative Economics & Data Science (5 Years, Integrated Master of Science)' selected>Quantitative
Economics & Data Science (5 Years, Integrated Master of Science)
</option>
<option value='Carpet and Textile Technology (4 Years, Bachelor of Technology)'>
Carpet and Textile Technology (4 Years, Bachelor of Technology)</option>
<option value='Computer Engineering (4 Years, Bachelor of Technology)' selected>Computer
Engineering (4 Years, Bachelor of Technology)</option>
<option value='Industrial and Production Engineering (4 Years, Bachelor of Technology)'>
Industrial and
Production Engineering (4 Years, Bachelor of Technology)
</option>
<option value='Information Technology (4 Years, Bachelor of Technology)' selected>
Information Technology (4 Years, Bachelor of Technology)</option>
<option value='Electronics System Engineering (4 Years, Bachelor of Technology)'>
Electronics System Engineering (4 Years, Bachelor of Technology)</option>
<option value='Metallurgy and Materials Engineering (4 Years, Bachelor of Technology)'>
Metallurgy and
Materials Engineering (4 Years, Bachelor of Technology)</option>
<option value='Food Technology (4 Years, Bachelor of Technology)'>Food Technology
(4 Years, Bachelor of Technology)</option>
<option value='Instrumentation and Control Engineering (4 Years, Bachelor of Technology)'>
Instrumentation
and Control Engineering (4 Years, Bachelor of Technology)
</option>
<option value='Planning (4 Years, Bachelor of Planning)'>Planning (4 Years,
Bachelor of Planning)</option>
<option value='Computer Science Engineering (Artificial Intelligence) (4 Years, B. Tech / B. Tech (Hons.))' selected>Computer
Science Engineering (Artificial Intelligence) (4 Years, B. Tech / B.
Tech (Hons.))</option>
<option value='Computer Science Engineering (Data Science) (4 Years, B. Tech / B. Tech (Hons.))' selected>Computer
Science Engineering (Data Science) (4 Years, B. Tech / B. Tech
(Hons.))</option>
<option value='Electronics Engineering (VLSI Design and Technology) (4 Years, Bachelor of Technology)'>
Electronics Engineering (VLSI Design and Technology) (4 Years, Bachelor of
Technology)</option>
<option value='Electronics and Telecommunication Engineering (4 Years, Bachelor of Technology)'>
Electronics
and Telecommunication Engineering (4 Years, Bachelor of Technology)
</option>
<option value='Electronics and Instrumentation Engineering (4 Years, Bachelor of Technology)'>
Electronics
and Instrumentation Engineering (4 Years, Bachelor of Technology)
</option>
<option value='Civil and Environmental Engineering (4 Years, Bachelor of Technology)'>Civil
and
Environmental Engineering (4 Years, Bachelor of Technology)</option>
<option value='Computer Science Engineering (Artificial lntelligence and Machine Learning) (4 Years, Bachelor of Technology)' selected>
Computer Science Engineering (Artificial lntelligence and Machine Learning) (4
Years, Bachelor of Technology)</option>
<option value='Bio Medical Engineering (4 Years, Bachelor of Technology)'>Bio
Medical Engineering (4 Years, Bachelor of Technology)</option>
<option value='Food Technology and Management (4 Years, Bachelor of Technology)'>
Food Technology and Management (4 Years, Bachelor of Technology)</option>
<option value='Handloom and Textile Technology (4 Years, Bachelor of Technology)'>
Handloom and Textile Technology (4 Years, Bachelor of Technology)</option>
<option value='Chemical Engineering (5 Years, Integrated Masters in Technology)'>
Chemical Engineering (5 Years, Integrated Masters in Technology)</option>
<option value='Computer Science and Engineering with specialization in Cyber Security (4 Years, Bachelor of Technology)' selected>
Computer Science and Engineering with specialization in Cyber Security (4
Years, Bachelor of Technology)</option>
<option value='Electronics and Communication Engineering (Avionics) (4 Years, Bachelor of Technology)'>
Electronics and Communication Engineering (Avionics) (4 Years, Bachelor of
Technology)</option>
<option value='Aeronautical Engineering (4 Years, Bachelor of Technology)'>
Aeronautical Engineering (4 Years, Bachelor of Technology)</option>
<option value='Dairy Engineering (4 Years, Bachelor of Technology)'>Dairy
Engineering (4 Years, Bachelor of Technology)</option>
<option value='Fashion and Apparel Engineering (4 Years, Bachelor of Technology)'>
Fashion and Apparel Engineering (4 Years, Bachelor of Technology)</option>
<option value='Printing and Packaging Technology (4 Years, Bachelor of Technology)'>Printing
and Packaging
Technology (4 Years, Bachelor of Technology)</option>
<option value='Electronics and VLSI Engineering (4 Years, Bachelor of Technology)'>
Electronics and VLSI Engineering (4 Years, Bachelor of Technology)</option>
<option value='Mathematics and Data Science (5 Years, Bachelor and Master of Technology (Dual Degree))' selected>
Mathematics and Data Science (5 Years, Bachelor and Master of Technology (Dual
Degree))</option>
<option value='Chemistry (5 Years, Bachelor of Science and Master of Science (Dual Degree))'>
Chemistry (5
Years, Bachelor of Science and Master of Science (Dual Degree))
</option>
<option value='Computational Mathematics (5 Years, Bachelor and Master of Technology (Dual Degree))'>
Computational Mathematics (5 Years, Bachelor and Master of Technology (Dual
Degree))</option>
<option value='Production Engineering (4 Years, Bachelor of Technology)'>Production
Engineering (4 Years, Bachelor of Technology)</option>
<option value='Biotechnology (5 Years, Bachelor and Master of Technology (Dual Degree))'>
Biotechnology (5
Years, Bachelor and Master of Technology (Dual Degree))
</option>
<option value='Chemistry (5 Years, Integrated Master of Science)'>Chemistry (5
Years, Integrated Master of Science)</option>
<option value='Electronics and Communication Engineering (5 Years, Bachelor and Master of Technology (Dual Degree))'>
Electronics and Communication Engineering (5 Years, Bachelor and Master of
Technology (Dual Degree))</option>
<option value='Computational and Data Science (4 Years, Bachelor of Technology)' selected>
Computational and Data Science (4 Years, Bachelor of Technology)</option>
<option value='Chemical Technology (5 Years, Bachelor and Master of Technology (Dual Degree))'>
Chemical
Technology (5 Years, Bachelor and Master of Technology (Dual Degree))
</option>
<option value='Civil Engineering with Specialization in Construction Technology and Management (5 Years, Bachelor and Master of Technology (Dual Degree))'>
Civil Engineering with Specialization in Construction Technology and Management
(5 Years, Bachelor and Master of Technology (Dual Degree))</option>
<option value='Computer Science and Engineering with Specialization in Cyber Security (5 Years, Bachelor and Master of Technology (Dual Degree))' selected>
Computer Science and Engineering with Specialization in Cyber Security (5
Years, Bachelor and Master of Technology (Dual Degree))</option>
<option value='Computer Science and Engineering with Specialization in Data Science (5 Years, Bachelor and Master of Technology (Dual Degree))' selected>
Computer Science and Engineering with Specialization in Data Science (5 Years,
Bachelor and Master of Technology (Dual Degree))</option>
<option value='Electrical Engineering with Specialization In Power System Engineering (5 Years, Bachelor and Master of Technology (Dual Degree))'>
Electrical Engineering with Specialization In Power System Engineering (5
Years, Bachelor and Master of Technology (Dual Degree))</option>
<option value='Electronics and Communication Engineering with Specialization in Microelectronics and VLSI System Design (5 Years, Bachelor and Master of Technology (Dual Degree))'>
Electronics and Communication Engineering with Specialization in
Microelectronics and VLSI System Design (5 Years, Bachelor and Master of Technology
(Dual Degree))</option>
<option value='Material Science and Engineering (5 Years, Bachelor and Master of Technology (Dual Degree))'>
Material
Science and Engineering (5 Years, Bachelor and Master of Technology
(Dual Degree))</option>
<option value='Mathematics and Computing Technology (5 Years, Bachelor and Master of Technology (Dual Degree))' selected>
Mathematics and Computing Technology (5 Years, Bachelor and Master of
Technology (Dual Degree))</option>
<option value='Mechanical Engineering with Specialization in Manufacturing and Industrial Engineering (5 Years, Bachelor and Master of Technology (Dual Degree))'>
Mechanical Engineering with Specialization in Manufacturing and Industrial
Engineering (5 Years, Bachelor and Master of Technology (Dual Degree))</option>
<option value='Industrial Internet of Things (4 Years, Bachelor of Technology)'>
Industrial Internet of Things (4 Years, Bachelor of Technology)</option>
<option value='Ceramic Engineering and M.Tech Industrial Ceramic (5 Years, Bachelor and Master of Technology (Dual Degree))'>
Ceramic Engineering and M.Tech Industrial Ceramic (5 Years, Bachelor and Master
of Technology (Dual Degree))</option>
<option value='Food Process Engineering (4 Years, Bachelor of Technology)'>Food
Process Engineering (4 Years, Bachelor of Technology)</option>
<option value='Industrial Design (4 Years, Bachelor of Technology)'>Industrial
Design (4 Years, Bachelor of Technology)</option>
<option value='Life Science (5 Years, Integrated Master of Science)'>Life Science
(5 Years, Integrated Master of Science)</option>
<option value='Mathematics (5 Years, Integrated Master of Science)'>Mathematics (5
Years, Integrated Master of Science)</option>
<option value='Electronics and Communication Engineering (VLSI Design and Technology) (4 Years, Bachelor of Technology)'>
Electronics and Communication Engineering (VLSI Design and Technology) (4
Years, Bachelor of Technology)</option>
<option value='Integrated B. Tech.(IT) and M. Tech (IT) (5 Years, Integrated B. Tech. and M. Tech.)'>
Integrated B. Tech.(IT) and M. Tech (IT) (5 Years, Integrated B. Tech. and M.
Tech.)</option>
<option value='Integrated B. Tech.(IT) and MBA (5 Years, Integrated B. Tech. and MBA)'>
Integrated B.
Tech.(IT) and MBA (5 Years, Integrated B. Tech. and MBA)</option>
<option value='Mathematics and Scientific Computing (4 Years, Bachelor of Technology)' selected>Mathematics and
Scientific Computing (4 Years, Bachelor of Technology)</option>
<option value='Information Technology-Business Informatics (4 Years, Bachelor of Technology)' selected>Information
Technology-Business Informatics (4 Years, Bachelor of Technology)
</option>
<option value='B.Tech. in Electronics and Communication Engineering and M.Tech. in VLSI Design (5 Years, Bachelor and Master of Technology (Dual Degree))'>
B.Tech. in Electronics and Communication Engineering and M.Tech. in VLSI Design
(5 Years, Bachelor and Master of Technology (Dual Degree))</option>
<option value='Computer Science and Engineering with Major in Artificial Intelligence (4 Years, Bachelor of Technology)' selected>Computer Science and Engineering with Major in Artificial Intelligence (4
Years, Bachelor of Technology)</option>
<option value='Smart Manufacturing (4 Years, Bachelor of Technology)'>Smart
Manufacturing (4 Years, Bachelor of Technology)</option>
<option value='Computer Science and Engineering with specialization in Artificial Intelligence and Data Science (4 Years, Bachelor of Technology)' selected>
Computer Science and Engineering with specialization in Artificial Intelligence
and Data Science (4 Years, Bachelor of Technology)
</option>
<option value='Electronics and Communication Engineering with specialization in VLSI and Embedded Systems (4 Years, Bachelor of Technology)'>
Electronics and Communication Engineering with specialization in VLSI and
Embedded Systems (4 Years, Bachelor of Technology)</option>
<option value='Computer Science (4 Years, Bachelor of Technology)' selected>Computer Science
(4 Years, Bachelor of Technology)</option>
<option value='Computer Science and Artificial Intelligence (4 Years, Bachelor of Technology)' selected>Computer
Science and Artificial Intelligence (4 Years, Bachelor of Technology)
</option>
<option value='Computer Science and Business (4 Years, Bachelor of Technology)' selected>
Computer Science and Business (4 Years, Bachelor of Technology)</option>
<option value='Electronics and Communication Engineering with specialization in Design and Manufacturing (4 Years, Bachelor of Technology)'>
Electronics and Communication Engineering with specialization in Design and
Manufacturing (4 Years, Bachelor of Technology)</option>
<option value='Mechanical Engineering with specialization in Design and Manufacturing (4 Years, Bachelor of Technology)'>
Mechanical Engineering with specialization in Design and Manufacturing (4
Years, Bachelor of Technology)</option>
<option value='Computer Science and Engineering (with Specialization of Data Science and Artificial Intelligence) (4 Years, B. Tech / B. Tech (Hons.))' selected>
Computer Science and Engineering (with Specialization of Data Science and
Artificial Intelligence) (4 Years, B. Tech / B. Tech (Hons.))</option>
<option value='Electronics and Communication Engineering (with Specialization of Embedded Systems and Internet of Things) (4 Years, B. Tech / B. Tech (Hons.))'>
Electronics and Communication Engineering (with Specialization of Embedded
Systems and Internet of Things) (4 Years, B. Tech / B. Tech (Hons.))</option>
<option value='Computer Science Engineering (Data Science and Analytics) (4 Years, Bachelor of Technology)' selected>Computer
Science Engineering (Data Science and Analytics) (4 Years, Bachelor of
Technology)</option>
<option value='Computer Science Engineering (Human Computer lnteraction and Gaming Technology) (4 Years, Bachelor of Technology)' selected>
Computer Science Engineering (Human Computer lnteraction and Gaming Technology)
(4 Years, Bachelor of Technology)</option>
<option value='Electronics and Communication Engineering (Internet of Things) (4 Years, Bachelor of Technology)'>
Electronics and Communication Engineering (Internet of Things) (4 Years,
Bachelor of Technology)</option>
<option value='Mechatronics and Automation Engineering (4 Years, Bachelor of Technology)'>
Mechatronics and
Automation Engineering (4 Years, Bachelor of Technology)
</option>
</select>
</div>
</div>
<!-- State -->
<div class='row justify-content-around align-items-center p-sm-3 p-2'>
<label class='col my-auto py-2 form-label ' for='state'>Home State</label>
<div class='col-sm-8'>
<select class='form-control' id='state'>
<option value='Select an option' selected disabled>Select an option</option>
<option value='Andhra Pradesh'>Andhra Pradesh</option>
<option value='Arunachal Pradesh'>Arunachal Pradesh</option>
<option value='Assam'>Assam</option>
<option value='Bihar'>Bihar</option>
<option value='Chandigarh'>Chandigarh</option>
<option value='Chhattisgarh'>Chhattisgarh</option>
<option value='Delhi'>Delhi</option>
<option value='Goa'>Goa</option>
<option value='Gujarat'>Gujarat</option>
<option value='Haryana'>Haryana</option>
<option value='Himachal Pradesh'>Himachal Pradesh</option>
<option value='Jammu & Kashmir'>Jammu & Kashmir/Ladakh</option>
<option value='Jharkhand'>Jharkhand</option>
<option value='Karnataka'>Karnataka</option>
<option value='Kerala'>Kerala</option>
<option value='Madhya Pradesh'>Madhya Pradesh</option>
<option value='Maharashtra'>Maharashtra</option>
<option value='Manipur'>Manipur</option>
<option value='Meghalaya'>Meghalaya</option>
<option value='Mizoram'>Mizoram</option>
<option value='Nagaland'>Nagaland</option>
<option value='Odisha'>Odisha</option>
<option value='Puducherry'>Puducherry</option>
<option value='Punjab'>Punjab</option>
<option value='Rajasthan'>Rajasthan</option>
<option value='Sikkim'>Sikkim</option>
<option value='Tamil Nadu'>Tamil Nadu</option>
<option value='Telangana'>Telangana</option>
<option value='Tripura'>Tripura</option>
<option value='Uttar Pradesh'>Uttar Pradesh</option>
<option value='Uttarakhand'>Uttarakhand</option>
<option value='West Bengal'>West Bengal</option>
</select>
</div>
</div>
<!-- Gender -->
<div class='row justify-content-around align-items-center p-sm-3 p-2'>
<label class='col my-auto py-2 form-label'>Gender</label>
<div class='col-sm-8 d-flex justify-content-between'>
<!-- hidden checkboxes that sync with the radios -->
<div class='form-check-inline'>
<input class='form-check-input' type='radio' id='neu-radio' value='Neutral' checked>
<input class='form-check-input d-none' type='checkbox' id='Neutral' name='gender' value='Neutral' checked>
<label class='form-check-label ms-sm-4 ms-3' for='Neutral'>Neutral</label>
</div>
<div class='form-check-inline m-0'>
<input class='form-check-input' type='radio' id='fem-radio' value='Female'>
<input class='form-check-input d-none' type='checkbox' id='Female' name='gender' value='Female'>
<label class='form-check-label ms-sm-4 ms-3' for='Female'>Female</label>
</div>
</div>
</div>
<!-- College Type -->
<div class='row justify-content-around align-items-center p-sm-3 p-2'>
<label class='col my-auto py-2 form-label '>College type</label>
<div class='col-sm-8 d-flex justify-content-between '>
<div class='form-check-inline m-0'>
<input class='form-check-input' type='checkbox' id='iit' name='type' value='iit'>
<label class='form-check-label ms-1' for='iit'>IIT</label>
</div>
<div class='form-check-inline m-0'>
<input class='form-check-input ms-2' type='checkbox' id='nit' name='type' value='nit' checked>
<label class='form-check-label ms-1' for='nit'>NIT</label>
</div>
<div class='form-check-inline m-0'>
<input class='form-check-input ms-2' type='checkbox' id='iiit' name='type' value='iiit' checked>
<label class='form-check-label ms-1' for='iiit'>IIIT</label>
</div>
<div class='form-check-inline m-0'>
<input class='form-check-input ms-2' type='checkbox' id='gfti' name='type' value='gfti' checked>
<label class='form-check-label ms-1' for='gfti'>GFTI</label>
</div>
</div>
</div>
<!-- Submit -->
<div class='text-center p-sm-3 p-2'>
<button id='btn-1' class='btn btn-lg btn-outline-primary col-12 col-sm-5 my-2 rounded-5 shadow-sm ' style='height: 3rem;' type='submit' disabled>
<div id='go' class='d-none' style='font-weight: 500'>GO</div>
<div id='spinner' class='spinner-border ms-2'></div><!-- Show spinner before db is loaded -->
</button>
</div>
</form>
</div>
<!-- Table -->
<div class='col-sm-10 col-11 mx-auto mt-sm-5 mt-4 d-none' id='tableDiv'>
<!-- table -->
<div class='table-responsive'>
<table id='table' class='table ' data-toggle='table' data-search='true' data-show-columns='true' data-show-columns-toggle-all='true'>
<thead>
<tr>
<th data-field='institute' data-switchable='false'>
Institute</th>
<th data-field='branch'>Branch</th>
<th data-field='state' data-width='20'>State</th>
<th data-field='quota' data-width='20'>Quota</th>
<th data-field='seat' data-width='20'>Seat</th>
<th data-field='gender' data-width='20'>Gender</th>
<th data-field='open' data-width='20'>Open</th>
<th data-field='close' data-width='20' data-switchable='false'>Close</th>
</tr>
</thead>
<tbody id='tbody'>
<!-- Table body will be populated dynamically -->
</tbody>
</table>
</div>
<!-- buttons -->
<div class='text-end mt-2'>
<div class='btn-group mb-3'>
<button class='btn btn-secondary' id='btn-2' type='button'>
Show more
</button>
<button class="btn btn-secondary dropdown-toggle dropdown-toggle-split" type="button" data-bs-toggle="dropdown" data-bs-display="static">
</button>
<ul class="dropdown-menu p-0" style='min-width: 100%;'>
<li><button class="dropdown-item btn btn-secondary" id='btn-3'>Show all</button></li>
</ul>
</div>
</div>
</div>
<!-- Footer -->
<div class='container-fluid mt-5'>
<footer class='bg-black text-secondary row justify-content-between py-md-0 px-md-5 py-5 '>
<!-- Credits and Github repo -->
<div class='col-md-auto text-md-start text-center row px-md-0 p-md-5 mx-auto mx-md-0'>
<div class='px-0 pb-2 pb-md-0 col-md-auto '>
Made by Shubhrajit Sadhukhan
</div>
<div class='d-none d-md-block col-md-auto '>|</div>
<div class='px-0 pt-2 pt-md-0 col-md-auto '>Like it? Toss me a ⭐ on
<a href='https://github.com/Sbrjt/josaa-cutoffs' target='_blank' class='link-underline-warning link-offset-3-hover link-underline-opacity-0 link-underline-opacity-50-hover'>
GitHub</a>!
</div>
</div>
<div class='d-md-none d-block'>
<hr class='m-5'>
</div>
<!-- Icons -->
<div class='h5 col-md-auto px-0 text-center my-auto '>
<a href='https://pages.github.com/' class='link-secondary px-lg-4 px-3 ' aria-label='GitHub'>
<svg style='height: 1em;' fill='currentColor' viewBox='0 0 16 16'>
<path
d='M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.012 8.012 0 0 0 16 8c0-4.42-3.58-8-8-8' />
</svg></a>
<a href='https://sql.js.org/' class='link-secondary px-lg-4 px-3 ' aria-label='Sqlite'>
<svg style='height: 1em;filter: grayscale()' fill='currentColor' viewBox='0 0 6.554 6.555'>
<defs>
<linearGradient x1='2.983' y1='.53' x2='2.983' y2='4.744' id='A' gradientUnits='userSpaceOnUse'>
<stop stop-color='#97d9f6' offset='0%' />
<stop stop-color='#0f80cc' offset='92.024%' />
<stop stop-color='#0f80cc' offset='100%' />
</linearGradient>
</defs>
<path d='M4.96.29H.847c-.276 0-.5.226-.5.5v4.536c0 .276.226.5.5.5h2.71c-.03-1.348.43-3.964 1.404-5.54z' />
<path d='M4.81.437H.847c-.196 0-.355.16-.355.355v4.205c.898-.345 2.245-.642 3.177-.628A28.93 28.93 0 0 1 4.811.437z' />
<path
d='M5.92.142c-.282-.25-.623-.15-.96.148l-.15.146c-.576.61-1.1 1.742-1.276 2.607a2.38 2.38 0 0 1 .148.426l.022.1.022.102s-.005-.02-.026-.08l-.014-.04a.461.461 0 0 0-.009-.022c-.038-.087-.14-.272-.187-.352a8.789 8.789 0 0 0-.103.321c.132.242.212.656.212.656s-.007-.027-.04-.12c-.03-.083-.176-.34-.21-.4-.06.22-.083.368-.062.404.04.07.08.2.115.324a7.52 7.52 0 0 1 .132.666l.005.062a6.11 6.11 0 0 0 .015.75c.026.313.075.582.137.726l.042-.023c-.09-.284-.128-.655-.112-1.084.025-.655.175-1.445.454-2.268C4.548 1.938 5.2.94 5.798.464c-.545.492-1.282 2.084-1.502 2.673-.247.66-.422 1.28-.528 1.873.182-.556.77-.796.77-.796s.29-.356.626-.865l-.645.172-.208.092s.53-.323.987-.47c.627-.987 1.31-2.39.622-3.002'
fill='#3b5700' />
</svg></a>
<a href='https://getbootstrap.com/' class='link-secondary px-lg-4 px-3' aria-label='Bootstrap'>
<svg style='height: 1em;' viewBox='0 0 118 94'>
<path fill-rule='evenodd' clip-rule='evenodd'
d='M24.509 0c-6.733 0-11.715 5.893-11.492 12.284.214 6.14-.064 14.092-2.066 20.577C8.943 39.365 5.547 43.485 0 44.014v5.972c5.547.529 8.943 4.649 10.951 11.153 2.002 6.485 2.28 14.437 2.066 20.577C12.794 88.106 17.776 94 24.51 94H93.5c6.733 0 11.714-5.893 11.491-12.284-.214-6.14.064-14.092 2.066-20.577 2.009-6.504 5.396-10.624 10.943-11.153v-5.972c-5.547-.529-8.934-4.649-10.943-11.153-2.002-6.484-2.28-14.437-2.066-20.577C105.214 5.894 100.233 0 93.5 0h34.508zM80 57.863C80 66.663 73.436 72 62.543 72H44a2 2 0 01-2-2V24a2 2 0 012-2h18.437c9.083 0 15.044 4.92 15.044 12.474 0 5.302-4.01 10.049-9.119 10.88v.277C75.317 46.394 80 51.21 80 57.863zM60.521 28.34H49.948v14.934h8.905c6.884 0 10.68-2.772 10.68-7.727 0-4.643-3.264-7.207-9.012-7.207zM49.948 49.2v16.458H60.91c7.167 0 10.964-2.876 10.964-8.281 0-5.406-3.903-8.178-11.425-8.178H49.948z'
fill='currentColor'></path>
</svg></a>
<!-- <a class='px-md-4 px-2' href='https://developer.snapappointments.com/bootstrap-select/'
aria-label='Bootstrap-select'>
<img src='https://avatars.githubusercontent.com/u/3484250' width='' height=''
style='height: 1em; filter: grayscale(1) brightness(55%)' alt='Bootstrap-select' /></a>
<a class='px-md-4 px-2' href='https://bootstrap-table.com/''
aria-label=' Bootstrap-table'>
<img src='https://bootstrap-table.com/favicon.png' width='' height=''
style='height: 1em; filter: invert() grayscale() brightness(.7)'
alt='Bootstrap-select' /></a> -->
</div>
</footer>
</div>
</div>
<!-- <a href="#" style='position:fixed; bottom:20px; right:20px; z-index: 1; outline: none; opacity: 50%;'
class='btn btn-outline-primary rounded-5 py-0 px-1'><i class="bi bi-arrow-up-short"></i></a> -->
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.slim.min.js'></script>
</body>
</html>