-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1024 lines (1000 loc) · 40.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="author" content="Hamza Shafique" />
<meta name="theme-color" content="#2c2b7c" />
<link rel="icon" sizes="29x29" href="assets/img/icons/icon-29x29.png" />
<link rel="apple-touch-icon" sizes="192x192" href="assets/img/icons/apple-touch-icon.png" />
<link rel="canonical" href="https://hamza-56.github.io/itu-merit-calculator/" />
<link rel="manifest" href="/itu-merit-calculator/manifest.json" />
<meta
name="description"
content="Calculate your aggregate or your merit for getting admission in Information Technology University (ITU) by entering your marks, 2020"
/>
<meta
name="keywords"
content="ITU admission, ITU Merit, CS Merit, EE Merit, EDS Merit, MNT Merit, computer science Merit, engineering Merit, ITU aggregate engineering, last merit position ITU, ITU calculator, 2020"
/>
<title>ITU Merit/Aggregate Calculator</title>
<!-- Font Awesome icons (free version)-->
<script
defer
src="//cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/js/all.min.js"
crossorigin="anonymous"
></script>
<!-- Core theme CSS (includes Bootstrap)-->
<link href="css/styles.min.css" rel="stylesheet" />
<!-- Fonts CSS-->
<link rel="stylesheet" href="css/heading.css" />
<link rel="stylesheet" href="css/body.min.css" />
<link rel="preconnect" href="//www.googletagmanager.com" />
<link rel="preconnect" href="//fonts.gstatic.com" />
<!-- Global Site Tag (gtag.js) - Google Analytics -->
<script async src="//www.googletagmanager.com/gtag/js?id=UA-145240864-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-145240864-1');
</script>
<!-- Global site tag (gtag.js) - Google Analytics -->
</head>
<body id="page-top">
<nav class="navbar navbar-expand-lg bg-secondary fixed-top" id="mainNav">
<div class="container">
<!-- <a href="//hamza-56.github.io/itu-merit-calculator" ><div id="logo"><img src="/assets/img/icons/icon-50x50.png" alt="logo"></div></a> -->
<a class="navbar-brand js-scroll-trigger" href="#page-top">ITU Merit Calculator</a>
<button
class="navbar-toggler navbar-toggler-right font-weight-bold bg-primary text-white rounded-sm"
type="button"
data-toggle="collapse"
data-target="#navbarResponsive"
aria-controls="navbarResponsive"
aria-expanded="false"
aria-label="Toggle navigation"
>
Menu <i class="fas fa-bars"></i>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ml-auto">
<li class="nav-item mx-0 mx-lg-1">
<a class="nav-link py-3 px-0 px-lg-3 rounded-sm js-scroll-trigger" href="#bs">BS</a>
</li>
<li class="nav-item mx-0 mx-lg-1">
<a class="nav-link py-3 px-0 px-lg-3 rounded-sm js-scroll-trigger" href="#ms">MS</a>
</li>
<li class="nav-item mx-0 mx-lg-1">
<a class="nav-link py-3 px-0 px-lg-3 rounded-sm js-scroll-trigger" href="#phd">PhD</a>
</li>
<li class="nav-item mx-0 mx-lg-1">
<a class="nav-link py-3 px-0 px-lg-3 rounded-sm js-scroll-trigger" href="#help">HELP</a>
</li>
<li class="nav-item mx-0 mx-lg-1">
<a class="nav-link py-3 px-0 px-lg-3 rounded-sm js-scroll-trigger" href="#about">ABOUT</a>
</li>
<li class="nav-item mx-0 mx-lg-1">
<a class="nav-link py-3 px-0 px-lg-3 rounded-sm js-scroll-trigger" href="#faqs">FAQs</a>
</li>
</ul>
</div>
</div>
</nav>
<header id="bannerCarouselIndicators" class="mhead carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#bannerCarouselIndicators" data-slide-to="0" class="active"></li>
<li data-target="#bannerCarouselIndicators" data-slide-to="1"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<img
class="d-block w-100"
src="assets/img/slides/admissions-3.jpg"
loading="lazy"
alt="Admissions open 2020"
/>
</div>
<div class="carousel-item">
<img
class="d-block w-100"
src="assets/img/slides/itu-1.jpg"
loading="lazy"
alt="Information Technology University of the Punjab (ITU)"
/>
</div>
</div>
<a class="carousel-control-prev" href="#bannerCarouselIndicators" role="button" data-slide="prev">
<span class="mcarousel-control-icon carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#bannerCarouselIndicators" role="button" data-slide="next">
<span class="mcarousel-control-icon carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</header>
<section class="page-section text-secondary mb-0">
<div class="container">
<!-- About Section Heading-->
<div class="text-center">
<h2 class="page-section-heading d-inline-block text-secondary">ADMISSIONS CALENDAR 2020</h2>
</div>
<!-- Icon Divider-->
<div class="divider-custom divider-light">
<div class="divider-custom-line bg-secondary"></div>
<div class="divider-custom-icon"><i class="fas fa-star text-secondary"></i></div>
<div class="divider-custom-line bg-secondary"></div>
</div>
<div>
<h3 class="text-center">Important Notice</h3>
<div class="table-responsive" style="overflow: visible;">
<div id="table-deadline">
<p>
<i
><b>
Due to COVID-19 situation, there will be no entrance exam for BS Programs, MS Programs and the
EMBITE (Executive MBA in Innovation, Technology, and Entrepreneurship)
</b></i
>
</p>
<p>Interview will be conducted for the following degree programs:</p>
<ul>
<li>BS Economics with Data Science</li>
<li>BS Management & Technology</li>
<li>All MS programs</li>
<li>EMBITE</li>
</ul>
<p>
The admissions process for PhD will remain unchanged, there will be a test as well as interviews.
</p>
<table class="table table-bordered table-hovered table-striped admtable">
<tbody>
<tr>
<td class="font-weight-bold">Sr.</td>
<td class="font-weight-bold">Item</td>
<td class="font-weight-bold">Date</td>
</tr>
<tr>
<td>1.</td>
<td>Online Admissions Deadline (MS/BS/PhD/EMBITE)</td>
<td class="align-items-center text-center"><b>Monday, 10 August</b></td>
</tr>
<tr>
<td>2.</td>
<td>
ITU Graduates Admissions Tests
<br />
<p class="text-right">(for PhD programs only)</p>
</td>
<td class="align-items-center text-center"><b>August</b></td>
</tr>
<tr>
<td>3.</td>
<td>
Interviews
<p class="text-center">
<b>Undergraduate<i> (following programs only)</i></b>
<br />
BS Management and Technology
<br />
BS Economics with Data Science
</p>
<p class="text-center">
<b>Graduate</b>
<br />
MS Programs
<br />
Executive MBA (EMBITE)
<br />
PhD Programs
</p>
</td>
<td class="align-items-center text-center"><b>Mid August</b></td>
</tr>
<tr>
<td>4.</td>
<td>Merit List</td>
<td class="align-items-center text-center">
<b>Mon. 17 - Mon. 24 August</b>
</td>
</tr>
<tr>
<td>5.</td>
<td>Classes Commence</td>
<td class="align-items-center text-center"><b>Mid September</b></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</section>
<section id="bs" class="page-section bg-secondary text-white mb-0">
<div class="container">
<!-- About Section Heading-->
<div class="text-center">
<h2 class="page-section-heading d-inline-block text-white">BS Merit</h2>
</div>
<!-- Icon Divider-->
<div class="divider-custom divider-light">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon"><i class="fas fa-star"></i></div>
<div class="divider-custom-line"></div>
</div>
<div class="panel-group" role="tablist" aria-multiselectable="true">
<div class="panel accordion panel-default">
<div class="panel-heading py-3" role="tab" id="heading3">
<h4 class="faq-title">
<a
class="lead font-weight-bold"
class="collapsed"
role="button"
data-toggle="collapse"
data-parent="#accordion"
href="#bs-merit-1"
aria-expanded="true"
aria-controls="faq1"
>
BS Management and Technology & BS Economics with Data Science
<i class="ml-2 fas fa-lg fa-angle-down rotate-icon"></i>
</a>
</h4>
</div>
<div id="bs-merit-1" class="panel-collapse collapse" role="tabpanel" aria-labelledby="heading3">
<div class="panel-body px-3 mb-4">
<p class="lead font-weight-normal">
<form>
<div class="form-group row">
<label class="col-sm-12 col-md-2 text-center align-self-center col-form-label font-weight-bold"
>FSC Marks</label
>
<div class="col-sm-12 col-md-5">
<input
aria-label="Inter part 1 obtained"
type="number"
id="bs-merit-1-part1"
class="form-control rounded-sm mb-1 p-4"
placeholder="Obtained Marks in FSC"
required
min="0"
/>
</div>
<div class="col-sm-12 col-md-5">
<input
aria-label="Inter part 1 total"
type="number"
id="bs-merit-1-part1Total"
class="form-control rounded-sm mb-1 p-4"
placeholder="Total Marks in FSC"
required
min="0"
/>
</div>
</div>
<div class="form-group row">
<label class="col-sm-12 col-md-2 text-center align-self-center col-form-label font-weight-bold"
>Matric Marks</label
>
<div class="col-sm-12 col-md-5">
<input
aria-label="Matric obtained"
type="number"
id="bs-merit-1-matric"
class="form-control rounded-sm mb-1 p-4"
placeholder="Obtained Marks in Matric"
required
min="0"
/>
</div>
<div class="col-sm-12 col-md-5">
<input
aria-label="Matric total"
type="number"
id="bs-merit-1-matricTotal"
class="form-control rounded-sm mb-1 p-4"
placeholder="Total Marks in Matric"
required
min="0"
/>
</div>
</div>
<div class="form-group row">
<label class="col-sm-12 col-md-2 text-center align-self-center col-form-label font-weight-bold"
>Interview Marks</label
>
<div class="col-sm-12 col-md-5">
<input
aria-label="ITU/SAT obtained"
type="number"
id="bs-merit-1-interview"
class="form-control rounded-sm mb-1 p-4"
placeholder="Obtained Marks in Interview"
required
min="0"
/>
</div>
<div class="col-sm-12 col-md-5">
<input
aria-label="ITU/SAT total"
type="number"
id="bs-merit-1-interviewTotal"
class="form-control rounded-sm mb-1 p-4"
placeholder="Total Marks in Interview"
required
min="0"
/>
</div>
</div>
<div class="m-5 text-center">
<button
type="submit"
onclick="calculateBSMerit1(event)"
class="btn btn-primary bg-primary btn-lg rounded-sm text-white"
>
Calculate
</button>
</div>
</form>
</p>
</div>
</div>
</div>
<div class="panel accordion panel-default">
<div class="panel-heading py-3" role="tab" id="heading3">
<h4 class="faq-title">
<a
class="lead font-weight-bold"
class="collapsed"
role="button"
data-toggle="collapse"
data-parent="#accordion"
href="#bs-merit-2"
aria-expanded="true"
aria-controls="bs-merit-2"
>
BS Computer Science, BS Electrical Engineering & BS Computer Engineering
<i class="ml-2 fas fa-lg fa-angle-down rotate-icon"></i>
</a>
</h4>
</div>
<div id="bs-merit-2" class="panel-collapse collapse" role="tabpanel" aria-labelledby="heading3">
<div class="panel-body px-3 mb-4">
<p class="lead font-weight-normal">
<form>
<div class="form-group row">
<label class="col-sm-12 col-md-2 text-center align-self-center col-form-label font-weight-bold"
>FSC Marks</label
>
<div class="col-sm-12 col-md-5">
<input
aria-label="Inter part 1 obtained"
type="number"
id="bs-merit-2-part1"
class="form-control rounded-sm mb-1 p-4"
placeholder="Obtained Marks in FSC"
required
min="0"
/>
</div>
<div class="col-sm-12 col-md-5">
<input
aria-label="Inter part 1 total"
type="number"
id="bs-merit-2-part1Total"
class="form-control rounded-sm mb-1 p-4"
placeholder="Total Marks in FSC"
required
min="0"
/>
</div>
</div>
<div class="form-group row">
<label class="col-sm-12 col-md-2 text-center align-self-center col-form-label font-weight-bold"
>Matric Marks</label
>
<div class="col-sm-12 col-md-5">
<input
aria-label="Matric obtained"
type="number"
id="bs-merit-2-matric"
class="form-control rounded-sm mb-1 p-4"
placeholder="Obtained Marks in Matric"
required
min="0"
/>
</div>
<div class="col-sm-12 col-md-5">
<input
aria-label="Matric total"
type="number"
id="bs-merit-2-matricTotal"
class="form-control rounded-sm mb-1 p-4"
placeholder="Total Marks in Matric"
required
min="0"
/>
</div>
</div>
<div class="m-5 text-center">
<button
type="submit"
onclick="calculateBSMerit2(event)"
class="btn btn-primary bg-primary btn-lg rounded-sm text-white"
>
Calculate
</button>
</div>
</form>
</p>
</div>
</div>
</div>
</div>
<div class="py-3">
<div class="font-weight-bolder">
Note: There will be 2% deduction from Academic Marks for each late session for up to 5 late sessions.
</div>
<br />
<div class="font-italic">
Last Updated: July, 2020
</div>
</div>
<div id="BSResult" class="text-center"></div>
</div>
</section>
<section id="ms" class="page-section text-secondary mb-0">
<div class="container">
<!-- About Section Heading-->
<div class="text-center">
<h2 class="page-section-heading d-inline-block">MS Merit</h2>
</div>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon"><i class="fas fa-star"></i></div>
<div class="divider-custom-line"></div>
</div>
<form>
<div class="form-group row">
<label class="col-sm-12 col-md-2 text-center align-self-center col-form-label font-weight-bold"
>Undergraduate CGPA</label
>
<div class="col-sm-12 col-md-10">
<input
aria-label="Undergraduate obtained GPA"
type="number"
id="ms-merit-undergrad"
class="form-control rounded-sm mb-1 p-4"
placeholder="Undergraduate CGPA (out of 4.0)"
min="0"
max="4"
step="0.01"
required
/>
</div>
</div>
<div class="form-group row">
<label class="col-sm-12 col-md-2 text-center align-self-center col-form-label font-weight-bold"
>Interview Marks</label
>
<div class="col-sm-12 col-md-5">
<input
aria-label="Interview obtained"
type="number"
id="ms-merit-interview"
class="form-control rounded-sm mb-1 p-4"
placeholder="Obtained Marks in Interview"
required
min="0"
step="0.1"
/>
</div>
<div class="col-sm-12 col-md-5">
<input
aria-label="Interview total"
type="number"
id="ms-merit-interviewTotal"
class="form-control rounded-sm mb-1 p-4"
placeholder="Total Marks in Interview"
required
min="0"
/>
</div>
</div>
<div id="MSResult" class="text-center"></div>
<div class="m-5 text-center">
<button
type="submit"
onclick="calculateMSMerit(event)"
class="btn btn-primary bg-primary btn-lg rounded-sm text-white"
>
Calculate
</button>
</div>
</form>
<br />
<div class="font-italic">
Last Updated: July, 2020
</div>
</div>
</section>
<section id="phd" class="page-section bg-secondary text-white mb-0">
<div class="container">
<div class="text-center">
<h2 class="page-section-heading d-inline-block text-white">PhD Merit</h2>
</div>
<div class="divider-custom divider-light">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon"><i class="fas fa-star"></i></div>
<div class="divider-custom-line"></div>
</div>
<form>
<div class="form-group row">
<label class="col-sm-12 col-md-2 text-center align-self-center col-form-label font-weight-bold"
>Undergraduate CGPA</label
>
<div class="col-sm-12 col-md-10">
<input
aria-label="Undergraduate obtained GPA"
type="number"
id="phd-merit-undergrad"
class="form-control rounded-sm mb-1 p-4"
placeholder="Undergraduate CGPA (out of 4.0)"
required
min="0"
max="4.0"
step="0.01"
/>
</div>
</div>
<div class="form-group row">
<label class="col-sm-12 col-md-2 text-center align-self-center col-form-label font-weight-bold"
>Graduate CGPA</label
>
<div class="col-sm-12 col-md-10">
<input
aria-label="Graduate obtained GPA"
type="number"
id="phd-merit-grad"
class="form-control rounded-sm mb-1 p-4"
placeholder="Graduate CGPA (out of 4.0)"
required
min="0"
max="4.0"
step="0.01"
/>
</div>
</div>
<div class="form-group row">
<label class="col-sm-12 col-md-2 text-center align-self-center col-form-label font-weight-bold"
>ITU Test Marks</label
>
<div class="col-sm-12 col-md-5">
<input
aria-label="PhD test obtained"
type="number"
id="phd-merit-PhdTest"
class="form-control rounded-sm mb-1 p-4"
placeholder="Obtained Marks in ITU Test"
required
min="0"
/>
</div>
<div class="col-sm-12 col-md-5">
<input
aria-label="PhD test total"
type="number"
id="phd-merit-PhdTestTotal"
class="form-control rounded-sm mb-1 p-4"
placeholder="Total Marks in ITU Test"
required
min="0"
/>
</div>
</div>
<div class="form-group row">
<label class="col-sm-12 col-md-2 text-center align-self-center col-form-label font-weight-bold"
>Interview Marks</label
>
<div class="col-sm-12 col-md-5">
<input
aria-label="Interview obtained"
type="number"
id="phd-merit-interview"
class="form-control rounded-sm mb-1 p-4"
placeholder="Obtained Marks in Interview"
required
min="0"
step="0.1"
/>
</div>
<div class="col-sm-12 col-md-5">
<input
aria-label="Interview total"
type="number"
id="phd-merit-interviewTotal"
class="form-control rounded-sm mb-1 p-4"
placeholder="Total Marks in Interview"
required
min="0"
/>
</div>
</div>
<div id="PhDResult" class="text-center"></div>
<div class="m-5 text-center">
<button
type="submit"
onclick="calculatePhDMerit(event)"
class="btn btn-primary bg-primary btn-lg rounded-sm text-white"
>
Calculate
</button>
</div>
</form>
<br />
<div class="font-italic">
Last Updated: July, 2020
</div>
</div>
</section>
<section class="page-section" id="help">
<div class="container">
<!-- Contact Section Heading-->
<div class="text-center">
<h2 class="page-section-heading text-secondary d-inline-block mb-0">HELP</h2>
</div>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon"><i class="fas fa-star"></i></div>
<div class="divider-custom-line"></div>
</div>
<!-- Contact Section Content-->
<div class="row justify-content-center">
<div class="col-lg-4 py-2">
<div class="d-flex flex-column align-items-center">
<div class="icon-contact mb-3"><i class="fab fa-facebook"></i></div>
<div class="text-muted">Facebook Group (Non-official)</div>
<a href="//www.fb.com/groups/ITU.help.center/" class="lead font-weight-bold">ITU Help Center</a>
</div>
</div>
<div class="col-lg-4 py-2">
<div class="d-flex flex-column align-items-center">
<div class="icon-contact mb-3"><i class="fa fa-phone"></i></div>
<div class="text-muted">UAN</div>
<div class="lead font-weight-bold">(042)-111-111-ITU (488)</div>
</div>
</div>
<div class="col-lg-4 py-2">
<div class="d-flex flex-column align-items-center">
<div class="icon-contact mb-3"><i class="far fa-envelope"></i></div>
<div class="text-muted">Email</div>
<a class="lead font-weight-bold" href="mailto:[email protected]">[email protected]</a>
</div>
</div>
</div>
</div>
</section>
<section class="page-section bg-primary text-white mb-0" id="about">
<div class="container">
<!-- About Section Heading-->
<div class="text-center">
<h2 class="page-section-heading d-inline-block text-white">ABOUT</h2>
</div>
<!-- Icon Divider-->
<div class="divider-custom divider-light">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon"><i class="fas fa-star"></i></div>
<div class="divider-custom-line"></div>
</div>
<!-- About Section Content-->
<div class="row">
<div class="col-lg-4 ml-auto">
<p class="lead">
Calculate your aggregate and merit for admission in Information Technology University (ITU). The
Information Technology University is a public sector university located in Lahore, Pakistan focused on the
study of Computer Science, Electrical Engineering, Management & Technology and Data Science
</p>
</div>
<div class="col-lg-4 mr-auto">
<p class="lead">
Using ITU Merit Calculator you can calculate your aggregate. Everything is taken care of already, just
enter your marks and calculate your merit marks
</p>
</div>
</div>
</div>
</section>
<section class="page-section mb-0" id="faqs">
<div class="container">
<!-- FAQs Section Heading-->
<div class="text-center">
<h2 class="page-section-heading text-secondary d-inline-block mb-0">FAQs</h2>
</div>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon"><i class="fas fa-star"></i></div>
<div class="divider-custom-line"></div>
</div>
<!-- FAQs Section Content-->
<div class="panel-group" id="accordion" role="tablist" aria-multiselectable="true">
<div class="panel panel-default">
<div class="panel-heading p-3" role="tab" id="heading3">
<h4 class="faq-title">
<a
class="lead font-weight-bold"
class="collapsed"
role="button"
data-toggle="collapse"
data-parent="#accordion"
href="#faq1"
aria-expanded="true"
aria-controls="faq1"
>
Q: Is ITU is HEC and PEC recognized university?
<i class="ml-2 fas fa-lg fa-angle-down rotate-icon"></i>
</a>
</h4>
</div>
<div id="faq1" class="panel-collapse collapse" role="tabpanel" aria-labelledby="heading3">
<div class="panel-body px-3 mb-4">
<p class="lead font-weight-normal">
Yes, ITU is recognised by the Higher Education Commission (HEC) and accredited by the Pakistan
Engineering Council (PEC).
</p>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading p-3" role="tab" id="heading3">
<h4 class="faq-title">
<a
class="lead font-weight-bold"
class="collapsed"
role="button"
data-toggle="collapse"
data-parent="#accordion"
href="#faq2"
aria-expanded="true"
aria-controls="faq1"
>
Q: Does ITU offer admissions for the Spring semester?
<i class="ml-2 fas fa-lg fa-angle-down rotate-icon"></i>
</a>
</h4>
</div>
<div id="faq2" class="panel-collapse collapse" role="tabpanel" aria-labelledby="heading3">
<div class="panel-body px-3 mb-4">
<p class="lead font-weight-normal">
Only EMBITE offers admissions in the Spring semester. All other programs offer admission for the Fall
semester.
</p>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading p-3" role="tab" id="heading3">
<h4 class="faq-title">
<a
class="lead font-weight-bold"
class="collapsed"
role="button"
data-toggle="collapse"
data-parent="#accordion"
href="#faq3"
aria-expanded="true"
aria-controls="faq3"
>
Q: What are the timings for the undergraduate programs?
<i class="ml-2 fas fa-lg fa-angle-down rotate-icon"></i>
</a>
</h4>
</div>
<div id="faq3" class="panel-collapse collapse" role="tabpanel" aria-labelledby="heading3">
<div class="panel-body px-3 mb-4">
<p class="lead font-weight-normal">
Classes for the undergraduate programs are held from 8:30am to 5pm.
</p>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading p-3" role="tab" id="heading3">
<h4 class="faq-title">
<a
class="lead font-weight-bold"
class="collapsed"
role="button"
data-toggle="collapse"
data-parent="#accordion"
href="#faq4"
aria-expanded="true"
aria-controls="faq4"
>
Q: What are the timings for the graduate program?
<i class="ml-2 fas fa-lg fa-angle-down rotate-icon"></i>
</a>
</h4>
</div>
<div id="faq4" class="panel-collapse collapse" role="tabpanel" aria-labelledby="heading3">
<div class="panel-body px-3 mb-4">
<p class="lead font-weight-normal">
Classes for the graduate programs are held during weekdays from 5pm to 9pm. EMBITE classes are held on
weekends.
</p>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading p-3" role="tab" id="heading3">
<h4 class="faq-title">
<a
class="lead font-weight-bold"
class="collapsed"
role="button"
data-toggle="collapse"
data-parent="#accordion"
href="#faq5"
aria-expanded="true"
aria-controls="faq5"
>
Q: Does ITU provide hostel facility?
<i class="ml-2 fas fa-lg fa-angle-down rotate-icon"></i>
</a>
</h4>
</div>
<div id="faq5" class="panel-collapse collapse" role="tabpanel" aria-labelledby="heading3">
<div class="panel-body px-3 mb-4">
<p class="lead font-weight-normal">
Presently, ITU does not provide hostel facilities.
</p>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading p-3" role="tab" id="heading3">
<h4 class="faq-title">
<a
class="lead font-weight-bold"
class="collapsed"
role="button"
data-toggle="collapse"
data-parent="#accordion"
href="#faq6"
aria-expanded="true"
aria-controls="faq6"
>
Q: Does ITU give any transport facility to the students?
<i class="ml-2 fas fa-lg fa-angle-down rotate-icon"></i>
</a>
</h4>
</div>
<div id="faq6" class="panel-collapse collapse" role="tabpanel" aria-labelledby="heading3">
<div class="panel-body px-3 mb-4">
<p class="lead font-weight-normal">
ITU does not provide any transport facility to students.
</p>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading p-3" role="tab" id="heading3">
<h4 class="faq-title">
<a
class="lead font-weight-bold"
class="collapsed"
role="button"
data-toggle="collapse"
data-parent="#accordion"
href="#faq7"
aria-expanded="true"
aria-controls="faq7"
>
Q: Where is the ITU Admissions Test held?
<i class="ml-2 fas fa-lg fa-angle-down rotate-icon"></i>
</a>
</h4>
</div>
<div id="faq7" class="panel-collapse collapse" role="tabpanel" aria-labelledby="heading3">
<div class="panel-body px-3 mb-4">
<p class="lead font-weight-normal">
The ITU Admissions Test is held on campus at the Arfa Software Technology Park, Lahore.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<footer class="footer text-center">
<div class="container">
<div class="row">
<!-- Footer Location-->
<div class="col-lg-4 mb-5 mb-lg-0">
<h4 class="mb-4">LOCATION</h4>
<p class="pre-wrap lead mb-0">346-B, Ferozpur Road, Lahore, Pakistan</p>
</div>
<!-- Footer Social Icons-->
<div class="col-lg-4 mb-5 mb-lg-0">
<h4 class="mb-4">AROUND THE WEB</h4>
<a
aria-label="Facebook"
target="_blank"
rel="noreferrer"
class="btn btn-outline-light btn-social mx-1"
href="//www.fb.com/ITU.punjab"
>
<i class="fab fa-fw fa-facebook-f"></i>
</a>
<a
aria-label="Twitter"
target="_blank"
rel="noreferrer"
class="btn btn-outline-light btn-social mx-1"
href="//twitter.com/ITUPunjab"
>
<i class="fab fa-fw fa-twitter"></i>
</a>
<a
aria-label="Website"
target="_blank"
rel="noreferrer"
class="btn btn-outline-light btn-social mx-1"
href="//itu.edu.pk"
>
<i class="fa fa-globe-europe"></i>
</a>
<a
aria-label="Vimeo"
target="_blank"
rel="noreferrer"
class="btn btn-outline-light btn-social mx-1"
href="//vimeo.com/user19163010"
>
<i class="fab fa-fw fa-vimeo"></i>
</a>
</div>
<!-- Footer About Text-->
<div class="col-lg-4">
<h4 class="mb-4">ABOUT</h4>
<p class="lead mb-0">
ITU Merit Calculator is a free online tool created to help students who seek admission in ITU
</p>
</div>
</div>
</div>
</footer>
<!-- Copyright Section-->
<section class="copyright py-4 text-center text-white">
<small>Developed by <a href="//www.fb.com/who.is.hamza" class="profile-link">Hamza Shafique</a> </small>
</section>
<!-- Scroll to Top Button (Only visible on small and extra-small screen sizes)-->
<div class="scroll-to-top d-lg-none position-fixed">