forked from technext/arcade
-
Notifications
You must be signed in to change notification settings - Fork 18
/
faq.html
1181 lines (1147 loc) · 61.3 KB
/
faq.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>FAQ</title>
<meta charset="UTF-8" />
<meta name="description" content="Official website of IIT Patna Gymkhana" />
<meta name="keywords" content="IITP, Gymkhana, IIT Patna" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Favicon -->
<link href="img/favicon.ico" rel="shortcut icon" />
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700" rel="stylesheet" />
<!-- Stylesheets -->
<link rel="stylesheet" href="css/bootstrap.min.css" />
<link rel="stylesheet" href="css/font-awesome.min.css" />
<link rel="stylesheet" href="css/animate.css" />
<link rel="stylesheet" href="css/owl.carousel.css" />
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/faq-style.css">
<link rel="icon" type="image/x-icon" href="/img/logo.png">
</head>
<body>
<!-- Page Preloder -->
<div id="preloder">
<div class="loader"></div>
</div>
<!-- Header section start -->
<header class="header-area" id="navbar">
<a href="index.html" class="logo-area">
<img src="img/logo.png" alt="" />
</a>
<div class="nav-switch">
<i class="fa fa-bars"></i>
</div>
<!-- <div class="phone-number">+675 334 567 223</div> -->
<nav class="nav-menu">
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="index.html#about">ABOUT US</a></li>
<li><a href="index.html#clubs">CLUBS</a></li>
<li><a href="index.html#festgallery">EVENTS</a></li>
<li><a href="gallery.html">GALLERY</a></li>
<li><a href="faq.html">FAQ</a></li>
<li><a href="office.html">OFFICE BEARERS</a></li>
<li><a href="openhouse/index.html">OPEN HOUSE</a></li>
</ul>
</nav>
</header>
<!-- Header section end -->
<!-- Page section start -->
<section class="page-section spad" style="background-color: #f4f7fe;">
<div class="container">
<h1>FAQ</h1>
<ul class="nav nav-tabs nav-justified" role="tablist">
<div class="slider"></div>
<li class="nav-item">
<a class="nav-link active" id="acc-tab" data-toggle="tab" href="#acc" role="tab" aria-controls="acc"
aria-selected="false">Academic and Career Council</a>
</li>
<li class="nav-item">
<a class="nav-link" id="swb-tab" data-toggle="tab" href="#swb" role="tab" aria-controls="swb"
aria-selected="false">Students' Welfare Board</a>
</li>
<li class="nav-item">
<a class="nav-link" id="hac-tab" data-toggle="tab" href="#hac" role="tab" aria-controls="hac"
aria-selected="false">Hostel Affairs Council</a>
</li>
<li class="nav-item">
<a class="nav-link" id="stc-tab" data-toggle="tab" href="#stc" role="tab" aria-controls="stc"
aria-selected="true">Student Technical Council</a>
</li>
</ul>
<!-- Single element -->
<div class="tab-content">
<div class="tab-pane fade show active" id="acc" role="tabpanel" aria-labelledby="acc-tab">
<div class="element">
<div class="row_acc row d-flex justify-content-center">
<!-- Accordions -->
<div class="col-md-10">
<div id="accordion" class="accordion-area">
<div class="panel">
<div class="panel-header active" id="headingOne">
What is the procedure for asking the administration for more elective choices?
<button class="panel-link" data-toggle="collapse" data-target="#collapse1" aria-expanded="true"
aria-controls="collapse1"></button>
</div>
<div id="collapse1" class="collapse show" aria-labelledby="headingOne" data-parent="#accordion">
<div class="panel-body">
<p>
Electives are pre-determined in the Senate meetings. One can always mail the academic section
and
ask for clarity.
</p>
</div>
</div>
</div>
<div class="panel">
<div class="panel-header" id="headingTwo">
Can we do our BTP under a professor from another university in India or overseas in two cases: (a)
remotely or (b) in person?
<button class="panel-link" data-toggle="collapse" data-target="#collapse2" aria-expanded="false"
aria-controls="collapse2"></button>
</div>
<div id="collapse2" class="collapse" aria-labelledby="headingTwo" data-parent="#accordion">
<div class="panel-body">
<p>
No, IIT Patna only allows BTP to be completed under an IIT Patna professor of one's branch and
not
under any other professor, be it from India or overseas.
</p>
</div>
</div>
</div>
<div class="panel">
<div class="panel-header" id="headingThree">
Can we finish our BTech in 3 years with an early exit option like IIT Bombay and Delhi have?
<button class="panel-link" data-toggle="collapse" data-target="#collapse3" aria-expanded="false"
aria-controls="collapse3"></button>
</div>
<div id="collapse3" class="collapse" aria-labelledby="headingThree" data-parent="#accordion">
<div class="panel-body">
<p>
No, IIT Patna does not offer an early exit option to a B. Tech student in 3 years like the
other
colleges mentioned above do.
</p>
</div>
</div>
</div>
<div class="panel">
<div class="panel-header" id="headingThree">
Do we have any semester exchange programs?
<button class="panel-link" data-toggle="collapse" data-target="#collapse4" aria-expanded="false"
aria-controls="collapse4"></button>
</div>
<div id="collapse4" class="collapse" aria-labelledby="headingThree" data-parent="#accordion">
<div class="panel-body">
<p>
Yes, semester exchange programs are available. We received an e-mail about it sometime back as
well.
</p>
</div>
</div>
</div>
<div class="panel">
<div class="panel-header" id="headingThree">
Is registration for the next semester scheduled for July 21st online or offline? How does it
differ
from pre-registration?
<button class="panel-link" data-toggle="collapse" data-target="#collapse5" aria-expanded="false"
aria-controls="collapse5"></button>
</div>
<div id="collapse5" class="collapse" aria-labelledby="headingThree" data-parent="#accordion">
<div class="panel-body">
<p>
The registration process will take place in the offline mode, where the physical presence of
the
student will be required. In the case of late registration, the student must pay a fine of Rs.
2000.
However, the fine can be waived by making genuine requests to your HOD.
</p>
</div>
</div>
</div>
<div class="panel">
<div class="panel-header" id="headingThree">
What is the procedure for opting for courses in another department?
<button class="panel-link" data-toggle="collapse" data-target="#collapse6" aria-expanded="false"
aria-controls="collapse6"></button>
</div>
<div id="collapse6" class="collapse" aria-labelledby="headingThree" data-parent="#accordion">
<div class="panel-body">
<p>
To opt for courses from other departments, one has to email the course instructor of that
particular course. You are required to mention your CPI and reasons for wanting to audit the
course. The instructor makes the final decision with the HOD's and the faculty advisor's
permission.
</p>
</div>
</div>
</div>
<div class="panel">
<div class="panel-header" id="headingThree">
How do I apply for leave?
<button class="panel-link" data-toggle="collapse" data-target="#collapse7" aria-expanded="false"
aria-controls="collapse7"></button>
</div>
<div id="collapse7" class="collapse" aria-labelledby="headingThree" data-parent="#accordion">
<div class="panel-body">
<p>
To apply for leave,
Step 1: Mention the reason for leaving to the Faculty Advisor and get his permission (via
email).
Step 2: Email Adean-SA for the same reason and attach a screenshot or proof of permission from
the
Faculty Advisor.
</p>
</div>
</div>
</div>
<div class="panel">
<div class="panel-header" id="headingThree">
There should be a section on the IITP website in which the professor must upload all exam (MSE,
ESE)
evaluated answer sheets of all students and correct answer sheets.
<button class="panel-link" data-toggle="collapse" data-target="#collapse8" aria-expanded="false"
aria-controls="collapse8"></button>
</div>
<div id="collapse8" class="collapse" aria-labelledby="headingThree" data-parent="#accordion">
<div class="panel-body">
<p>
Several proposals have been passed regarding the same but have yet to be approved. We will try
again this year to do the same.
</p>
</div>
</div>
</div>
<div class="panel">
<div class="panel-header" id="headingThree">
What about the students admitted late compared to their batchmates due to some court case? Do they
have to give supplementary exams?
<button class="panel-link" data-toggle="collapse" data-target="#collapse9" aria-expanded="false"
aria-controls="collapse9"></button>
</div>
<div id="collapse9" class="collapse" aria-labelledby="headingThree" data-parent="#accordion">
<div class="panel-body">
<p>
Email the Academic Section and Registrar regarding the same.
</p>
</div>
</div>
</div>
<div class="panel">
<div class="panel-header" id="headingThree">
Who issues NOCs for 1st and 2nd-year students, HOD or TPC? What is the procedure?
<button class="panel-link" data-toggle="collapse" data-target="#collapse10" aria-expanded="false"
aria-controls="collapse10"></button>
</div>
<div id="collapse10" class="collapse" aria-labelledby="headingThree" data-parent="#accordion">
<div class="panel-body">
<p>
The Training and Placement Officer issues the NOC after permission/ consultation from the
respective HODs.
</p>
</div>
</div>
</div>
<div class="panel">
<div class="panel-header" id="headingThree">
How can we apply for the supplementary exam?
<button class="panel-link" data-toggle="collapse" data-target="#collapse11" aria-expanded="false"
aria-controls="collapse11"></button>
</div>
<div id="collapse11" class="collapse" aria-labelledby="headingThree" data-parent="#accordion">
<div class="panel-body">
<p>
Forms for applying for the supplementary exam(s) are sent via mail by the academic section
annually around May. The individual can fill out the form by the end of June and appear for
the
exam(s) in July.
</p>
</div>
</div>
</div>
<div class="panel">
<div class="panel-header" id="headingThree">
Where can I get the transcript?
<button class="panel-link" data-toggle="collapse" data-target="#collapse12" aria-expanded="false"
aria-controls="collapse12"></button>
</div>
<div id="collapse12" class="collapse" aria-labelledby="headingThree" data-parent="#accordion">
<div class="panel-body">
<p>
You can download your Transcript after the declaration of the Result every semester.
Link: <a href="http://172.16.26.43/transcriptIITP/">http://172.16.26.43/transcriptIITP/</a>
</p>
</div>
</div>
</div>
<div class="panel">
<div class="panel-header" id="headingThree">
Where can I get a bona fide certificate?
<button class="panel-link" data-toggle="collapse" data-target="#collapse13" aria-expanded="false"
aria-controls="collapse13"></button>
</div>
<div id="collapse13" class="collapse" aria-labelledby="headingThree" data-parent="#accordion">
<div class="panel-body">
<p>
To get a Bonafide Certificate Offline. <br>
Step 1: You have to pay 50 rupees on the SBI link mentioned below:
<a
href="https://www.onlinesbi.com/sbicollect/icollecthome.htm?corpID=595859">https://www.onlinesbi.com/sbicollect/icollecthome.htm?corpID=595859</a><br>
Select Bihar as the state and Educational as the type of Institution and click on the Go
button
<br>
Select the Indian Institute of Technology Patna as the Educational Institute name and Click on
Submit button. <br>
Choose payment Category: Payment for Transcripts/Certificates/Thesis/Misc. <br>
Fill in your details and pay the money <br>
Step 2: You should visit the Academic Office, 3rd-floor B.Tech cabin, along with the proof of
Payment and a passport-size photo.
<br>
To get a Bonafide Certificate Online (Online process may be temporarily closed) <br>
Step 1: You have to pay 50 rupees on the SBI link mentioned below:
<a
href="https://www.onlinesbi.com/sbicollect/icollecthome.htm?corpID=595859">https://www.onlinesbi.com/sbicollect/icollecthome.htm?corpID=595859</a><br>
Choose payment option: Payment for Transcripts/Certificates/Thesis/Misc. <br>
Step 2: You should write an e-mail to [email protected] with attached proof of Payment.
</p>
</div>
</div>
</div>
</div>
</div>
<!-- <div class="col-lg-6">
<div class="tab-element">
<ul class="nav nav-tabs" id="myTab" role="tablist">
<li class="nav-item">
<a
class="nav-link active"
id="1-tab"
data-toggle="tab"
href="#tab-1"
role="tab"
aria-controls="tab-1"
aria-selected="true"
>Pellentesque lorem
</a>
</li>
<li class="nav-item">
<a
class="nav-link"
id="2-tab"
data-toggle="tab"
href="#tab-2"
role="tab"
aria-controls="tab-2"
aria-selected="false"
>Etiam ut augue</a
>
</li>
<li class="nav-item">
<a
class="nav-link"
id="3-tab"
data-toggle="tab"
href="#tab-3"
role="tab"
aria-controls="tab-3"
aria-selected="false"
>Congue ultrices</a
>
</li>
</ul>
<div class="tab-content" id="myTabContent">
<div
class="tab-pane fade show active"
id="tab-1"
role="tabpanel"
aria-labelledby="tab-1"
>
<div class="row">
<div class="col-md-6">
<img src="img/element.jpg" alt="" />
</div>
<div class="col-md-6">
<h4>Mauris pharetra libero turpis</h4>
<p>
Pellentesque lorem dolor, malesuada eget tortor vitae,
tristique lacinia lectus. Pellen te sque sed accumsan
risus, id aliquam nulla. Integer lorem risus, feugiat
at mauris m alesuada.
</p>
</div>
</div>
</div>
<div
class="tab-pane fade"
id="tab-2"
role="tabpanel"
aria-labelledby="tab-2"
>
<div class="row">
<div class="col-md-6">
<img src="img/element.jpg" alt="" />
</div>
<div class="col-md-6">
<h4>Mauris pharetra libero turpis 2</h4>
<p>
Pellentesque lorem dolor, malesuada eget tortor vitae,
tristique lacinia lectus. Pellen te sque sed accumsan
risus, id aliquam nulla. Integer lorem risus, feugiat
at mauris m alesuada.
</p>
</div>
</div>
</div>
<div
class="tab-pane fade"
id="tab-3"
role="tabpanel"
aria-labelledby="tab-3"
>
<div class="row">
<div class="col-md-6">
<img src="img/element.jpg" alt="" />
</div>
<div class="col-md-6">
<h4>Mauris pharetra libero turpis 3</h4>
<p>
Pellentesque lorem dolor, malesuada eget tortor vitae,
tristique lacinia lectus. Pellen te sque sed accumsan
risus, id aliquam nulla. Integer lorem risus, feugiat
at mauris m alesuada.
</p>
</div>
</div>
</div>
</div>
</div>
</div> -->
</div>
</div>
</div>
<!-- Students' Welfare Board -->
<div class="tab-pane fade show" id="swb" role="tabpanel" aria-labelledby="swb-tab">
<div class="element">
<div class="row_acc row d-flex justify-content-center">
<!-- Accordions -->
<div class="col-md-10">
<div id="accordion" class="accordion-area">
<div class="panel">
<div class="panel-header" id="headingOne">
When and how is medical insurance payment to be done? What is the process for claiming
reimbursement
for medical bills? Where can we find medical insurance details?
<button class="panel-link" data-toggle="collapse" data-target="#collapse14" aria-expanded="false"
aria-controls="collapse14"></button>
</div>
<div id="collapse14" class="collapse" aria-labelledby="headingOne" data-parent="#accordion">
<div class="panel-body">
<p>
Once a year, you need to pay using the SBI collect link. Payment deadlines are sent via
Institute
mail by the Students' Affairs Office or Students' Welfare Board.
Insurance details can be viewed from the given link <a
href="http://172.16.1.6/index.php/student-affairs/student-s-medical-insurance">http://172.16.1.6/index.php/student-affairs/student-s-medical-insurance</a>
at Sl.No. 1. While Sl. Nos. 2, 3, 4 & 5 will help you claim your medical insurance.
</p>
</div>
</div>
</div>
<div class="panel">
<div class="panel-header" id="headingTwo">
Some guests/relatives or your parents visit you, and you need guest accommodation
<button class="panel-link" data-toggle="collapse" data-target="#collapse15" aria-expanded="false"
aria-controls="collapse15"></button>
</div>
<div id="collapse15" class="collapse" aria-labelledby="headingTwo" data-parent="#accordion">
<div class="panel-body">
<p>
Visit <a href="http://172.16.1.6/guest/home.php">http://172.16.1.6/guest/home.php</a> and
follow
the steps mentioned there.
Note:
1. The availability of vacant rooms will determine how many days you can stay. You can book
for as
many days if spaces are empty.
2. Check out the Hotels nearby section on SWB Master Sheet for further information if you wish
to
stay outside the campus.
</p>
</div>
</div>
</div>
<div class="panel">
<div class="panel-header" id="headingThree">
A helping guide for whom to contact (email) for different issues being faced.
<button class="panel-link" data-toggle="collapse" data-target="#collapse16" aria-expanded="false"
aria-controls="collapse16"></button>
</div>
<div id="collapse16" class="collapse" aria-labelledby="headingThree" data-parent="#accordion">
<div class="panel-body">
<p>
Get in touch with the councils concerned via their respective email addresses. <br>
Hostel Affairs Council: <a href="mailto:[email protected]">[email protected] </a><br>
Students' Welfare Board: <a href="mailto:[email protected]">[email protected]</a><br>
Students' Technical Council: <a href="mailto:[email protected]">[email protected]</a><br>
House of Socio-Cultural Affairs: <a
href="mailto:[email protected]">[email protected]</a><br>
Academic and Career Council: <a href="mailto:[email protected]">[email protected]</a> / <a
href="mailto:[email protected]">[email protected]</a><br>
Visit SWB Master Sheet to find the email addresses of the General Secretaries and Vice
President
of the Students' Gymkhana.
</p>
</div>
</div>
</div>
<div class="panel">
<div class="panel-header" id="headingThree">
Can we buy simple medicines and ointments from the IIT Patna health center?
<button class="panel-link" data-toggle="collapse" data-target="#collapse17" aria-expanded="false"
aria-controls="collapse17"></button>
</div>
<div id="collapse17" class="collapse" aria-labelledby="headingThree" data-parent="#accordion">
<div class="panel-body">
<p>
A wide variety of medicines are available at the campus health center, although only those
prescribed by campus doctors are free (up to 10,000 per semester).
</p>
</div>
</div>
</div>
<div class="panel">
<div class="panel-header" id="headingThree">
How can I complain about the lack of a menu or incompetent prices at various outlets in IIT Patna,
like Nescafe or the food court?
<button class="panel-link" data-toggle="collapse" data-target="#collapse18" aria-expanded="false"
aria-controls="collapse18"></button>
</div>
<div id="collapse18" class="collapse" aria-labelledby="headingThree" data-parent="#accordion">
<div class="panel-body">
<p>
Concerns regarding any shop on campus should be sent to the Students' Welfare Board at <a
href="mailto:[email protected]">[email protected]</a>.
We encourage you to provide feedback at <a
href="https://forms.gle/uStFwmjcEtmhuUGw5">https://forms.gle/uStFwmjcEtmhuUGw5</a>.
</p>
</div>
</div>
</div>
<div class="panel">
<div class="panel-header" id="headingThree">
When something is lost or found, what should be done?
<button class="panel-link" data-toggle="collapse" data-target="#collapse19" aria-expanded="false"
aria-controls="collapse19"></button>
</div>
<div id="collapse19" class="collapse" aria-labelledby="headingThree" data-parent="#accordion">
<div class="panel-body">
<p>
Step 1: Fill out the G-form. <br>
Step 2: Check the Lost & Found section on <a href="https://bit.ly/SWB_IITP">SWB Master
Sheet</a>
regularly to see if your lost object
has been found. <br>
Step 3: Please email us at <a href="mailto:[email protected]">[email protected]</a> if you have
found
your lost item so we can remove it
from the lost section.
</p>
</div>
</div>
</div>
<div class="panel">
<div class="panel-header" id="headingThree">
How should I handle a medical or any kind of emergency? Whom should I contact first?
<button class="panel-link" data-toggle="collapse" data-target="#collapse20" aria-expanded="false"
aria-controls="collapse20"></button>
</div>
<div id="collapse20" class="collapse" aria-labelledby="headingThree" data-parent="#accordion">
<div class="panel-body">
<p>
<a href="https://bit.ly/SWB_IITP">SWB Master Sheet</a> includes emergency contact info for
such
situations under Emergency Contacts.
</p>
</div>
</div>
</div>
<div class="panel">
<div class="panel-header" id="headingThree">
There are several incidents of students littering around the Nescafe outlets, food court, and
night
canteen. What can I do to curb such behavior?
<button class="panel-link" data-toggle="collapse" data-target="#collapse21" aria-expanded="false"
aria-controls="collapse21"></button>
</div>
<div id="collapse21" class="collapse" aria-labelledby="headingThree" data-parent="#accordion">
<div class="panel-body">
<p>
Please send us an email detailing such incidents to <a
href="mailto:[email protected]">[email protected]</a>, preferably with some media proof. Your
identity
will be kept confidential, and you might be rewarded for your efforts.
</p>
</div>
</div>
</div>
<div class="panel">
<div class="panel-header" id="headingThree">
What should we bring to the IITP campus before coming to campus?
<button class="panel-link" data-toggle="collapse" data-target="#collapse22" aria-expanded="false"
aria-controls="collapse22"></button>
</div>
<div id="collapse22" class="collapse" aria-labelledby="headingThree" data-parent="#accordion">
<div class="panel-body">
<p>
To be updated soon
</p>
</div>
</div>
</div>
<div class="panel">
<div class="panel-header" id="headingThree">
You are being harassed or notice someone else being harassed. You are subjected to ragging or have
witnessed ragging.
<button class="panel-link" data-toggle="collapse" data-target="#collapse23" aria-expanded="false"
aria-controls="collapse23"></button>
</div>
<div id="collapse23" class="collapse" aria-labelledby="headingThree" data-parent="#accordion">
<div class="panel-body">
<p>
Inform the Gymkhana Core Members as soon as possible. You can find their contact numbers in
the <a href="https://bit.ly/SWB_IITP">SWB Master Sheet</a>. </p>
</div>
</div>
</div>
<div class="panel">
<div class="panel-header" id="headingThree">
Miscellaneous
<button class="panel-link" data-toggle="collapse" data-target="#collapse24" aria-expanded="false"
aria-controls="collapse24"></button>
</div>
<div id="collapse24" class="collapse" aria-labelledby="headingThree" data-parent="#accordion">
<div class="panel-body">
<p>
1. For various stuff (including bus services, bicycle tagging slots, etc.), please visit <a
href="https://bit.ly/SWB_IITP">SWB Master Sheet</a>. It is updated frequently, so please
check
back often. <br>
2. Feel free to send any ideas about campus beautification or other affairs to <a
href="[email protected]">[email protected]</a>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="tab-pane fade show" id="hac" role="tabpanel" aria-labelledby="hac-tab">
<!-- Hostel Affairs Council -->
<div class="element">
<div class="row_acc row d-flex justify-content-center">
<!-- Accordions -->
<div class="col-md-10">
<div id="accordion" class="accordion-area">
<div class="panel">
<div class="panel-header" id="headingOne">
What is the hostel no-dues form? How do I get it? Where do I submit it?
<button class="panel-link" data-toggle="collapse" data-target="#collapse25" aria-expanded="false"
aria-controls="collapse25"></button>
</div>
<div id="collapse25" class="collapse" aria-labelledby="headingOne" data-parent="#accordion">
<div class="panel-body">
<p>
Students must submit hostel no-dues when they are about to pass out. Different institute
bodies
verify whether students have cleared/returned all dues, fines, fees, or any assets the
institute
provides to students.
The hostel office sends an email to all the passing-out students. Students need to go to their
departments, the hostel office, the library, and the accounts section and get their approval
for
no dues. It stands clear when all the different institute bodies sign off on no dues.
</p>
</div>
</div>
</div>
<div class="panel">
<div class="panel-header" id="headingTwo">
You will be out of the campus for some days and would like some mess rebate
<button class="panel-link" data-toggle="collapse" data-target="#collapse26" aria-expanded="false"
aria-controls="collapse26"></button>
</div>
<div id="collapse26" class="collapse" aria-labelledby="headingTwo" data-parent="#accordion">
<div class="panel-body">
<p>
The mess must be informed of such a situation by applying for leave on the <a
href="http://172.16.26.43/messIITP/web/index.php"> Mess leave portal </a> at least three
days
before the date you wish to be absent. </p>
</div>
</div>
</div>
<div class="panel">
<div class="panel-header" id="headingThree">
How can a complaint regarding the non-working of ceiling fans, room lights, corridor and bathroom
lights, room cleaning, lift not working, non-working water purifier, beehives, unavailability of
non-chilled drinking water, etc., be filed? <button class="panel-link" data-toggle="collapse"
data-target="#collapse27" aria-expanded="false" aria-controls="collapse27"></button>
</div>
<div id="collapse27" class="collapse" aria-labelledby="headingThree" data-parent="#accordion">
<div class="panel-body">
<p>
Regarding complaints about hostel maintenance :
Complaints have to be filled in on 172.16.1.6 to IWD (<a
href="https://services.iitp.ac.in/iwdhelpdesk">https://services.iitp.ac.in/iwdhelpdesk</a>).
Complaints should also be registered in a complaint register book which will be available in
the
hostel office/at the security desk . The caretaker has to check all such complaints. The
caretaker
usually asks the IWD technician to repair it. But if any highly skilled technicians are
required,
the caretaker has to inform the hostel office, and hence the hostel office has to call the
concerned person at the direction of the warden. If students' complaints are not acknowledged,
they may complain to HAC representatives or Wardens.
</p>
</div>
</div>
</div>
<div class="panel">
<div class="panel-header" id="headingThree">
How can complaints be filed about Wi-Fi / LAN connectivity issues?
<button class="panel-link" data-toggle="collapse" data-target="#collapse28" aria-expanded="false"
aria-controls="collapse28"></button>
</div>
<div id="collapse28" class="collapse" aria-labelledby="headingThree" data-parent="#accordion">
<div class="panel-body">
<p>
LAN and Wi-Fi complaints must be registered on the <a
href="https://www.iitp.ac.in/cc-helpdesk/">
CC Helpdesk </a>. You may call 24 hours helpline service in case of any urgency. <a
href="https://docs.google.com/document/d/1wCP5SkJqK8a4ZBho_8LD5dPMbwNEMNMUeS7wMdRmXdI/edit?usp=sharing">Contact
Details</a></p>
</div>
</div>
</div>
<div class="panel">
<div class="panel-header" id="headingThree">
You are sick and need a sick meal.
<button class="panel-link" data-toggle="collapse" data-target="#collapse29" aria-expanded="false"
aria-controls="collapse29"></button>
</div>
<div id="collapse29" class="collapse" aria-labelledby="headingThree" data-parent="#accordion">
<div class="panel-body">
<p>
Inform the mess manager as soon as possible.
</p>
</div>
</div>
</div>
<div class="panel">
<div class="panel-header" id="headingThree">
Cleaning and sweeping related complaints
<button class="panel-link" data-toggle="collapse" data-target="#collapse30" aria-expanded="false"
aria-controls="collapse30"></button>
</div>
<div id="collapse30" class="collapse" aria-labelledby="headingThree" data-parent="#accordion">
<div class="panel-body">
<p>
You should contact either the caretaker or cleaning supervisor of your hostel.
</p>
</div>
</div>
</div>
<div class="panel">
<div class="panel-header" id="headingThree">
Missing/broken furniture in the room.
<button class="panel-link" data-toggle="collapse" data-target="#collapse31" aria-expanded="false"
aria-controls="collapse31"></button>
</div>
<div id="collapse31" class="collapse" aria-labelledby="headingThree" data-parent="#accordion">
<div class="panel-body">
<p>
Contact the caretaker of your hostel.
</p>
</div>
</div>
</div>
<div class="panel">
<div class="panel-header" id="headingThree">
What are the in and out times of the hostel? Can we visit friends' hostel rooms (of the other
gender
as well)?
<button class="panel-link" data-toggle="collapse" data-target="#collapse32" aria-expanded="false"
aria-controls="collapse32"></button>
</div>
<div id="collapse32" class="collapse" aria-labelledby="headingThree" data-parent="#accordion">
<div class="panel-body">
<p>
There are no in and out times of the hostel, and students are restricted to visit
opposite-gender's hostels.
</p>
</div>
</div>
</div>
<div class="panel">
<div class="panel-header" id="headingThree">
Can I use electrical/electronic and other appliances?
<button class="panel-link" data-toggle="collapse" data-target="#collapse33" aria-expanded="false"
aria-controls="collapse33"></button>
</div>
<div id="collapse33" class="collapse" aria-labelledby="headingThree" data-parent="#accordion">
<div class="panel-body">
<p>
The hostel has microwaves, induction cookers, and other necessary electrical appliances in its
common room. You can use them but cannot bring your own.
</p>
</div>
</div>
</div>
<div class="panel">
<div class="panel-header" id="headingThree">
Can my friend/relative visit/stay in my room?
<button class="panel-link" data-toggle="collapse" data-target="#collapse34" aria-expanded="false"
aria-controls="collapse34"></button>
</div>
<div id="collapse34" class="collapse" aria-labelledby="headingThree" data-parent="#accordion">
<div class="panel-body">
<p>
It is not possible for them to stay in a student's room, but they can stay in the guest house
on
campus.
</p>
</div>
</div>
</div>
<div class="panel">
<div class="panel-header" id="headingThree">
Someone is playing loud music / banging on your room door/ disturbing you in any other way.
<button class="panel-link" data-toggle="collapse" data-target="#collapse35" aria-expanded="false"
aria-controls="collapse35"></button>
</div>
<div id="collapse35" class="collapse" aria-labelledby="headingThree" data-parent="#accordion">
<div class="panel-body">
<p>
Inform the HAC secretaries or caretakers as soon as possible.
</p>
</div>
</div>
</div>
<div class="panel">
<div class="panel-header" id="headingThree">
Do we get an internet connection in the hostels? How and where can I access the internet?
<button class="panel-link" data-toggle="collapse" data-target="#collapse36" aria-expanded="false"
aria-controls="collapse36"></button>
</div>
<div id="collapse36" class="collapse" aria-labelledby="headingThree" data-parent="#accordion">
<div class="panel-body">
<p>
High-speed internet is available via Wi-Fi/LAN connections. You will need your VPN password to
access the Wi-Fi.
</p>
</div>
</div>
</div>
<div class="panel">
<div class="panel-header" id="headingThree">
Miscellaneous
<button class="panel-link" data-toggle="collapse" data-target="#collapse37" aria-expanded="false"
aria-controls="collapse37"></button>
</div>
<div id="collapse37" class="collapse" aria-labelledby="headingThree" data-parent="#accordion">
<div class="panel-body">
<p>
For various stuff (contact numbers of hac secretaries,caretakers,wardens and hostel office of
each
hostel, carpenters, plumbers etc ), please visit <a
href="https://docs.google.com/document/d/1a1wsFpXXrbCGUOlNXRdlIYS6f_hnlHAkZvfjwdg2VXU/edit#heading=h.974xomp4c2zo">
IITP HOSTEL TEAM DOC </a>.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="tab-pane fade show" id="stc" role="tabpanel" aria-labelledby="stc-tab">
<!-- Student Technical Council -->
<div class="element">
<div class="row_acc row d-flex justify-content-center">
<!-- Accordions -->
<div class="col-md-10">
<div id="accordion" class="accordion-area">
<div class="panel">
<div class="panel-header" id="headingOne">
What is Inter IIT Tech Meet?
<button class="panel-link" data-toggle="collapse" data-target="#collapse38" aria-expanded="false"
aria-controls="collapse38"></button>
</div>
<div id="collapse38" class="collapse" aria-labelledby="headingOne" data-parent="#accordion">
<div class="panel-body">
<p>
An Inter IIT Tech Meet is an annual event in which all the IITs compete with each other to
tackle technical problems. It consists of High, Mid, and Low prep events with decreasing order
of point weightage. The final presentation round happens for two days around March, but the
preparations start nearly two months before!
</p>
</div>
</div>
</div>
<div class="panel">
<div class="panel-header" id="headingTwo">
How can I contribute? Any prerequisites?
<button class="panel-link" data-toggle="collapse" data-target="#collapse39" aria-expanded="false"
aria-controls="collapse39"></button>
</div>
<div id="collapse39" class="collapse" aria-labelledby="headingTwo" data-parent="#accordion">
<div class="panel-body">
<p>
The events are open to all, and there aren’t any “prerequisites” as such, but it helps to have
them in some events. What is most valuable is your contribution to the team, and you can do
that according to your capacity and skill. The teams will be decided based on the
contributions one makes in the first couple of days.
</p>
</div>
</div>
</div>
<div class="panel">
<div class="panel-header" id="headingThree">
What are the high/mid/low preparation events?
<button class="panel-link" data-toggle="collapse" data-target="#collapse40" aria-expanded="false"
aria-controls="collapse40"></button>
</div>
<div id="collapse40" class="collapse" aria-labelledby="headingThree" data-parent="#accordion">
<div class="panel-body">
<p>
High/mid-prep events are team events (6-10 people) in which you propose a solution to a
problem statement and are usually composed of a report/prototype followed by a final
presentation in front of the judges. These carry by far the most weight (400 points for high
prep, 250 points for mid prep). Low-preparation events are team events (mostly) and are
relatively more straightforward compared to mid and high-prep events. They are released 1-2
weeks before the presentation round. </p>
</div>
</div>
</div>
<div class="panel">
<div class="panel-header" id="headingThree">
Why should I participate?
<button class="panel-link" data-toggle="collapse" data-target="#collapse41" aria-expanded="false"
aria-controls="collapse41"></button>
</div>
<div id="collapse41" class="collapse" aria-labelledby="headingThree" data-parent="#accordion">
<div class="panel-body">
<p>
Why shouldn’t you? It is a wonderful way to network, work with like-minded people, and create
something of your own (not to mention you can show off certificates/projects in your CV)!
Participation is important more than anything. It provides a platform to test yourself and
feeds you with new ideas from other top IITs. These events make a huge contribution to the
technical culture of IITs, and you should try your best to make use of this privilege!
</p>
</div>
</div>
</div>
<div class="panel">
<div class="panel-header" id="headingThree">
How to link your webmail to the mail app on your phone?
<button class="panel-link" data-toggle="collapse" data-target="#collapse42" aria-expanded="false"
aria-controls="collapse42"></button>
</div>
<div id="collapse42" class="collapse" aria-labelledby="headingThree" data-parent="#accordion">
<div class="panel-body">
<p>
See the attached pdf for the steps (<a
href="https://drive.google.com/file/d/139YZ_axm4WVnS9_NCibQVjfWWUiGx4eV/view?usp=sharing">
Mobile_Configuration.pdf </a>). Any issues regarding the steps can be addressed to <a
href="mailto:[email protected]">[email protected]</a> by raising a ticket in the cc helpdesk (<a
href="https://www.iitp.ac.in/cc-helpdesk/">https://www.iitp.ac.in/cc-helpdesk/</a> )
</p>
</div>
</div>
</div>
<div class="panel">
<div class="panel-header" id="headingThree">
What is ICTC?
<button class="panel-link" data-toggle="collapse" data-target="#collapse43" aria-expanded="false"
aria-controls="collapse43"></button>
</div>
<div id="collapse43" class="collapse" aria-labelledby="headingThree" data-parent="#accordion">
<div class="panel-body">
<p>
ICTC is IIT Patna’s very own intra-college tech championship and it features Inter IIT Tech