-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnits-iits.html
960 lines (947 loc) · 59.1 KB
/
nits-iits.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="shortcut icon" href="assets/images/logo/paathshala-favicon.png" type="image/x-icon">
<title>About NIT's & IIT's</title>
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,600,800%7CPoppins:300i,400,700,400i,500%7CDosis:300" rel="stylesheet">
<!-- Bootstrap Links -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap-select.min.css">
<!-- FontAwesome Link -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- Animate.css -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.2/animate.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/hover.css/2.3.1/css/hover.css" integrity="sha256-JN6PzDiVqV2siZjedqNB10DTVZsdRKY5oW0TTvYpAuQ=" crossorigin="anonymous" />
<!-- Custom style -->
<link rel="stylesheet" href="assets/css/style.css">
<link rel="stylesheet" href="assets/css/responsive.css">
</head>
<body>
<!-- Header Navbar -->
<div class="slideDiv bg-light p-3">
<ul class="list-unstyled text-center">
<li><a href="enquiry.html">ADMISSION ENQUIRY</a></li>
<li><a href="resources.html">RESOURCES</a></li>
<li><a href="#">CAREERS </a></li>
<li><a href="#">SPARK EXCELLENCE</a></li>
</ul>
</div>
<div class="top-nav text-light" style="text-align: center;z-index:10000;position:relative;">
<ul class="list-inline">
<li class="list-inline-item top-icons" >
<a title="Paathshala Facebook"><i class="fa fa-facebook"></i></a>
</li>
<li class="list-inline-item top-icons">
<a title="Paathshala Twitter"><i class="fa fa-twitter"></i></a>
</li>
<li class="list-inline-item top-icons">
<a title="Paathshala Pinterest"><i class="fa fa-pinterest-p"></i></a>
</li>
<li class="list-inline-item top-icons">
<a title="Paathshala LinkedIn"><i class="fa fa-linkedin"></i></a>
</li>
<li class="list-inline-item top-icons">
<a title="Paathshala Instagram"><i class="fa fa-instagram"></i></a>
</li>
<li class="list-inline-item top-icons">
<a title="Paathshala Youtube"><i class="fa fa-youtube-play"></i></a>
</li>
<li class="list-inline-item top-contact">Call us: 9867998388</li>
<li class="list-inline-item top-links" style="border-right:none;">
<a href="enquiry.html" style="border-right:none;">ADMISSION ENQUIRY</a>
</li>
<li class="list-inline-item top-links">
<a href="resources.html">RESOURCES</a>
</li>
<li class="dropdown top-links">
<a class="dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
CAREERS
</a>
<div class="dropdown-menu bg-dark animated fadeIn" aria-labelledby="navbarDropdown">
<a class="dropdown-item hvr-forward" href="#">JEE MAIN & ADVANCED</a>
<a class="dropdown-item hvr-forward" href="#">BITSAT, CET</a>
<!-- <div class="dropdown-divider"></div> -->
<a class="dropdown-item hvr-forward" href="#">NEET, AIIMS, JIPMER</a>
<a class="dropdown-item hvr-forward" href="#">OLYMPIADS</a>
<a class="dropdown-item hvr-forward" href="#">KVPY,IISER</a>
<a class="dropdown-item hvr-forward" href="#">FOUNDATION</a>
</div>
</li>
<li class="list-inline-item top-links"><a href="#">SPARK EXCELLENCE</a></li>
</ul>
<div id="top-toggle"><i class="fa fa-bars"></i></div>
</div>
<div class="navCollapse bg-light">
<ul class="list-unstyled text-center pt-3">
<li><a href="index.html">Home</a></li>
<li><a href="about-us.html">About Us</a></li>
<li><a href="why-paathshala.html">Why Paathshala</a></li>
<li class="dropdown ">
<a class="dropdown-toggle" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Exams
</a>
<div class="dropdown-menu animated fadeIn" aria-labelledby="navbarDropdown">
<a class="dropdown-item hvr-forward" href="jee-exam.html">JEE MAIN & ADVANCED</a>
<a class="dropdown-item hvr-forward" href="bitsat-cet.html">BITSAT, CET</a>
<!-- <div class="dropdown-divider"></div> -->
<a class="dropdown-item hvr-forward" href="neet-aiims-jipmer.html">NEET, AIIMS, JIPMER</a>
<a class="dropdown-item hvr-forward" href="olympiads.html">OLYMPIADS</a>
<a class="dropdown-item hvr-forward" href="kvpy-iiser.html">KVPY,IISER</a>
<a class="dropdown-item hvr-forward" href="foundation.html">FOUNDATION</a>
</div>
</li>
<li class="dropdown">
<a class="dropdown-toggle" href="#" id="Dropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Info
</a>
<div class="dropdown-menu animated fadeIn" aria-labelledby="Dropdown">
<a class="dropdown-item hvr-forward" href="about-iits.html">EVERYTHING ABOUT IIT,s</a>
<a class="dropdown-item hvr-forward" href="medical-colleges.html">TOP MEDICAL COLLEGES</a>
<!-- <div class="dropdown-divider"></div> -->
<a class="dropdown-item hvr-forward" href="nits-iits.html">WHAT ARE NIT's, IIT's</a>
<a class="dropdown-item hvr-forward" href="bits-pilani.html">BITS PILANI</a>
</div>
</li>
<li>
<a href="results.html">Results</a>
</li>
<li>
<a href="testimonials.html">Testimonials</a>
</li>
<li>
<a href="contact-us.html">Contact Us</a>
</li>
</ul>
</div>
<nav class="navbar navbar-expand-lg navbar-dark fixed-top">
<a class="navbar-brand" >
<img src="assets/images/logo/whitelLogo-Paathshala.png" style="height: 6vh">
</a>
<div id="my-nav" class=" collapse navbar-collapse">
<ul class="navbar-nav ml-auto">
<li class="nav-item active">
<a class="nav-link" href="index.html">Home<span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="about-us.html">About Us</a>
</li>
<li class="nav-item">
<a class="nav-link" href="why-paathshala.html">Why Paathshala</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Exams
</a>
<div class="dropdown-menu animated fadeIn" aria-labelledby="navbarDropdown">
<a class="dropdown-item hvr-forward" href="jee-exam.html">JEE MAIN & ADVANCED</a>
<a class="dropdown-item hvr-forward" href="bitsat-cet.html">BITSAT, CET</a>
<!-- <div class="dropdown-divider"></div> -->
<a class="dropdown-item hvr-forward" href="neet-aiims-jipmer.html">NEET, AIIMS, JIPMER</a>
<a class="dropdown-item hvr-forward" href="olympiads.html">OLYMPIADS</a>
<a class="dropdown-item hvr-forward" href="kvpy-iiser.html">KVPY,IISER</a>
<a class="dropdown-item hvr-forward" href="foundation.html">FOUNDATION</a>
</div>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Info
</a>
<div class="dropdown-menu animated fadeIn" aria-labelledby="navbarDropdown">
<a class="dropdown-item hvr-forward" href="about-iits.html">EVERYTHING ABOUT IIT,s</a>
<a class="dropdown-item hvr-forward" href="medical-colleges.html">TOP MEDICAL COLLEGES</a>
<!-- <div class="dropdown-divider"></div> -->
<a class="dropdown-item hvr-forward" href="nits-iits.html">WHAT ARE NIT's, IIT's</a>
<a class="dropdown-item hvr-forward" href="bits-pilani.html">BITS PILANI</a>
</div>
</li>
<li class="nav-item">
<a class="nav-link" href="results.html">Results</a>
</li>
<li class="nav-item">
<a class="nav-link" href="testimonials.html">Testimonials</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact-us.html">Contact Us</a>
</li>
</ul>
</div>
<div id="navCollapsebtn" class="nav-item togglebtn"><i class="fa fa-bars"></i></div>
</nav>
<!-- Header End -->
<!-- Intro -->
<div style="background: black;padding-top:20vh;padding-bottom: 20vh;">
<div class="container p-4 pb-0">
<div id="accordion">
<div class="card bg-dark">
<div class="card-header text-info" id="A1H1" data-toggle="collapse" data-target="#A1C1" aria-expanded="true" aria-controls="A1C1">
<h5 class="mb-0">
National Institutes Of Technology [NITs]
</h5>
</div>
<div id="A1C1" class="collapse show text-light" aria-labelledby="A1H1" data-parent="#accordion">
<div class="card-body">
<p>
The National Institutes of Technology (NITs) are autonomous public institutes of higher education, located in India. They are governed by the National Institutes of Technology Act, 2007, which declared them as institutions of national importance alongside
Indian Institutes of Technology. These institutes of national importance receive special recognition from the Government of India. The NIT Council is the supreme governing body of India's National Institutes of Technology
(NIT) system and all 31 NITs are funded by the Government of India. These institutes are among the top ranked engineering colleges in India and have one of the lowest acceptance rates for engineering institutes, of around
2 to 3 percent, second only to the Indian Institutes of Technology (IITs) in India. All NITs are autonomous which enables them to set up their own curriculum. The language of instruction is English at all these institutes.
</p>
<p>
NITs offer degree courses at bachelors, masters, and doctorate levels in various branches of engineering, architecture, management and science. Admission to the under-graduate courses such as Bachelor of Technology (B.Tech.) and Bachelor of Architecture
(B.Arch) programs in NITs are through the highly competitive Joint Entrance Examination (Main). Admission to postgraduate courses are through the Graduate Aptitude Test in Engineering for Master of Technology (M.Tech.)
and Master of Science (M.Sc.) programs, Common Admission Test for Master of Business Administration (MBA) program and NIMCET for Master of Computer Applications (MCA) program.
</p>
<p>
Since 2015, the Joint Seat Allocation Authority and Centralized Counselling for M.Tech/M.Arch and M.Plan conduct the admission process for undergraduate and postgraduate programs respectively in all NITs. As of 2017, the total number of seats for undergraduate
programs is 19,000 and for post graduate programs is 8,050 in all 31 NITs.
</p>
</div>
</div>
</div>
<div class="card bg-light">
<div class="card-header" id="A1H2" data-toggle="collapse" data-target="#A1C2" aria-expanded="false" aria-controls="A1C2">
<h5 class="mb-0">
NITs And Locations
</h5>
</div>
<div id="A1C2" class="collapse" aria-labelledby="A1H2" data-parent="#accordion">
<div class="card-body">
<table id="example" class="table table-striped table-bordered text-center" cellspacing="0" width="100%">
<thead>
<tr class="text-center">
<th>Serial No.</th>
<th>Name</th>
<th>Short Name</th>
<th>Founded</th>
<th>Established </th>
<th>City/Town</th>
<th>State/UT</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>NIT Allahabad</td>
<td>MNNIT</td>
<td>1961</td>
<td>2001</td>
<td>Allahabad</td>
<td>Uttar Pradesh</td>
</tr>
<tr>
<td>2</td>
<td>NIT Bhopal</td>
<td>MANIT</td>
<td>1960</td>
<td>2002</td>
<td>Bhopal</td>
<td>Madhya Pradesh</td>
</tr>
<tr>
<td>3</td>
<td>NIT Calicut</td>
<td>NITC</td>
<td>1961</td>
<td>2002</td>
<td>Calicut</td>
<td>Kerala</td>
</tr>
<tr>
<td>4</td>
<td>NIT Hamirpur</td>
<td>NITH</td>
<td>1986</td>
<td>2002</td>
<td>Hamirpur</td>
<td>Himachal Pradesh</td>
</tr>
<tr>
<td>5</td>
<td>NIT Jaipur</td>
<td>MNIT</td>
<td>1963</td>
<td>2002</td>
<td>Jaipur</td>
<td>Rajasthan</td>
</tr>
<tr>
<td>6</td>
<td>NIT Jalandhar</td>
<td>NITJ</td>
<td>1987</td>
<td>2002</td>
<td>Jalandhar</td>
<td>Punjab</td>
</tr>
<tr>
<td>7</td>
<td>NIT Jamshedpur</a>
</td>
<td>NITJSR</td>
<td>1960</td>
<td>2002</td>
<td>Jamshedpur</td>
<td>Jharkhand</td>
</tr>
<tr>
<td>8</td>
<td>NIT Kurukshetra</a>
</td>
<td>NITKKR</td>
<td>1963</td>
<td>2002</td>
<td>Kurukshetra</td>
<td>Haryana</td>
</tr>
<tr>
<td>9</td>
<td>NIT Nagpur</td>
<td>VNIT</td>
<td>1960</td>
<td>2002</td>
<td>Nagpur</td>
<td>Maharashtra</td>
</tr>
<tr>
<td>10</td>
<td>NIT Rourkela</td>
<td>NITRKL</td>
<td>1961</td>
<td>2002</td>
<td>Rourkela</td>
<td>Odisha</td>
</tr>
<tr>
<td>11</td>
<td>NIT Silchar</td>
<td>NITS</td>
<td>1967</td>
<td>2002</td>
<td>Silchar</td>
<td>Assam</td>
</tr>
<tr>
<td>12</td>
<td>NIT Karnataka</td>
<td>NITK</td>
<td>1960</td>
<td>2002</td>
<td>Mangalore</td>
<td>Karnataka</td>
</tr>
<tr>
<td>13</td>
<td>NIT Warangal</td>
<td>NITW</td>
<td>1959</td>
<td>2002</td>
<td>Warangal</td>
<td>Telangana</td>
</tr>
<tr>
<td>14</td>
<td>NIT Durgapur</td>
<td>NITDGP</td>
<td>1960</td>
<td>2003</td>
<td>Durgapur</td>
<td>West Bengal</td>
</tr>
<tr>
<td>15</td>
<td>NIT Srinagar</td>
<td>NITSRI</td>
<td>1960</td>
<td>2003</td>
<td>Srinagar</td>
<td>Jammu and Kashmir</td>
</tr>
<tr>
<td>16</td>
<td>NIT Surat</td>
<td>SVNIT</td>
<td>1961</td>
<td>2003</td>
<td>Surat</td>
<td>Gujarat</td>
</tr>
<tr>
<td>17</td>
<td>NIT Trichy</td>
<td>NITT</td>
<td>1964</td>
<td>2003</td>
<td>Trichy</td>
<td>Tamil Nadu</td>
</tr>
<tr>
<td>18</td>
<td>NIT Patna</td>
<td>NITP</td>
<td>1886</td>
<td>2004</td>
<td>Patna</td>
<td>Bihar</td>
</tr>
<tr>
<td>19</td>
<td>NIT Raipur</td>
<td>NITRR</td>
<td>1956</td>
<td>2005</td>
<td>Raipur</td>
<td>Chhattisgarh</td>
</tr>
<tr>
<td>20</td>
<td>NIT Agartala</td>
<td>NITA</td>
<td>1965</td>
<td>2006</td>
<td>Agartala</td>
<td>Tripura</td>
</tr>
<tr>
<td>21</td>
<td>NIT Arunachal Pradesh</td>
<td>NITAP</td>
<td>2010</td>
<td>2010</td>
<td>Yupia</td>
<td>Arunachal Pradesh</td>
</tr>
<tr>
<td>22</td>
<td>NIT Delhi</td>
<td>NITD</td>
<td>2010</td>
<td>2010</td>
<td>New Delhi</td>
<td>Delhi</td>
</tr>
<tr>
<td>23</td>
<td>NIT Goa</td>
<td>NITG</td>
<td>2010</td>
<td>2010</td>
<td>Farmagudi</td>
<td>Goa</td>
</tr>
<tr>
<td>24</td>
<td>NIT Manipur</td>
<td>NITMN</td>
<td>2010</td>
<td>2010</td>
<td>Imphal</td>
<td>Manipur</td>
</tr>
<tr>
<td>25</td>
<td>NIT Meghalaya</td>
<td>NITM</td>
<td>2010</td>
<td>2010</td>
<td>Shillong</td>
<td>Meghalaya</td>
</tr>
<tr>
<td>26</td>
<td>NIT Mizoram</td>
<td>NITMZ</td>
<td>2010</td>
<td>2010</td>
<td>Aizawl</td>
<td>Mizoram</td>
</tr>
<tr>
<td>27</td>
<td>NIT Nagaland</td>
<td>NITN</td>
<td>2010</td>
<td>2010</td>
<td>Dimapur</td>
<td>Nagaland</td>
</tr>
<tr>
<td>28</td>
<td>NIT Puducherry</td>
<td>NITPY</td>
<td>2010</td>
<td>2010</td>
<td>Karaikal</td>
<td>Puducherry</td>
</tr>
<tr>
<td>29</td>
<td>NIT Sikkim</td>
<td>NITSKM</td>
<td>2010</td>
<td>2010</td>
<td>Ravangla</td>
<td>Sikkim</td>
</tr>
<tr>
<td>30</td>
<td>NIT Uttarakhand</td>
<td>NITUK</td>
<td>2010</td>
<td>2010</td>
<td>Srinagar</td>
<td>Uttarakhand</td>
</tr>
<tr>
<td>31</td>
<td>NIT Andhra Pradesh</td>
<td>NITANP</td>
<td>2015</td>
<td>2015</td>
<td>Tadepalligudem</td>
<td>Andhra Pradesh</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div class="card bg-dark">
<div class="card-header text-info" id="A1H3" data-toggle="collapse" data-target="#A1C3" aria-expanded="false" aria-controls="A1C3">
<h5 class="mb-0">
Education At NITs
</h5>
</div>
<div id="A1C3" class="collapse text-light p-3" aria-labelledby="A1H3" data-parent="#accordion">
<div class="card-body">
<p>
The NITs along with the IITs receive comparatively higher grants than other engineering colleges in India. Average NIT funding increased to ₹100 crores ($15.4 million) by year 2011. On average, each NIT also receives ₹ 20-25 crore ($3-3.8 million) under World Bank funded Technical Education Quality Improvement Program (TEQIP I and TEQIP II). Other sources of funds include student fees and research funding from industry and contributions from the alumni. The faculty-to-student ratio in the NITs is between 1:7 and 1:9. The cost borne by undergraduate students is around ₹ 125,000 ($1934) per annum. After students from SC and ST categories, physically challenged students will now be the beneficiaries of fee waiver at the NITs in India.
</p>
<p>
The various NITs function autonomously, and their special status as Institutes of National Importance facilitates the smooth running of NITs, virtually free from both regional as well as student politics. Such autonomy means that NITs can create their own curricula and adapt rapidly to the changes in educational requirements, free from bureaucratic hurdles. The medium of instruction in all NITs is English. The classes are usually held between 8:30 am and 5:30 pm, though there are some variations within each NIT. All the NITs have public libraries for the use of their students. In addition to a collection of prescribed books, the libraries have sections for fiction and other literary genres. Electronic libraries allow students access to online journals and other periodicals through the AICTE-INDEST consortium, an initiative by the Ministry of Human Resource Development. Students also have access to IEEE documents and journals.
</p>
<p>
The academic policies of each IIT are decided by its Senate. This comprises all professors of the IIT and student representatives. Unlike many western universities that have an elected senate, the IITs have an academic senate. It controls and approves
the curriculum, courses, examinations and results, and appoints committees to look into specific academic matters. The teaching, training and research activities of the institute are periodically reviewed by the senate
to maintain educational standards. The Director of an IIT is the ex-officio Chairman of the Senate.
</p>
<p>
Stringent faculty recruitment and industry collaboration also contribute to NIT success. Faculty other than lecturers must have a Ph.D. and relevant teaching and industry experience. Existing faculty who do not meet these criteria enroll under a Quality Improvement Programme (QIP) at IITs and IISc.
</p>
<p>
All the NITs follow the credits system of performance evaluation, with proportional weighting of courses based on their importance. The total marks (usually out of 100) form the basis of grades, with a grade value (out of 10) assigned to a range of marks. Sometimes, relative grading is done considering the overall performance of the whole class. For each semester, the students are graded on a scale of 0 to 10 based on their performance, by taking a weighted average of the grade points from all the courses, with their respective credit points. Each semester evaluation is done independently and then the weighted average over all semesters is used to calculate the cumulative grade point average (CGPA).
</p>
</div>
</div>
</div>
<div class="card bg-light">
<div class="card-header text-dark" id="A1H4" data-toggle="collapse" data-target="#A1C4" aria-expanded="false" aria-controls="A1C4">
<h5 class="mb-0">
Undergraduate Education At The NITs
</h5>
</div>
<div id="A1C4" class="collapse text-dark p-3" aria-labelledby="A1H4" data-parent="#accordion">
<div class="card-body">
<p><i class="fa fa-star"></i>
The Bachelor of Technology (BTech) degree is the most common undergraduate degree in the NITs in terms of student enrollment. The BTech course is based on a 4-year program with eight semesters, while the Dual Degree and Integrated courses are 5-year programs with ten semesters. In all NITs, the first year of BTech and Dual Degree courses are marked by a common course structure for all the students, though in some NITs, a single department introduction related course is also included. The common courses include the basics from most of the departments like Electronics, Mechanics, Chemistry, Electrical and Physics. At the end of first year, some NITs offer an option to the meritorious students to change departments on the basis of their performance in the first two semesters. Few such changes ultimately take place as the criteria for them are usually strict, limited to the most meritorious students. Few NITs also offer 5-year Bachelor of Architecture (BArch) and 4-year Bachelor of Science (BSc) degrees.
</p>
<p><i class="fa fa-star"></i>
From the second year onwards, the students study subjects exclusively from their respective departments. In addition to these, the students have to take compulsory advanced courses from other departments in order to broaden their education. Separate compulsory courses from humanities and social sciences department, and sometimes management courses are also enforced. In the last year of their studies, most of the students are placed into industries and organisations via the placement process of the respective NIT, though some students opt out of this either when going for higher studies or when they take up jobs by applying to the companies directly.
</p>
</div>
</div>
</div>
<div class="card bg-dark">
<div class="card-header text-info" id="A1H5" data-toggle="collapse" data-target="#A1C5" aria-expanded="false" aria-controls="A1C5">
<h5 class="mb-0">
Indian Institutes Of Information Technology [IIIT]
</h5>
</div>
<div id="A1C5" class="collapse text-light" aria-labelledby="A1H5" data-parent="#accordion">
<div class="card-body">
<p>
Indian Institutes of Information Technology (IIITs) are a group of institutes of higher education in India, focused on information technology. Five of them are established, funded and managed by the Ministry of Human Resource Development. The rest are set up on the public-private partnership (PPP) model.
</p>
<p>
Prior to 2010, the IIITs at Gwalior, Allahabad, Jabalpur and Kancheepuram were set up by the Ministry of Human Resource Development (MHRD).
</p>
<p>
In 2010 the Indian Institutes of Information Technology Bill 2010 was introduced in Lok Sabha.[citation needed] The bill sought to grants the status of Institutes of National Importance (INI) upon the four IIITs. After much debate and changes, the bill was passed by the Parliament on December 1, 2014[citation needed] and published as the Indian Institutes of Information Technology Act, 2014 on 8 December 2014, coming into effect on 5 January 2015.
</p>
<p>
In 2015, a fifth institute was set up by the MHRD in Kurnool,[1] as part as the government obligation under the Andhra Pradesh Reorganisation Act, 2014. The Indian Institutes of Information Technology (Amendment) Act, 2017 granted the INI status to the Kurnool institute.
</p>
<p>
Besides the above fully government funded IIITs, in 2010 the Union Cabinet approved a scheme for setting up twenty more IIITs, based on the public-private partnership (PPP) model, funded by the central government, state governments and industry partners in the ratio 50:35:15. As of 2014, 23 proposals were made by 21 states (Andhra Pradesh (Chittoor & Kakinada), Assam, Bihar, Chhattisgarh, Goa, Gujarat, Haryana, Himachal Pradesh, Jharkhand, Karnataka, Kerala, Madhya Pradesh, Maharashtra (Pune & Nagpur), Manipur, Orissa, Punjab, Rajasthan, Tamil Nadu, Tripura, West Bengal and Uttar Pradesh), and 16 proposals were approved (Andhra Pradesh (Chittoor), Andhra Pradesh (Kakinada), Assam, Gujarat, Haryana, Himachal Pradesh, Karnataka, Kerala, Madhya Pradesh, Rajasthan, Tamil Nadu , Maharashtra (Pune), Uttar Pradesh, West Bengal , Manipur and Tripura). As of 2017 14 of these IIITs were set up, the ones not being set up are the ones in Kakinada, Andhra Pradesh and in Bodhjungnagar, Tripura. In addition, in 2015 the MHRD approved an IIIT in Nagpur, Maharashtra and in Ranchi, Jharkhand. An IIIT in Bhagalpur, Bihar was approved in 2016. Finally, to close the list of 20, an IIIT in Surat, Gujarat was approved and set up in 2017. As of September 2017, these four institutes were already established, leaving only the institutes in Kakinada and Bodhjungnagar which are yet to be established.
</p>
<p>
On 9th August 2017, The Indian Institutes of Information Technology (Public-Private Partnership) Act, 2017 has been notified in the Gazette of India. The Act confers the status of Institutes of National Importance to fifteen IIITs set up on the public-private partnership (PPP) mode in Vadodara, Guwahati, Sri City, Kota, Tiruchirapalli, Kalyani, Una, Sonepat, Lucknow, Kottayam, Senapati (Manipur), Dharwad, Pune, Nagpur and Ranchi.
</p>
<p>
The three IIITs set up under the PPP model in 2017, namely institutes in Surat, Bhopal and Bhagalpur, were not mentioned in the 2017 PPP act, nor were the institutes in Kakinada and Bodhjungnagar.
</p>
<p>
In 2018, the Government of Tripura approved ₹50.67 crore (US$7.1 million) for the establishment of IIIT Bodhjungnagar, which was stalled since 2012, covering ₹5.82 crore (US$810,000) which were missing from private sources under the PPP model. The institution was set to start classes in the 2018-2019 academic session from the NIT Agartala campus.
</p>
</div>
</div>
</div>
<div class="card bg-light">
<div class="card-header text-dark" id="A1H6" data-toggle="collapse" data-target="#A1C6" aria-expanded="false" aria-controls="A1C6">
<h5 class="mb-0">
IIITs And Locations
</h5>
</div>
<div id="A1C6" class="collapse text-dark p-3" aria-labelledby="A1H6" data-parent="#accordion">
<div class="card-body">
<table id="example" class="table table-striped table-bordered text-center" cellspacing="0" width="100%">
<thead>
<tr class="text-center">
<th>Name</th>
<th>Short Name</th>
<th>Established</th>
<th>Mode</th>
<th>State/UT</th>
</tr>
</thead>
<tbody>
<tr>
<td>Atal Bihari Vajpayee Indian Institute of Information Technology and Management, Gwalior</td>
<td>ABV-IIITM Gwalior
</td>
<td>1997</td>
<td>MHRD</td>
<td>Madhya Pradesh
</td>
</tr>
<tr>
<td>Indian Institute of Information Technology, Allahabad</td>
<td>IIITA
</td>
<td>1999</td>
<td>MHRD</td>
<td>Uttar Pradesh
</td>
</tr>
<tr>
<td>Indian Institute of Information Technology, Design and Manufacturing, Jabalpur</td>
<td>IIITDMJ
</td>
<td>2005</td>
<td>MHRD</td>
<td>Madhya Pradesh
</td>
</tr>
<tr>
<td>Indian Institute of Information Technology, Design and Manufacturing, Kancheepuram</td>
<td>IIITDM Kancheepuram
</td>
<td>2007</td>
<td>MHRD</td>
<td>Tamil Nadu
</td>
</tr>
<tr>
<td>Indian Institute of Information Technology, Sri City</td>
<td>IIITS
</td>
<td>2013</td>
<td>PPP</td>
<td>Andhra Pradesh
</td>
</tr>
<tr>
<td>Indian Institute of Information Technology, Guwahati</td>
<td>IIITG
</td>
<td>2013</td>
<td>PPP</td>
<td>Assam
</td>
</tr>
<tr>
<td>Indian Institute of Information Technology, Vadodara </td>
<td>IIITV
</td>
<td>2013</td>
<td>PPP</td>
<td>Gujarat
</td>
</tr>
<tr>
<td>Indian Institute of Information Technology, Kota</td>
<td>IIITK
</td>
<td>2013</td>
<td>PPP</td>
<td>Rajasthan
</td>
</tr>
<tr>
<td>Indian Institute of Information Technology Tiruchirappalli</td>
<td>IIITT
</td>
<td>2013</td>
<td>PPP</td>
<td>Tamil Nadu
</td>
</tr>
<tr>
<td>Indian Institute of Information Technology Una</td>
<td>IIITU
</td>
<td>2014</td>
<td>PPP</td>
<td>Himachal Pradesh
</td>
</tr>
<tr>
<td>Indian Institute of Information Technology, Sonepat</td>
<td>IIIT Sonepat
</td>
<td>2014</td>
<td>PPP</td>
<td>Haryana
</td>
</tr>
<tr>
<td>Indian Institute of Information Technology, Kalyani</td>
<td>IIIT Kalyani
</td>
<td>2014</td>
<td>PPP</td>
<td>West Bengal
</td>
</tr>
<tr>
<td>Indian Institute of Information Technology, Lucknow</td>
<td>IIITL
</td>
<td>2015</td>
<td>PPP</td>
<td>Uttar Pradesh
</td>
</tr>
<tr>
<td>Indian Institute of Information Technology, Dharwad</td>
<td>IIITD
</td>
<td>2015</td>
<td>PPP</td>
<td>Karnataka
</td>
</tr>
<tr>
<td>Indian Institute of Information Technology Design and Manufacturing, Kurnool </td>
<td>IIITDM Kurnool
</td>
<td>2015</td>
<td>MHRD</td>
<td>Andhra Pradesh
</td>
</tr>
<tr>
<td>Indian Institute of Information Technology, Kottayam</td>
<td>IIIT Kottayam
</td>
<td>2015</td>
<td>PPP</td>
<td>Kerala
</td>
</tr>
<tr>
<td>Indian Institute of Information Technology, Manipur</td>
<td>IIIT Manipur
</td>
<td>2015</td>
<td>PPP</td>
<td>Manipur
</td>
</tr>
<tr>
<td>Indian Institute of Information Technology, Nagpur</td>
<td>IIITN
</td>
<td>2016</td>
<td>PPP</td>
<td>Maharashtra
</td>
</tr>
<tr>
<td>Indian Institute of Information Technology, Pune</td>
<td>IIITP
</td>
<td>2016</td>
<td>PPP</td>
<td>Maharashtra
</td>
</tr>
<tr>
<td>Indian Institute of Information Technology, Ranchi</td>
<td>IIIT Ranchi
</td>
<td>2016</td>
<td>PPP</td>
<td>Jharkhand
</td>
</tr>
<tr>
<td>Indian Institute of Information Technology, Surat</td>
<td>IIIT Surat
</td>
<td>2017</td>
<td>PPP</td>
<td>Gujarat
</td>
</tr>
<tr>
<td>Indian Institute of Information Technology, Bhopal</td>
<td>IIIT Bhopal
</td>
<td>2017</td>
<td>PPP</td>
<td>Madhya Pradesh
</td>
</tr>
<tr>
<td>Indian Institute of Information Technology, Bhagalpur</td>
<td>IIIT Bhagalpur
</td>
<td>2017</td>
<td>PPP</td>
<td>Bihar
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Intro End -->
<!-- Features of Pathshala Cards -->
<!-- Features of Pathshala Cards End -->
<!-- Form For Enrollment -->
<!-- Form For Enrollment End -->
<!-- Testimonial -->
<!-- Testimonial End -->
<!-- Footer -->
<footer style="background: black;">
<div class="container">
<div class="row p-4 mb-0 wow slideInUp" style="text-align: center;">
<div class="footer-menu" style="width: 30%;display: inline-block;margin-left: 2vw;">
<ul class="list-unstyled">
<li>JEE [MAIN], JEE [ADVANCED]</li>
<li>BITSAT, CET</li>
<li>NEET, AIIMS, JIPMER</li>
<li>OLYMPIADS</li>
<li>KVPY, IISER</li>
<li>FOUNDATION</li>
</ul>
</div>
<div class="footer-menu wow slideInUp">
<ul class="list-unstyled">
<li>EVERYTHING ABOUT IITs</li>
<li>TOP MEDICAL COLLEGES</li>
<li>WHAT ARE NITs, IIITs</li>
<li>BITS PILANI</li>
</ul>
</div>
<div class="footer-menu wow slideInUp">
<ul class="list-unstyled">
<li>ADMISSION ENQUIRY</li>
<li>RESOURCES</li>
<li>CAREERS</li>
<li>SPARK EXCELLENCE</li>
</ul>
</div>
</div>
<div style="border:1px solid white;display: block"></div>
<div class="row p-3 wow slideInUp" style="text-align: center">
<div id="about" style="display: inline-block;width:48%;color:white;font-size:13px;padding: 1vw;text-align:left;">
<span class="badge badge-primary" style="margin-bottom: 2vh;">About Us</span>
<p>
We are a premiere education institute and one of the fastest growing education institutes in India. We are focused on providing quality education with state-of-the-art infrastructure, like nowhere in India and guidance for the students of XI and XII standard
science, aspiring to crack competitive entrance exams like the IIT JEE, BITSAT, NEET, JIPMER, AIIMS etc and Boards
</p>
<ul class="list-inline">
<li class="list-inline-item">
<i class="fa fa-facebook"></i>
</li>
<li class="list-inline-item">
<i class="fa fa-twitter"></i>
</li>
<li class="list-inline-item">
<i class="fa fa-pinterest-p"></i>
</li>
<li class="list-inline-item">
<i class="fa fa-linkedin"></i>
</li>
<li class="list-inline-item">
<i class="fa fa-instagram"></i>
</li>
<li class="list-inline-item">
<i class="fa fa-youtube-play"></i>
</li>
</ul>
</div>
<div id="contact" class="wow slideInUp" style="display: inline-block;width:48%;color:white;font-size:13px;padding: 1vw;text-align:left;">
<span class="badge badge-primary" style="margin-bottom: 2vh;">Contact Us</span>
<p>
Office: 201, Dighe House, Opp Karnavat Classes, Lohar Ali Lane, Behind Jagdish Book Depot, Near Thane Railway Station, Thane West - 400601, Maharashtra, India.
</p>
<ul class="list-unstyled contactlist">
<li><i class="fa fa-phone"></i> Admissions: +91 9867998388</li>
<li><i class="fa fa-id-card"></i> Appointment: 022 4970 8979</li>
<li><i class="fa fa-handshake-o"></i> HR: +91 8657482467</li>
<li><i class="fa fa-university"></i> Admissions: [email protected]</li>
<li><i class="fa fa-envelope-open"></i> Affiliations and HR: [email protected]</li>
<li><i class="fa fa-envelope-o"></i> Academics: [email protected]</li>
</ul>
</div>
</div>
<div class="text-light text-center p-4 wow slideInUp">
Copyright © 2019 Paathshala Education. All Rights Reserved. Designed and Developed by: Paathshala Education
</div>
</div>
</footer>
</body>
<!-- Boostrap Js -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.js" integrity="sha256-WpOohJOqMqqyKL9FccASB9O0KwACQJpFTUBLTYOVvVU=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap-select.min.js"></script>
<script>
$('select').selectpicker();
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/wow/1.1.2/wow.min.js"></script>
<script>
new WOW().init();
</script>
<script>
$(function() {
$(window).scroll(function() {
if ($(window).scrollTop() >= 20) {
$(".togglebtn").css("color", "black");
$('.navbar').removeClass('navbar-dark');
$('.navbar').addClass('navbar-light bg-light');
$(".navbar").css("margin-top", "0vh")
$(".navbar-brand img").attr("src", "assets/images/logo/ps.png");
} else {
$(".togglebtn").css("color", "white");
$('.navbar').removeClass('bg-light');
$('.navbar').addClass('navbar-dark');
$(".navbar").css("margin-top", "3vh")
$(".navbar-brand img").attr("src", "assets/images/logo/whitelLogo-Paathshala.png");
}
});
});
</script>
<!-- <script src="assets/js/index.js"></script> -->
<script src="assets/js/responsive.js"></script>
<script src="enquiry.js"></script>
</html>