-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
1546 lines (1494 loc) · 46.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
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!-- @prettier -->
<!DOCTYPE html>
<html lang="en">
<head>
<!-- All credit of web development goes to Reha IIIT Dharwad 2019 Batch -->
<meta charset="utf-8" />
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<!-- Global site tag (gtag.js) - Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=UA-166050406-1"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-166050406-1');
</script>
<!-- Title of your page: add the name of your IIIT-->
<title>Counselling | IIITians Network</title>
<meta
content="This is All IIIT page of the community IIITians Network"
name="descriptison"
/>
<!--You have to update the name of your IIIT in both these lines -->
<meta content="IIITians Network - All IIIT" name="keywords" />
<!-- Favicons -->
<link href="img/logo/iiitian.png" rel="icon" />
<link href="img/logo/iiitian.png" rel="apple-touch-icon" />
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600&family=Roboto&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<!-- Vendor CSS Files -->
<link
href="assets/vendor/bootstrap/css/bootstrap.min.css"
rel="stylesheet"
/>
<link href="assets/vendor/icofont/icofont.min.css" rel="stylesheet" />
<link
href="assets/vendor/boxicons/css/boxicons.min.css"
rel="stylesheet"
/>
<link href="assets/vendor/venobox/venobox.css" rel="stylesheet" />
<link
href="assets/vendor/owl.carousel/assets/owl.carousel.min.css"
rel="stylesheet"
/>
<link href="assets/vendor/aos/aos.css" rel="stylesheet" />
<!-- Animation for text -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Anton"
/>
<link rel="stylesheet" href="./style.css" />
<!-- Font awesome icons-->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<!-- Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet" />
<link href="assets/css/custom.css" rel="stylesheet" />
<link href="assets/css/footer.css" rel="stylesheet" />
<link rel="stylesheet" href="assets/css/heading.css" type="text/css" />
<link href="custom.css" rel="stylesheet" />
<!-- Carousel files -->
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css"
/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<!--================================== STUDENT's LIFE CSS FILES =======================================================-->
<link
rel="stylesheet"
type="text/css"
href="assets/css/studentsLife.css"
/>
<!--================================== STUDENT's LIFE CSS FILE END =======================================================-->
<!--==================================Counter Up files ====================-->
<!-- <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"> -->
<!-- <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"> -->
<script
src="https://code.jquery.com/jquery-1.12.4.min.js"
integrity="sha256-ZosEbRLbNQzLpnKIkEdrPv7lOy9C27hHQ+Xp8a4MxAQ="
crossorigin="anonymous"
></script>
<!--==================================Counter Up files over ==============-->
<!--================= Loader Part start ===============-->
<script type="text/javascript">
$(window).load(function () {
$('.se-pre-con').fadeOut('slow');
});
</script>
<style>
.no-js #loader {
display: none;
}
.js #loader {
display: block;
position: absolute;
left: 100px;
top: 0;
}
.se-pre-con {
position: fixed;
left: 0px;
top: 0px;
width: 100%;
height: 100%;
z-index: 9999;
background: url('./img/loader/loader_high_quality.gif') center
no-repeat #fff;
}
@media screen and (max-width: 670px) {
.se-pre-con {
background-size: contain;
}
}
/* black font in all iiit dropdown */
.all-iiit a {
color: #121212;
}
</style>
<!-- =================== Loader part ended=================== -->
<!-- auto hide navigation on scroll -->
<script type="text/javascript">
var prevScrollpos = window.pageYOffset;
window.onscroll = function () {
var currentScrollPos = window.pageYOffset;
if (prevScrollpos > currentScrollPos) {
document.getElementById('header').style.top = '0';
} else {
document.getElementById('header').style.top = '-75px';
}
prevScrollpos = currentScrollPos;
};
</script>
</head>
<body style="overflow-x: hidden">
<div class="se-pre-con"></div>
<!-- ======= Header ======= -->
<header id="header" class="fixed-top">
<div class="container-fluid d-flex">
<div class="logo mr-auto">
<a href="index.html">
<img
src="img/logo/logo.png"
alt="Logo | IIITians Network | IIIT | Community | Indian Institute of Information Technology"
class="img-fluid"
/>
</a>
</div>
<nav class="nav-menu d-none d-lg-block">
<ul>
<li><a href="https://iiitiansnetwork.com">Home</a></li>
<li class="active">
<a
href="https://jeecounselling.iiitiansnetwork.com/"
>Jee Counselling</a
>
</li>
<li>
<a href="https://placement.iiitiansnetwork.com/"
>IIIT Placements</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"
>
All IIIT
</a>
<div
class="dropdown-menu all-iiit"
aria-labelledby="navbarDropdown"
style="max-height: 400px; overflow-y: scroll"
>
<a
class="dropdown-item"
target="_blank"
href="https://agartala.iiitiansnetwork.com"
>IIIT Agartala</a
>
<a
class="dropdown-item"
target="_blank"
href="https://allahabad.iiitiansnetwork.com"
>IIIT Allahabad</a
>
<a
class="dropdown-item"
target="_blank"
href="https://bhagalpur.iiitiansnetwork.com"
>IIIT Bhagalpur</a
>
<a
class="dropdown-item"
target="_blank"
href="https://bhopal.iiitiansnetwork.com"
>IIIT Bhopal</a
>
<a
class="dropdown-item"
target="_blank"
href="https://dharwad.iiitiansnetwork.com"
>IIIT Dharward</a
>
<a
class="dropdown-item"
target="_blank"
href="https://guwahati.iiitiansnetwork.com"
>IIIT Guwahati</a
>
<a
class="dropdown-item"
target="_blank"
href="https://gwalior.iiitiansnetwork.com"
>IIITM Gwalior</a
>
<a
class="dropdown-item"
target="_blank"
href="https://jabalpur.iiitiansnetwork.com"
>IIITDM Jabalpur</a
>
<a
class="dropdown-item"
target="_blank"
href="https://kalyani.iiitiansnetwork.com"
>IIIT Kalyani</a
>
<a
class="dropdown-item"
target="_blank"
href="https://kancheepuram.iiitiansnetwork.com"
>IIITDM Kancheepuram</a
>
<a
class="dropdown-item"
target="_blank"
href="https://kota.iiitiansnetwork.com"
>IIIT Kota</a
>
<a
class="dropdown-item"
target="_blank"
href="https://kurnool.iiitiansnetwork.com"
>IIITDM Kurnool</a
>
<a
class="dropdown-item"
target="_blank"
href="https://lucknow.iiitiansnetwork.com"
>IIIT Lucknow</a
>
<a
class="dropdown-item"
target="_blank"
href="https://manipur.iiitiansnetwork.com"
>IIIT Manipur</a
>
<a
class="dropdown-item"
target="_blank"
href="https://nagpur.iiitiansnetwork.com"
>IIIT Nagpur</a
>
<a
class="dropdown-item"
target="_blank"
href="https://pune.iiitiansnetwork.com"
>IIIT Pune</a
>
<a
class="dropdown-item"
target="_blank"
href="https://raichur.iiitiansnetwork.com"
>IIIT Raichur</a
>
<a
class="dropdown-item"
target="_blank"
href="https://ranchi.iiitiansnetwork.com"
>IIIT Ranchi</a
>
<a
class="dropdown-item"
target="_blank"
href="https://sonepat.iiitiansnetwork.com"
>IIIT Sonepat</a
>
<a
class="dropdown-item"
target="_blank"
href="https://sricity.iiitiansnetwork.com"
>IIIT Sri City</a
>
<a
class="dropdown-item"
target="_blank"
href="https://surat.iiitiansnetwork.com"
>IIIT Surat</a
>
<a
class="dropdown-item"
target="_blank"
href="https://tiruchirapalli.iiitiansnetwork.com"
>IIIT Tiruchirapalli</a
>
<a
class="dropdown-item"
target="_blank"
href="https://una.iiitiansnetwork.com"
>IIIT Una</a
>
<a
class="dropdown-item"
target="_blank"
href="https://vadodara.iiitiansnetwork.com"
>IIIT Vadodara</a
>
</div>
</li>
<li>
<a href="https://team.iiitiansnetwork.com/"
>Our Team</a
>
</li>
<li>
<a href="https://contact.iiitiansnetwork.com/"
>Contact</a
>
</li>
</ul>
</nav>
<!-- .nav-menu -->
</div>
</header>
<!-- End Header -->
<main id="main" style="overflow-x: hidden">
<!-- ======= Hero Section ======= -->
<section
id="hero"
class="d-flex align-items-center justify-content-center"
>
<div id="particles-js"></div>
<div class="container particle-overlay" data-aos="fade-up">
<div
class="row justify-content-center"
data-aos="fade-up"
data-aos-delay="150"
>
<div class="col-xl-6 col-lg-6">
<h1 style="color: #ffc451">
<span><b>JEE Counselling 2020</b></span>
</h1>
</div>
<link
href="https://fonts.googleapis.com/css?family=Raleway:200,100,400"
rel="stylesheet"
type="text/css"
/>
</div>
<h1>
<br />
<span
class="txt-rotate"
data-period="2000"
data-rotate='[ "Predict your ranks", "Compare your colleges", "Ask to IIITians"]'
></span>
</h1>
<br />
<br />
<div
class="row mt-5 justify-content-center"
data-aos="zoom-in"
data-aos-delay="250"
>
<div class="col-xl-2 col-md-4 col-6 mt-4 mt-xl-0">
<div class="icon-box">
<i class="ri-paint-brush-line"></i>
<h3>
<a href="Choicefillingtool.html"
>Choice Filling Tool</a
>
</h3>
</div>
</div>
<div class="col-xl-2 col-md-4 col-6 mt-4 mt-md-0">
<div class="icon-box">
<i class="ri-calendar-todo-line"></i>
<h3>
<a href="Rankpredictor.html"
>Rank Predictor</a
>
</h3>
</div>
</div>
<div class="col-xl-2 col-md-4 col-6 mt-4 mt-xl-0">
<div class="icon-box">
<i class="ri-paint-brush-line"></i>
<h3>
<a href="collegepredictor.html"
>College Predictor</a
>
</h3>
</div>
</div>
<div class="col-xl-2 col-md-4 col-6 mt-4 mt-xl-0">
<div class="icon-box">
<i class="ri-database-2-line"></i>
<h3><a href="">College Comparator</a></h3>
</div>
</div>
<div class="col-xl-2 col-md-4 col-6 mt-4 mt-xl-0">
<div class="icon-box">
<i class="ri-paint-brush-line"></i>
<h3><a href="https://ask-to-iiitians.herokuapp.com/form/">Question to IIITians</a></h3>
</div>
</div>
</div>
<br />
<br />
</div>
</section>
<!-- End Hero -->
<!-- ======= Why Us Section ======= -->
<section
id="why-us"
class="why-us section-bg"
style="background-color: #fff2e5"
>
<div class="container">
<div class="section-title" data-aos="fade-up">
<p>Resources</p>
</div>
<div class="row">
<div
class="col-lg-4 col-md-6 d-flex align-items-stretch"
data-aos="zoom-in"
data-aos-delay="150"
>
<div class="card">
<a
href="https://drive.google.com/drive/folders/1GXwwB1mNwSdKj_IBb7jh-eLZFyVzNyPe?usp=sharing"
><img
src="img/counselling/Curriculum.jpg"
class="card-img-top"
alt="..."
/></a>
<div class="card-icon">
<i class="bx bx-book-reader"></i>
</div>
<div class="card-body">
<h5 class="card-title">
<a
href="https://drive.google.com/drive/folders/1GXwwB1mNwSdKj_IBb7jh-eLZFyVzNyPe?usp=sharing"
>IIIT Curriculum</a
>
</h5>
<p class="card-text">
The list of all Subjects offered by
IIITs under difference semester is given
in a structred drive. New courses might
be added to these list as and when they
are approved.
</p>
</div>
</div>
</div>
<div
class="col-lg-4 col-md-6 d-flex align-items-stretch"
data-aos="zoom-in"
data-aos-delay="150"
>
<div class="card">
<a
href="https://drive.google.com/drive/folders/1inKl9lDpKDDg2PV6SuDQQwRjxfZTpfWz?usp=sharing"
><img
src="img/counselling/Notes.jpg"
class="card-img-top"
alt="..."
/></a>
<div class="card-icon">
<i class="bx bx-calendar-edit"></i>
</div>
<div class="card-body">
<h5 class="card-title">
<a
href="https://drive.google.com/drive/folders/1inKl9lDpKDDg2PV6SuDQQwRjxfZTpfWz?usp=sharing"
>Pre-Admission Study Resources</a
>
</h5>
<p class="card-text">
Here, we have collected all the
resources of Coding, and other fields,
the books we IIITians study here, notes,
and comprehensive collection other
courses, projects and research papers.
</p>
</div>
</div>
</div>
<div
class="col-lg-4 col-md-6 d-flex align-items-stretch"
data-aos="zoom-in"
data-aos-delay="150"
>
<div class="card">
<a
href="https://drive.google.com/drive/folders/1b_AIyiYsDZ8ynEY2kHt8B83xKIBA-dDH?usp=sharing"
><img
src="img/counselling/fee.jpg"
class="card-img-top"
alt="..."
/></a>
<div class="card-icon">
<i class="bx bx-landscape"></i>
</div>
<div class="card-body">
<h5 class="card-title">
<a
href="https://drive.google.com/drive/folders/1b_AIyiYsDZ8ynEY2kHt8B83xKIBA-dDH?usp=sharing"
>Fee Structure</a
>
</h5>
<p class="card-text">
Fees Structure of various courses
offered by the institutes is mentioned.
Please keep in mind that the fees
structure may be subjected to change and
will be updated in the website
accordingly.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Why Us Section -->
<!-- ======= Testimonials Section ======= -->
<section id="testimonials" class="testimonials">
<div class="container">
<div class="section-title" data-aos="fade-up">
<p>Featured Quora Answers from IIITians</p>
</div>
<div class="row">
<div class="col-lg-6 my-4" data-aos="fade-right">
<div class="testimonial-item">
<img
src="assets/img/testimonials/testimonials-1.jpg"
class="testimonial-img"
alt=""
/>
<h3>
Should I join IIIT Sonepat this year? Can
you tell me about the current campus and
what if it got shifted later? Will it affect
placement?
</h3>
<h4>Samarth Mehra, IIIT Sonepat</h4>
<p>
<i
class="bx bxs-quote-alt-left quote-icon-left"
></i>
I don't think there can be any hesitation
joining the IIIT Sonepat seeing the Hostels
in which the students live in, the coding
culture and also the excellent placements
records that it's showing every
year.Currently our classes are being
conducted at IIT Delhi I-Tec Technopark and
the hostels here are just amazing beyond
your imagination of how good the hostels
could be. We've fully furnished rooms
consisting of that elegant woodwork
<a
href="https://www.quora.com/search?q=IIIT+Sonepat&time=week"
>Read full answer on quora...</a
>
<i
class="bx bxs-quote-alt-right quote-icon-right"
></i>
</p>
<h6 style="color: darkgray">
September 13, 2020
</h6>
</div>
</div>
<div class="col-lg-6 my-4" data-aos="fade-left">
<div class="testimonial-item">
<img
src="assets/img/testimonials/testimonials-1.jpg"
class="testimonial-img"
alt=""
/>
<h3>
How is the average package of IIIT Lucknow
18 LPA? Will the package continue to be 15+
after 4 years?
</h3>
<h4>Vinamra Bajaj, IIITL</h4>
<p>
<i
class="bx bxs-quote-alt-left quote-icon-left"
></i>
People do seem to wonder if it’s true, yeah
they are true which is all due to the coding
culture prevalent in IIITL, you need to keep
in consideration how this culture was built
upon the model of IIITA(don’t question their
20.6LPA average) and after modeling upon it
the negatives were removed and changes made
and this all has only lead to in less than 5
years such a culture developing(all credits
to our seniors).With time IIITL will keep
growing only!
<a
href="https://www.quora.com/How-is-the-average-package-of-IIIT-Lucknow-18-LPA-Will-the-package-continue-to-be-15-after-4-years"
>Read full answer on quora...</a
>
<i
class="bx bxs-quote-alt-right quote-icon-right"
></i>
</p>
<h6 style="color: darkgray">August 30, 2020</h6>
</div>
</div>
<div class="col-lg-6 my-4" data-aos="fade-right">
<div class="testimonial-item">
<img
src="assets/img/testimonials/testimonials-1.jpg"
class="testimonial-img"
alt=""
/>
<h3>
Which is better, LNMIIT Computer Science or
IIIT Pune Computer Science?
</h3>
<h4>Piyush Gupta, IIITP</h4>
<p>
<i
class="bx bxs-quote-alt-left quote-icon-left"
></i>
Academics: IIITs are known for their
excellent curriculum. LNMIIT syllabus still
includes subjects like classical physics &
modern physics etc. Instead, IIITP utilizes
the same time to teach students
industry-relevant skills which are a must
for IT students like Object-oriented
programming, Python. Other trending
technologies courses like cloud computing,
machine learning, big data & IoT are
compulsory at IIITP while at LNMIIT they are
electives.
<a
href="https://www.quora.com/Which-is-better-LNMIIT-CS-or-IIIT-Pune-CS"
>Read full answer on quora...</a
>
<i
class="bx bxs-quote-alt-right quote-icon-right"
></i>
</p>
<h6 style="color: darkgray">
September 13, 2020
</h6>
</div>
</div>
<div class="col-lg-6 my-4" data-aos="fade-right">
<div class="testimonial-item">
<img
src="assets/img/testimonials/testimonials-1.jpg"
class="testimonial-img"
alt=""
/>
<h3>How is the campus and life at IIIT Allahabad?</h3>
<h4>Priyansh Singh, IIIT Allahabad</h4>
<p>
<i
class="bx bxs-quote-alt-left quote-icon-left"
></i>
<strong>A brief Intro about me </strong>- I am currently a second year ECE student at IIIT Allahabad. I’m from Allahabad only, so I knew about IIIT Allahabad since my childhood.
After my JEE Main, I chose IIIT Allahabad ECE branch, as that was the best college and branch combination that I could have got from my JEE Main rank last year.
So, I’ll be talking about all the campus life, current academic pattern, societies - Technical and Cultural, College Fests etc.
<strong> Therefore, this will be a really long answer but worth a read if you want to opt for IIIT Allahabad for your engineering career.</strong>
<a
href="https://www.quora.com/How-is-the-campus-and-the-life-at-IIIT-Allahabad/answer/Priyansh-Singh-68?ch=10&share=6c804b5d&srid=XOtsb"
>Read full answer on quora...</a
>
<i
class="bx bxs-quote-alt-right quote-icon-right"
></i>
</p>
<h6 style="color: darkgray">Seotember 20, 2020</h6>
</div>
</div>
</div>
</div>
</section>
<!-- End Testimonials Section -->
<!--UPDATES TESTMONIALS-->
<!-- ======= Testimonials Section ======= -->
<section
id="testimonials"
class="testimonials section-bg"
style="background-color: #fff2e5"
>
<div class="container">
<div class="section-title" data-aos="fade-up">
<p>Latest Updates</p>
</div>
<div
class="owl-carousel testimonials-carousel"
data-aos="zoom-out"
data-aos-delay="150"
>
<div class="testimonial-item1">
<p>
<i
class="bx bxs-quote-alt-left quote-icon-left"
></i>
According to a tweet by Education Minister RP
Nishank, out of the total 8.58 lakh registered
candidates, only 6.35 lakh students actually
wrote their examinations.
<i
class="bx bxs-quote-alt-right quote-icon-right"
></i>
</p>
<img
src="img/counselling/why-us-1.jpg"
class="testimonial-img"
alt=""
/>
<h3>JEE Main 2020</h3>
<h4>
<a
href="https://www.thehindu.com/news/national/26-of-registered-students-missed-jee-main-this-year/article32569048.ece"
>link</a
>
</h4>
</div>
<div class="testimonial-item1">
<p>
<i
class="bx bxs-quote-alt-left quote-icon-left"
></i>
The top 2,50,000 candidates from the JEE Main
results who want a seat in the IITs need to
appear for JEE Advanced. JoSAA counselling
process might begin on October 6 for candidates
qualifying JEE Advanced.
<i
class="bx bxs-quote-alt-right quote-icon-right"
></i>
</p>
<img
src="img/counselling/why-us-2.jpg"
class="testimonial-img"
alt=""
/>
<h3>JEE Advanced</h3>
<h4>
<a
href="https://www.indiatoday.in/education-today/news/story/jee-main-2020-counselling-and-seat-allotment-all-you-need-to-know-1720573-2020-09-10"
>link</a
>
</h4>
</div>
<div class="testimonial-item1">
<p>
<i
class="bx bxs-quote-alt-left quote-icon-left"
></i>
Total number of supernumerary seats for female
candidates has increased from earlier 17% to 20%
for academic session 2020-21. A total of 12463
seats are available for candidates at 23 IITs.
<i
class="bx bxs-quote-alt-right quote-icon-right"
></i>
</p>
<img
src="img/counselling/why-us-3.jpg"
class="testimonial-img"
alt=""
/>
<h3>Female Seat Increment</h3>
<h4>
<a
href="https://www.timesnownews.com/education/article/jee-advanced-2020-seats-increased-for-female-candidates-exam-on-may-17-for-12463-seats-at-23-iits/562284"
>link</a
>
</h4>
</div>
<div class="testimonial-item1">
<p>
<i
class="bx bxs-quote-alt-left quote-icon-left"
></i>
MNNIT Allahabad director has been appointed
chairman of the Central Seat Allocation Board
(CCAB) by Minustry of Education. CSAB
headquarters will soon be set up on the
MNNIT-Allahabad campus
<i
class="bx bxs-quote-alt-right quote-icon-right"
></i>
</p>
<img
src="img/counselling/about-boxes-1.jpg"
class="testimonial-img"
alt=""
/>
<h3>CSAB Headquarters</h3>
<h4>
<a
href="https://www.hindustantimes.com/education/nits-iiits-counselling-mnnit-to-play-vital-role-in-admissions-this-year/story-sfdLPCbO93xOPfrG9aZbNJ.html"
>link</a
>
</h4>
</div>
<div class="testimonial-item1">
<p>
<i
class="bx bxs-quote-alt-left quote-icon-left"
></i>
The top 250,000 JEE Main 2020 rank holders are
eligible to register for the JEE Advanced exam
which is conducted for admissions to the IIT.
<i
class="bx bxs-quote-alt-right quote-icon-right"
></i>
</p>
<img
src="img/counselling/about-boxes-2.jpg"
class="testimonial-img"
alt=""
/>
<h3>JEE Advanced</h3>
<h4>
<a
href="https://scroll.in/announcements/972805/jee-main-2020-result-expected-to-be-released-today-at-jeemain-nta-nic-in"
>link</a
>
</h4>
</div>
</div>
</div>
</section>
<!-- End Testimonials Section -->
<!--UPDATES ENDED-->
<!-- ======= Frequenty Asked Questions Section ======= -->
<section class="faq">
<div class="container">
<div class="section-title" data-aos="fade-up">
<p>How our JEE Counselling Tools work</p>
</div>
<ul class="faq-list">
<li data-aos="fade-up" data-aos-delay="150">
<a
data-toggle="collapse"
class="collapsed"
href="#faq1"
>Choice filling tool<i
class="icofont-simple-up"
></i
></a>
<div
id="faq1"
class="collapse"
data-parent=".faq-list"
>
<p>
This tool helps you to practice the filling
of choices as done in JoSAA Counselling
website. Upon clicking this icon, you will
be forwarded to a window requesting you to
choose from your preferred institutes,
category, seat-pool and preferred branch.<br />
And after choosing accordingly, click on the
submit option. You will be provided with the
a table of selected Institutes, respective
branches, and opening and closing cut-off of
all 7 JoSAA rounds. You can sort the rows in
according to the columns of JoSAA cut-off
opening and closing ranks.<br />
By practicing beforehand, you will be able
to get a clear picture of how counselling
takes place and you will be able to fill
your choices without any doubts or faults!
</p>
</div>
</li>
<li data-aos="fade-up" data-aos-delay="150">
<a
data-toggle="collapse"
href="#faq2"
class="collapsed"
>
Rank predictor<i class="icofont-simple-up"></i
></a>
<div
id="faq2"
class="collapse"
data-parent=".faq-list"
>
<p>
The Rank Predictor tool helps you to predict
the most probable rank based on your
percentile. You have to fill your percentile
and your category in the dialog box
appearing and click on submit option. You
will be provided with an expected JEE Main
rank based on the previous year ranks data.
<br />
<br /><b
>Note: This is just an anticipated rank
based on previous year ranks and not an
exact rank! Our Predictions Models are
designed and trained by expert students
with counselling experience. We made our
prediction models better than other
websites and fixed many traditional
loopholes that they have.
</b>
</p>
</div>
</li>
<li data-aos="fade-up" data-aos-delay="150">
<a
data-toggle="collapse"
href="#faq3"
class="collapsed"
>College predictor
<i class="icofont-simple-up"></i
></a>
<div
id="faq3"
class="collapse"
data-parent=".faq-list"
>
<p>
This tool helps you to predict your
preferred college based on your
Percentile/Rank and Category. After clicking