-
Notifications
You must be signed in to change notification settings - Fork 4
/
slots.py
2860 lines (2846 loc) · 129 KB
/
slots.py
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
import re
from datetime import datetime, timedelta
courseDict = {
"ARB1001": "Arabic for Beginners",
"BCD3001": "Bayesian Data Analysis",
"BCD3002": "Business Intelligence and Analytics",
"BCD3003": "Cognitive Systems",
"BCD3004": "Data Modeling and Simulation",
"BCI2001": "Data Privacy",
"BCI2002": "Image Processing",
"BCI3001": "Web Security",
"BCI3002": "Disaster Recovery and Business Continuity Management",
"BCI3003": "Android Security",
"BCI3004": "Security of E-Based Systems",
"BCI3005": "Digital Watermarking and Steganography",
"BCI3006": "Biometrics",
"BCI4001": "Cyber Forensics and Investigation",
"BCI4002": "Vulnerability Analysis and Penetration Testing",
"BCI4003": "Malware Analysis",
"BCT3001": "Wireless Ad-hoc and Sensor Networks",
"BCT3002": "Embedded System Architecture and Design",
"BCT3004": "Privacy and Security in Internet of Things",
"BCT3005": "Fundamentals of Fog and Edge Computing",
"BCT3006": "Industrial and Medical Internet of Things",
"BCT3007": "Programming for Internet of Things Boards",
"BCT3008": "Software Defined Networks",
"BCT4001": "Sensors and Actuator Devices",
"BCT4002": "Architecting Smart Internet of Things Devices",
"BCT4003": "Wearable Computing",
"BCT4005": "Design of Smart Cities",
"BCT4006": "Cognitive Internet of Things",
"BCT4007": "Applications of Internet of Things in Robotics",
"BCT4009": "Internet of Things Architectures and its Protocol",
"BIT1001": "Introduction to Life Sciences",
"BIT1002": "Biostatistics",
"BIT1003": "Biology for Engineers",
"BIT1004": "Cell Biology and Biochemistry",
"BIT1005": "Biochemistry",
"BIT1006": "Cell Biology and Genetics",
"BIT1007": "Microbiology",
"BIT1008": "Principles of Chemical Engineering",
"BIT1009": "Biobusiness",
"BIT1010": "Computational Biochemistry",
"BIT1011": "Social Entrepreneurship",
"BIT1012": "Human Anatomy and Physiology",
"BIT1013": "Semiconductor Devices and Circuits",
"BIT1014": "Biomaterials",
"BIT1016": "Biochemical Analysis and Techniques",
"BIT1018": "Medical Optics",
"BIT1023": "Health Technology Management",
"BIT1024": "Database Management for Healthcare",
"BIT1025": "Hospital Management",
"BIT1026": "Food, Nutrition and Health",
"BIT1027": "Introduction to Research Techniques",
"BIT1028": "Bio-Inspired Design",
"BIT1030": "Sustainability Science for Engineers",
"BIT1031": "System Biology",
"BIT1702": "Biostatistics",
"BIT1901": "Technical Answers for Real World Problems (TARP)",
"BIT1902": "Industrial Internship",
"BIT1903": "Comprehensive Examination",
"BIT1904": "Capstone Project",
"BIT2001": "Analytical Bioinformatics",
"BIT2002": "Biological Database",
"BIT2003": "Genomics and Proteomics",
"BIT2004": "Bioinformatics",
"BIT2005": "Analytical Techniques in Biotechnology",
"BIT2006": "Molecular Biology",
"BIT2007": "Down Stream Processing",
"BIT2008": "Immunology and Immunotechnology",
"BIT2009": "Protein Engineering and Design",
"BIT2010": "Pharmaceutical Biotechnology",
"BIT2011": "Developmental Biology and Regenerative Medicine",
"BIT2012": "Metabolic Engineering",
"BIT2013": "Industrial Enzymology",
"BIT2014": "Proteomics",
"BIT2015": "Stem Cell Technology",
"BIT2016": "Cancer Biology and Informatics",
"BIT2017": "Industrial Biotechnology",
"BIT2018": "Food Biotechnology",
"BIT2019": "Environmental Biotechnology",
"BIT2020": "Chemical Reaction Engineering and Unit Operations",
"BIT2021": "Mass and Heat Transfer Operations",
"BIT2022": "Biomaterials and Artificial Organs",
"BIT2024": "Biomechanics",
"BIT2025": "Clinical Engineering",
"BIT2030": "Artificial Organs",
"BIT2031": "BioMEMS",
"BIT3001": "Computational Biology",
"BIT3002": "Molecular Modelling and Drug Design",
"BIT3003": "Molecular Evolution and Phylogeny",
"BIT3004": "Nanobiotechnology",
"BIT3005": "Biological Spectroscopy",
"BIT3006": "Genetic Engineering",
"BIT3007": "Animal Biotechnology",
"BIT3008": "Plant Biotechnology",
"BIT3009": "Forensic Science and Technology",
"BIT3010": "Food Process Technology",
"BIT3011": "Plant Cell and Tissue Culture",
"BIT3012": "Bioprocess Engineering and Bioreactor Design",
"BIT3015": "Biofluid Dynamics",
"BIT3017": "Rehabilitation Engineering",
"BIT3018": "Radiotherapy Techniques",
"BIT3099": "Industrial Internship",
"BIT3999": "Technical Answers for Real World Problems (TARP)",
"BIT4001": "Bioprocess Plant Design, Economics and Optimization",
"BIT4002": "Medical Diagnostics",
"BIT4003": "Molecular Modelling and Drug Design",
"BIT4004": "Tissue Engineering",
"BIT4005": "Genomics",
"BIT4006": "Neurobiology and Cognitive Science",
"BIT4009": "Radiotherapy Techniques",
"BIT4098": "Comprehensive Examination",
"BIT4099": "Capstone Project",
"BIT5001": "Advanced Biochemistry",
"BIT5002": "Bioprocess Technology",
"BIT5003": "Computational Biology",
"BIT5004": "Analytical Techniques in Biotechnology",
"BIT5005": "Genetic Engineering",
"BIT5010": "Anatomy and Physiology",
"BIT5011": "Rehabilitation Engineering",
"BIT5020": "Biobusiness Management",
"BIT5021": "Biodiversity and Conservation",
"BIT5022": "Bioethics, Biosafety and Patents",
"BIT5705": "Genetic Engineering",
"BIT6001": "Industrial Biotechnology",
"BIT6002": "Nanobiotechnology",
"BIT6003": "Protein Engineering and Technology",
"BIT6004": "Equipment Design, Optimization of Techniques and Bioprocess Economics",
"BIT6005": "Programming for Biologists",
"BIT6006": "Biomolecular Interactions and Informatics",
"BIT6007": "Food Process Technology",
"BIT6008": "Natural Product Technology",
"BIT6009": "Metabolomics and Metabolic Engineering",
"BIT6010": "Plant Biotechnology",
"BIT6011": "Animal Biotechnology",
"BIT6012": "Pharmaceutical Biotechnology",
"BIT6013": "Environmental Biotechnology",
"BIT6014": "Aquatic Biotechnology",
"BIT6015": "Immunotechnology",
"BIT6016": "Genomics",
"BIT6017": "Proteomics",
"BIT6018": "Cellular and Molecular Neuroscience",
"BIT6019": "Cancer Biology",
"BIT6020": "Medical Biotechnology",
"BIT6021": "Microbial Technology",
"BIT6022": "Biomaterials",
"BIT6023": "Biomechanics",
"BIT6024": "Health Care Management",
"BIT6099": "Masters Thesis",
"BIT6705": "Programming for Biologists",
"BIT6707": "Food Process Technology",
"BIY1003": "Biodiversity and Conservation Biology",
"BIY1007": "Molecular Biology",
"BIY1008": "Research Methodology",
"BIY1009": "Analytical Techniques",
"BIY1010": "Immunology",
"BIY1013": "Bioresource Management",
"BIY1015": "Environmental Health",
"BIY1017": "Pharmaceutical Biotechnology",
"BIY1018": "Industrial Biotechnology",
"BIY1020": "Vaccinology",
"BIY1023": "Nutrition and Health",
"BIY1024": "Computational Biochemistry and Biomedicine",
"BIY1026": "Forensic Science",
"BIY2001": "Microbial Genetics",
"BIY2003": "Bioprocess Principles",
"BIY2004": "Biophysics",
"BIY2009": "Genomics",
"BIY2010": "Plant Biotechnology",
"BIY2011": "Proteomics",
"BIY2013": "Molecular Endocrinology",
"BIY2014": "Aquatic Biotechnology",
"BIY2015": "Biological Spectroscopy",
"BIY2016": "Stem Cell Technology",
"BIY2017": "Neurobiology",
"BIY3002": "Environmental Genetics",
"BIY3003": "Protein Engineering",
"BIY4001": "Cancer Biology",
"BIY5004": "Food Biotechnology",
"BIY5005": "Environmental Biotechnology",
"BIY5006": "Medical Biotechnology",
"BIY6099": "Masters Thesis",
"BMD0001": "Life Sciences for Biomedical Engineers",
"BMD1001": "Tissue Engineering",
"BMD1002": "Bioinformatics",
"BMG5006": "Advanced Analytical Techniques",
"BMG5008": "Cancer Genetics",
"BMG5010": "Radiation Genetics",
"BMG5014": "Environmental Genetics",
"BMG5016": "Bioinformatics",
"BMG6004": "Genetic Engineering",
"BMG6005": "Genetic Counseling",
"BMG6006": "Ethical, Legal and Social Issues in Genetic Counseling",
"BMG6007": "Clinical Rotation",
"BST5006": "Tissue Engineering and Regenerative Medicine",
"BST5008": "Industrial Biotechnology",
"BST5010": "Genetic Engineering",
"BST6001": "Cancer Biology and Therapeutics",
"BST6004": "Forensic Science and Technology",
"BST6005": "Pharmacology and Toxicology",
"BST6007": "Nutraceuticals",
"BST6008": "Marine Biotechnology",
"BST6009": "Nanobiotechnology",
"BST6010": "Applied Enzyme Technology",
"BST6012": "Plant Biotechnology",
"CBS1002": "Object Oriented Programming",
"CBS1003": "Data Structures and Algorithms",
"CBS1004": "Computer Architecture and Organization",
"CBS1005": "Software Engineering Methodologies",
"CBS1006": "Principles of Operating Systems",
"CBS1007": "Database Systems",
"CBS1008": "Operations Research",
"CBS1009": "Computational Statistics",
"CBS1901": "Technical Answers for Real World Problems (TARP)",
"CBS1902": "Industrial Project",
"CBS1903": "Comprehensive Examination",
"CBS1904": "Capstone Project",
"CBS2002": "Formal Languages and Automata Theory",
"CBS2003": "Design Thinking",
"CBS3001": "Computer Networks",
"CBS3002": "Information Security",
"CBS3003": "Design and Analysis of Algorithms",
"CBS3004": "Artificial Intelligence",
"CBS3005": "Cloud, Microservices and Applications",
"CBS3006": "Machine Learning",
"CBS3007": "Data Mining and Analytics",
"CBS3008": "Introduction to Internet of Things",
"CBS3009": "Advanced Social, Text and Media Analytics",
"CBS3010": "Mobile Computing",
"CBS3011": "Usability Design of Software Applications",
"CBS3012": "IT Project Management",
"CBS3013": "Conversational Systems",
"CBS3014": "Modern Web Applications",
"CBS3015": "Information Systems Audit and Control",
"CBS3016": "Cognitive Science and Analytics",
"CBS4001": "Robotics and Embedded Systems",
"CBS4002": "Cryptology and Analysis",
"CBS4003": "Quantum Computation and Quantum Information",
"CBS4004": "Image Processing and Pattern Recognition",
"CBS4005": "Enterprise Systems",
"CHE1001": "Materials Science and Strength of Materials",
"CHE1002": "Process Calculations",
"CHE1003": "Process Engineering Thermodynamics",
"CHE1004": "Chemical Technology",
"CHE1005": "Momentum Transfer",
"CHE1006": "Heat Transfer",
"CHE1007": "Safety and Hazard Analysis",
"CHE1008": "Unit Processes in Organic Synthesis",
"CHE1009": "Biochemical Engineering",
"CHE1010": "Process Plant Utilities",
"CHE1011": "Optimization of Chemical Processes",
"CHE1012": "Petroleum Chemistry",
"CHE1013": "Natural Gas Engineering",
"CHE1014": "Petroleum Technology",
"CHE1015": "Petrochemical Technology",
"CHE1016": "Fermentation Technology",
"CHE1017": "Food Process Engineering",
"CHE1018": "Membrane Separations Technology",
"CHE1019": "Polymer Technology",
"CHE1020": "Fertilizer Technology",
"CHE1021": "Surfactant Technology",
"CHE1022": "Mechanical Operations",
"CHE1023": "Production and Operations Management",
"CHE1901": "Technical Answers for Real World Problems (TARP)",
"CHE1902": "Industrial Internship",
"CHE1903": "Comprehensive Examination",
"CHE1904": "Capstone Project",
"CHE2001": "Chemical Reaction Engineering",
"CHE2002": "Process Equipment Design and Economics",
"CHE2003": "Chemical Product Design",
"CHE2004": "Complex Fluids Engineering",
"CHE2005": "Chemical Modelling of the Atmosphere",
"CHE2006": "Fuels and Combustion",
"CHE2007": "Process Intensification",
"CHE2008": "Chemical Engineering Computational Fluid Dynamics",
"CHE3001": "Computational Methods in Process Engineering",
"CHE3002": "Process Instrumentation and Control",
"CHE3003": "Mass Transfer",
"CHE3004": "Heterogeneous Reaction Engineering",
"CHE3005": "Chemical Process Integration",
"CHE3006": "Process Plant Simulation",
"CHE3007": "Multiphase Flow",
"CHE3008": "Industrial Pollution Engineering",
"CHE3009": "Linear Systems theory with Applications",
"CHE3010": "Colloids and Interfacial Science",
"CHE3099": "Industrial Internship",
"CHE3999": "Technical Answers for Real World Problems (TARP)",
"CHE4001": "Equilibrium Staged Operations",
"CHE4002": "Transport Phenomena",
"CHE4003": "Modelling and Simulation in Process Engineering",
"CHE4005": "Fluidization Engineering",
"CHE4006": "Introduction to Molecular Dynamics and Simulation",
"CHE4007": "Rheology of Complex Fluids",
"CHE4098": "Comprehensive Examination",
"CHE4099": "Capstone Project",
"CHI1001": "Chinese for Engineers",
"CHI5001": "Chinese for Engineers",
"CHY1001": "Engineering Chemistry",
"CHY1002": "Environmental Sciences",
"CHY1004": "Materials and Instrumental Techniques",
"CHY1005": "Allied Chemistry",
"CHY1701": "Engineering Chemistry",
"CHY1703": "Environmental Studies",
"CHY6012": "Advanced Organic Chemistry",
"CHY6013": "Chemistry of Heterocyclic Compounds",
"CHY6014": "Organic Synthesis and Methodologies",
"CHY6015": "Photochemistry and Pericyclic Reactions",
"CHY6016": "Organic Chemistry Practical II",
"CHY6018": "Electroanalytical and Separation Techniques",
"CHY6019": "Environmental and Industrial Analytical Chemistry",
"CHY6020": "Bioanalytical and Forensic Analysis",
"CHY6021": "Analytical Quality Assurance for Process Industry",
"CHY6022": "General Organic and Inorganic Chemistry Practical I",
"CHY6023": "Analytical Chemistry Practical III",
"CHY6024": "Advanced Inorganic Chemistry",
"CHY6025": "Materials Chemistry",
"CHY6026": "Nanomaterials and Characterization Techniques",
"CHY6030": "Pharmaceutical Quality control and Quality Assurance",
"CHY6031": "Process Chemistry in Pharmaceutical Industry",
"CHY6032": "Pharmacognosy and Phytochemistry",
"CHY6033": "Medicinal Chemistry",
"CHY6034": "Medicinal Chemistry Practical",
"CHY6035": "Pharmacognosy and Phytochemistry Practical",
"CHY6036": "Advanced Physical Chemistry",
"CHY6039": "Analytical and Physical Chemistry Practical II",
"CIS5001": "Cryptosystems",
"CIS6001": "Cyber Attacks Detection and Prevention Systems",
"CIS6002": "Malware Analysis",
"CIS6003": "Penetration Testing and Vulnerability Assessment",
"CIS6004": "Wireless and Mobile Network Security",
"CIS6005": "Multimedia Security",
"CIS6006": "Cloud Security and Analytics",
"CIS6007": "Secure Software Systems",
"CIS6008": "Digital Forensics",
"CIS6009": "Trusted Network Systems",
"CIS6010": "Critical Infrastructure Protection",
"CIS6011": "Risk Detection, Management and Mitigation",
"CIS6012": "Computer Security Audit and Assurance",
"CIS6013": "Web Application Security",
"CLE1003": "Surveying",
"CLE1004": "Soil Mechanics and Foundation Engineering",
"CLE1006": "Environmental Engineering",
"CLE1007": "Construction Materials and Techniques",
"CLE1008": "Economics",
"CLE1009": "Fundamentals of Energy, Environment and Climate Change",
"CLE1010": "Natural Disaster Mitigation and Management",
"CLE1011": "Engineering Geology",
"CLE1012": "Air and Noise Pollution",
"CLE1013": "Environmental Impact Assessment",
"CLE1014": "Renewable Sources of Energy",
"CLE1016": "Urban Planning",
"CLE1901": "Technical Answers for Real World Problems (TARP)",
"CLE1902": "Industrial Internship",
"CLE1903": "Comprehensive Examination",
"CLE1904": "Capstone Project",
"CLE2001": "Building Drawing",
"CLE2002": "Strength of Materials",
"CLE2003": "Structural Analysis",
"CLE2004": "Water Resource Engineering",
"CLE2005": "Transportation Engineering",
"CLE2006": "Earthquake Engineering",
"CLE2007": "Advanced Concrete Technology",
"CLE2008": "Construction Planning and Management",
"CLE2009": "Advanced Soil Mechanics",
"CLE2010": "Ground Improvement Techniques",
"CLE2011": "Soil Dynamics and Machine Foundation",
"CLE2012": "Unsaturated Soil Mechanics",
"CLE2013": "Advanced Foundation Engineering",
"CLE2014": "Geotechnical Earthquake Engineering",
"CLE2015": "Hydraulic Structures and Machinery",
"CLE2016": "Advanced Fluid Mechanics",
"CLE2017": "Hydrology",
"CLE2018": "Industrial Wastes Treatment and Disposal",
"CLE2019": "Pollution Control and Monitoring",
"CLE2020": "Solid Waste Management",
"CLE2021": "Advanced Surveying",
"CLE2022": "Economics and Business Finance for Civil Engineers",
"CLE2023": "GIS and Remote Sensing",
"CLE2024": "Global Position System",
"CLE3001": "Quantity Surveying and Estimating",
"CLE3002": "Basics of Structural Design",
"CLE3003": "Applications of Matrix Methods in Structural Analysis",
"CLE3004": "Advanced Structural Analysis",
"CLE3005": "Ground Water Engineering",
"CLE3006": "Highway Pavement Design",
"CLE3007": "Traffic Engineering",
"CLE3008": "Transport Planning and Management",
"CLE3009": "Highway Engineering",
"CLE3010": "Architecture and Town Planning",
"CLE3011": "Finite Element Methods",
"CLE3099": "Industrial Internship",
"CLE3999": "Technical Answers for Real World Problems (TARP)",
"CLE4001": "Design of Steel Structures",
"CLE4002": "Design of Advanced Concrete Structures",
"CLE4003": "Prestressed Concrete Design",
"CLE4004": "Seismic Design of Structures",
"CLE4098": "Comprehensive Examination",
"CLE4099": "Capstone Project",
"CLE5001": "Theory of Elasticity and Plasticity",
"CLE5002": "Design of Concrete Structural Systems",
"CLE5003": "Structural Dynamics",
"CLE5004": "Physicochemical, Biological Principles and Processes",
"CLE5005": "Design of Water and Wastewater Treatment Systems",
"CLE5007": "Environmental Quality Monitoring",
"CLE5010": "Matrix Methods of Structural Analysis",
"CLE5012": "Design of Bridges",
"CLE5013": "Experimental Stress Analysis",
"CLE5014": "Machine Foundations",
"CLE5015": "Prefabricated Structures",
"CLE5016": "Stability of Structures",
"CLE5017": "Construction Practices and Equipment",
"CLE5018": "Modern Construction Materials",
"CLE5019": "Construction Planning and Scheduling",
"CLE5020": "Contract and Administration Planning",
"CLE5021": "Construction Economics and Finance",
"CLE5022": "Supply Chain Management",
"CLE5023": "Computer Application in Infrastructure Management",
"CLE5705": "Design of Water and Wastewater Treatment Systems",
"CLE5710": "Matrix Methods of Structural Analysis",
"CLE6001": "Advanced Concrete Materials and Technology",
"CLE6002": "Advanced Foundation Design",
"CLE6004": "Repair and Rehabilitation of Structures",
"CLE6005": "Solid and Hazardous Waste Management",
"CLE6006": "Environmental Geotechnology",
"CLE6007": "Energy, Environment and Climate Change",
"CLE6008": "Environmental Impact Assessment",
"CLE6009": "Air and Noise Pollution Control",
"CLE6010": "Advanced Wastewater Treatment",
"CLE6011": "Mathematical Modeling in Environmental Engineering",
"CLE6012": "Remote Sensing and GIS Applications",
"CLE6013": "Occupational Health and Industrial Safety",
"CLE6014": "Finite Element Analysis",
"CLE6015": "Advanced Design of Steel Structures",
"CLE6016": "Pre-stressed Concrete Structures",
"CLE6017": "Earthquake Resistant Design",
"CLE6018": "Application of Numerical Methods in Structural Engineering",
"CLE6019": "Theory and Design of Plates and Shells",
"CLE6020": "Analysis and Design of Tall Structures",
"CLE6021": "Structural Optimization",
"CLE6022": "Urban Planning and Sustainability",
"CLE6023": "Offshore Structures",
"CLE6024": "Energy Efficient Buildings",
"CLE6026": "Construction Personnel Management",
"CLE6027": "Quality Control and Safety",
"CLE6028": "Project Formulation and Appraisal",
"CLE6029": "Infrastructure development and BOT, BOOT Projects",
"CLE6030": "Estimating, Tendering and Bidding",
"CLE6031": "Formwork for Concrete Structures",
"CLE6032": "Prefabricated Techniques and Management",
"CLE6033": "Green Building and Energy Management",
"CLE6034": "Automation in Construction Industry",
"CLE6035": "Construction Techniques of Steel and Concrete Composite Structures",
"CLE6036": "Construction Techniques of Deep Foundations",
"CLE6037": "Flexible and Rigid Pavements",
"CLE6099": "Masters Thesis",
"CSE1001": "Problem Solving and Programming",
"CSE1002": "Problem Solving and Object Oriented Program",
"CSE1003": "Digital Logic and Design",
"CSE1004": "Network and Communication",
"CSE1005": "Software Design and Development",
"CSE1006": "Blockchain and Cryptocurrency Technologies",
"CSE1007": "Java Programming",
"CSE1008": "Programming in C",
"CSE1011": "Cryptography Fundamentals",
"CSE1014": "Foundations of Artificial Intelligence",
"CSE1015": "Machine Learning Essentials",
"CSE1016": "Deep Learning Principles and Practices",
"CSE1022": "Foundations of Robotics Kinematics, Dynamics and Motion Control",
"CSE1023": "Robot Vision",
"CSE1028": "Drone Applications, Components and Assembly",
"CSE1901": "Technical Answers for Real World Problems (TARP)",
"CSE1902": "Industrial Internship",
"CSE1903": "Comprehensive Examination",
"CSE1904": "Capstone Project",
"CSE2001": "Computer Architecture and Organization",
"CSE2002": "Theory of Computation and Compiler Design",
"CSE2003": "Data Structures and Algorithms",
"CSE2004": "Database Management Systems",
"CSE2005": "Operating Systems",
"CSE2006": "Microprocessor and Interfacing",
"CSE2007": "Java / Web programming in Healthcare",
"CSE2008": "Network Security",
"CSE2010": "Advanced C Programming",
"CSE2011": "Data Structures and Algorithms",
"CSE2012": "Design and Analysis of Algorithms",
"CSE2013": "Theory of Computation",
"CSE2014": "Compiler Design",
"CSE2015": "Internet Programming and Web Technologies",
"CSE2016": "Microprocessor and Microcontrollers",
"CSE2020": "Introduction to Cyber Physical Systems",
"CSE2021": "Distributed Real-Time Systems",
"CSE2022": "Cyber Physical Systems",
"CSE2023": "Robotics Process Automation",
"CSE2024": "Advanced Robotic Process Automation Developer",
"CSE2025": "Machine Diagnostics and Condition Monitoring",
"CSE2026": "Cloud Computing",
"CSE2030": "Signals and Systems",
"CSE2031": "Principles of Database Management Systems",
"CSE2034": "Cyber Physical System Design",
"CSE3001": "Software Engineering",
"CSE3002": "Internet and Web Programming",
"CSE3003": "Micro Kernel OS",
"CSE3004": "Storage Technologies",
"CSE3005": "Advanced Computer Architecture",
"CSE3006": "Embedded System Design",
"CSE3007": "Foundation Skills in Product Development",
"CSE3008": "Integrated Digital Design",
"CSE3009": "Internet of Things",
"CSE3010": "Real Time Systems",
"CSE3011": "Robotics and Its Applications",
"CSE3012": "Algorithms for Computational Biology",
"CSE3013": "Artificial Intelligence",
"CSE3014": "Bio Inspired Computing",
"CSE3015": "Business Intelligence",
"CSE3016": "Computer Graphics and Multimedia",
"CSE3017": "Computer Vision",
"CSE3018": "Content Based Image and Video Retrieval",
"CSE3019": "Data Mining",
"CSE3020": "Data Visualization",
"CSE3021": "Social and Information Networks",
"CSE3022": "Soft Computing",
"CSE3023": "Speech Technology",
"CSE3024": "Web Mining",
"CSE3025": "Large Scale Data Processing",
"CSE3026": "E-Learning Technologies",
"CSE3027": "Electronic and Mobile Commerce",
"CSE3028": "Functional Programming",
"CSE3029": "Game Programming",
"CSE3030": "Open Source Software",
"CSE3031": "Software Testing",
"CSE3032": "Software Project Management",
"CSE3033": "Web Security",
"CSE3034": "Nature Inspired Computing",
"CSE3035": "Principles of Cloud Computing",
"CSE3042": "Machine Intelligence for Medical Image Analysis",
"CSE3043": "Video Analytics",
"CSE3044": "Cryptography and Network Security",
"CSE3045": "Mathematical Modeling for Data Science",
"CSE3046": "Programming for Data Science",
"CSE3047": "Predictive Analytics",
"CSE3048": "Computer Graphics",
"CSE3049": "Distributed Computing Systems",
"CSE3050": "Data Visualization and Presentation",
"CSE3051": "Open Source Programming",
"CSE3052": "Software Quality and Testing",
"CSE3053": "Big Data Analytics",
"CSE3054": "Data Mining Concepts and Techniques",
"CSE3055": "Deep Learning",
"CSE3056": "Knowledge Representation and Reasoning",
"CSE3057": "Reinforcement Learning",
"CSE3058": "Cognitive Robotics",
"CSE3059": "Drones and Autonomous Systems",
"CSE3060": "Robotics Based Industrial Automation",
"CSE3061": "Artificial Intelligence for Cyber Security",
"CSE3063": "Software Engineering Principles",
"CSE3064": "Smart Sensors for Healthcare",
"CSE3070": "Machine Learning and its Applications",
"CSE3071": "Next Generation Networks",
"CSE3072": "Cyber Physical Systems Assurance",
"CSE3073": "Control Discrete Event Systems",
"CSE3074": "Computer Controlled Systems",
"CSE3075": "Machine Vision",
"CSE3076": "Context -Aware Computing",
"CSE3078": "Smart Farming and Agriculture",
"CSE3079": "Smart Infrastructure",
"CSE3081": "Cyber Security for Automation Systems",
"CSE3082": "Industrial Networking and Information Systems",
"CSE3083": "Engineering Data Analytics",
"CSE3092": "Advanced Java Programming",
"CSE3099": "Industrial Internship",
"CSE3501": "Information Security Analysis and Audit",
"CSE3502": "Information Security Management",
"CSE3505": "Foundations of Data Analytics",
"CSE3506": "Essentials of Data Analytics",
"CSE3999": "Technical Answers for Real World Problems (TARP)",
"CSE4001": "Parallel and Distributed Computing",
"CSE4002": "Adhoc Wireless Networks",
"CSE4003": "Cyber Security",
"CSE4004": "Digital Forensics",
"CSE4005": "Green and Energy aware Computing",
"CSE4006": "Haptic Technology",
"CSE4007": "Mobile Computing",
"CSE4008": "Mobile Pervasive Computing",
"CSE4009": "Network Management System",
"CSE4010": "Parallel Algorithms",
"CSE4011": "Virtualization",
"CSE4012": "Digital Signal Processing",
"CSE4013": "Embedded Programming",
"CSE4014": "High Performance Computing",
"CSE4015": "Human Computer Interaction",
"CSE4016": "Multi-Core Architecture and Operating System",
"CSE4017": "Software Hardware Co-Design",
"CSE4018": "Advanced Analytics",
"CSE4019": "Image Processing",
"CSE4020": "Machine Learning",
"CSE4021": "Modelling and Simulation",
"CSE4022": "Natural Language Processing",
"CSE4023": "Pattern Recognition",
"CSE4024": "Advanced Java Programming",
"CSE4025": "Design Patterns",
"CSE4026": "Intelligent Tutoring Systems",
"CSE4027": "Mobile Programming",
"CSE4028": "Object Oriented Software Development",
"CSE4029": "Quantum Computing",
"CSE4030": "Abstraction and its Applications",
"CSE4031": "Game Theory",
"CSE4032": "Search Technologies",
"CSE4033": "Cloud Computing and Information Security",
"CSE4034": "IoT Edge Nodes and its Applications",
"CSE4035": "Mobile App Development for IoT",
"CSE4038": "Computer Vision in Healthcare Application",
"CSE4039": "Intelligent Embedded Systems",
"CSE4040": "Bio-Informatics",
"CSE4041": "Perception and Algorithm",
"CSE4042": "Evolutionary Computation for Video Processing",
"CSE4043": "Audio and Video Forensics",
"CSE4044": "Augmented Reality and Virtual Reality",
"CSE4045": "Human Machine Interaction",
"CSE4046": "3D Graphics and Animation",
"CSE4048": "Soft Computing in Medical Diagnostics",
"CSE4049": "Speech and Language Processing using Deep Learning",
"CSE4051": "Predictive Analytics and Internet of Things",
"CSE4052": "Smart Product Development",
"CSE4054": "Artificial Intelligence in Block Chain",
"CSE4055": "Cyber Threat Intelligence",
"CSE4056": "Intelligent Multi Agent and Experts Systems",
"CSE4057": "Network Science and Modeling",
"CSE4058": "Business Intelligence",
"CSE4059": "Cognitive Systems",
"CSE4060": "Intelligent Robots and Drone Technology",
"CSE4062": "Knowledge Representation",
"CSE4063": "Reinforcement Learning",
"CSE4064": "Event Processing and Correlation Systems",
"CSE4065": "Modeling and Simulation of Digital Systems",
"CSE4071": "Wearable Health Monitoring Devices",
"CSE4072": "Security and Privacy of Cyber Physical Systems",
"CSE4073": "Cyber Physical Systems for Internal and External Security",
"CSE4098": "Comprehensive Examination",
"CSE4099": "Capstone Project",
"CSE5001": "Algorithms Design and Implementation",
"CSE5002": "Operating Systems and Virtualization",
"CSE5003": "Database Systems Design and Implementation",
"CSE5004": "Computer Networks",
"CSE5005": "Software Engineering and Modelling",
"CSE5006": "Multicore Architectures",
"CSE5007": "Exploratory Data Analysis",
"CSE5009": "Soft Computing",
"CSE5010": "Data Structures and Algorithms Analysis",
"CSE5011": "Database Systems and Design",
"CSE5012": "Artificial Intelligence Principles and Techniques",
"CSE5016": "Data Engineering",
"CSE5017": "Applied Machine Learning",
"CSE5019": "CPS Essentials",
"CSE5020": "Sensors and Actuators",
"CSE5021": "Data Warehousing and Mining",
"CSE5022": "Machine Learning for Cyber Physical Systems",
"CSE5023": "Cyber Security",
"CSE5024": "Cloud Computing",
"CSE5025": "Heterogeneous Networks",
"CSE6001": "Bigdata Frameworks",
"CSE6002": "Information Security Foundations",
"CSE6003": "Web Services",
"CSE6004": "Cloud Computing Eco-Systems",
"CSE6005": "Machine Learning",
"CSE6006": "NoSQL Databases",
"CSE6008": "Distributed Systems",
"CSE6009": "IoT Technology and Applications",
"CSE6010": "Cloud Application Development and Management",
"CSE6012": "Image Processing and Analysis",
"CSE6013": "Advanced Software Testing",
"CSE6014": "Programming for Data Science",
"CSE6015": "Mobile Application and Development",
"CSE6016": "Information Visualization",
"CSE6017": "Mining Massive Data",
"CSE6018": "Streaming Data Analytics",
"CSE6019": "Text, Web and Social Media Analytic",
"CSE6020": "Big Data Technologies",
"CSE6021": "Domain Specific Predictive Analytics",
"CSE6022": "Soft Computing",
"CSE6023": "Cloud Computing Fundamentals",
"CSE6024": "Machine Learning Techniques",
"CSE6025": "Analytics of Things",
"CSE6026": "IoT on Cloud",
"CSE6027": "Mobile Cloud Computing",
"CSE6028": "Cloud Security and Audit",
"CSE6029": "Cloud Storage Technologies",
"CSE6030": "Design Thinking",
"CSE6031": "Cyberspace and Information Technology Laws",
"CSE6032": "Cloud Computing Paradigm on Software Engineering",
"CSE6034": "Big Data Analytics",
"CSE6037": "Deep Learning and its Applications",
"CSE6038": "Bio-Inspired Computing",
"CSE6041": "Blockchain Technology",
"CSE6042": "Deep Learning",
"CSE6043": "Image and Video Analytics",
"CSE6046": "Network Science and Applications",
"CSE6047": "Data Mining in Healthcare",
"CSE6048": "Big Data Analytics in Medical Applications",
"CSE6049": "IoT Security",
"CSE6050": "Data Analytics",
"CSE6051": "Information and Network Security",
"CSE6052": "Parallel Processing and Computing",
"CSE6053": "Wireless Sensor Networks",
"CSE6054": "Recommender Systems",
"CSE6055": "Machine Learning in Computer Vision",
"CSE6056": "Artificial Intelligence for Game Programming",
"CSE6057": "Knowledge Engineering and Expert Systems",
"CSE6058": "Text and Speech Analytics",
"CSE6059": "Digital Imaging Techniques and Analysis",
"CSE6060": "Statistical Natural Language Processing",
"CSE6061": "Programming for CPS",
"CSE6062": "Soft Computing Techniques",
"CSE6063": "Knowledge Engineering and Intelligent Systems",
"CSE6064": "Intelligent Information Retrieval",
"CSE6065": "Pattern Recognition",
"CSE6066": "Reinforcement Learning",
"CSE6067": "Machine Learning for Signal Processing",
"CSE6068": "Machine Learning with Large Data Sets",
"CSE6069": "Advances in Cryptography and Network Security",
"CSE6070": "Cloud Computing",
"CSE6071": "Cognitive Science",
"CSE6072": "Web Technologies",
"CSE6073": "Smart Sensors and IoT Systems",
"CSE6076": "Predictive Analytics",
"CSE6077": "Network-on-Chip",
"CSE6078": "Software Defined Networks",
"CSE6079": "Real Time Systems",
"CSE6080": "Fault-Tolerant Systems",
"CSE6081": "High Performance Communication Networks",
"CSE6082": "Smart Health Technology",
"CSE6083": "Smart Transportation Systems",
"CSE6099": "Masters Thesis",
"CSE6703": "Web Services",
"CSE6704": "Cloud Computing Eco-Systems",
"CSE6708": "Distributed Systems",
"CSE6712": "Image Processing and Analysis",
"CSE6713": "Advanced Software Testing",
"CSE6717": "Mining Massive Data",
"CSE6718": "Streaming Data Analytics",
"CSE6722": "Soft Computing",
"CSE6723": "Cloud Computing Fundamentals",
"CSE6725": "Analytics of Things",
"CSI1001": "Principles of Database Systems",
"CSI1002": "Operating System Principles",
"CSI1003": "Formal Languages and Automata Theory",
"CSI1004": "Computer Organization and Architecture",
"CSI1007": "Software Engineering Principles",
"CSI2002": "Data Structures and Algorithm Analysis",
"CSI2003": "Advanced Algorithms",
"CSI2004": "Advanced Database Management Systems",
"CSI2005": "Principles of Compiler Design",
"CSI2006": "Microprocessor and Interfacing Techniques",
"CSI2007": "Data Communication and Networks",
"CSI2008": "Programming in Java",
"CSI3002": "Applied Cryptography and Network Security",
"CSI3003": "Artificial Intelligence and Expert Systems",
"CSI3004": "Data Science Programming",
"CSI3005": "Advanced Data Visualization Techniques",
"CSI3007": "Advanced Python Programming",
"CSI3010": "Data Warehousing and Data Mining",
"CSI3013": "Blockchain Technologies",
"CSI3017": "Business Intelligence",
"CSI3018": "Advanced Java",
"CSI3022": "Cyber Security and Application Security",
"CSI3023": "Advanced Server Side Programming",
"CSI3029": "Front End Design and Testing",
"ECE1001": "Fundamentals of Electrical Circuits",
"ECE1002": "Semiconductor Devices and Circuits",
"ECE1003": "Electromagnetic Field Theory",
"ECE1004": "Signals and Systems",
"ECE1005": "Sensors and Instrumentation",
"ECE1006": "Introduction to Nanoscience and Nanotechnology",
"ECE1007": "Opto Electronics",
"ECE1008": "Electronics Hardware Trouble Shooting",
"ECE1009": "Lidar and its Applications",
"ECE1010": "Fundamentals of Electric and Magnetic Circuits",
"ECE1011": "Medical Physics and Biomedical Instrumentation",
"ECE1012": "Medical Physics",
"ECE1013": "Electronic Circuits",
"ECE1014": "Sensors and Measurements",
"ECE1015": "Biometrics",
"ECE1016": "Circuit Theory",
"ECE1017": "Electromagnetic Field Theory and Transmission Lines",
"ECE1018": "Signal Analysis and Processing",
"ECE1023": "Biomedical Imaging",
"ECE1024": "Wearable Technology",
"ECE1025": "Lab on-chip",
"ECE1026": "Materials for Organs and Devices",
"ECE1027": "Biomechanics and Fluid Dynamics",
"ECE1028": "Biometric Technology and Security Systems",
"ECE1029": "Telemedicine and Virtual Instrumentation",
"ECE1030": "Artificial Intelligence for Biomedical",
"ECE1031": "Nano Medicine",
"ECE1032": "Regenerative Medicine",
"ECE1033": "Basics of Sensors and Wearable Technology",
"ECE1710": "Fundamentals of Electric and Magnetic Circuits",
"ECE1901": "Technical Answers for Real World Problems (TARP)",
"ECE1902": "Industrial Internship",
"ECE1903": "Comprehensive Examination",
"ECE1904": "Capstone Project",
"ECE2001": "Network Theory",
"ECE2002": "Analog Electronic Circuits",
"ECE2003": "Digital Logic Design",
"ECE2004": "Transmission Lines and Waveguides",
"ECE2005": "Probability Theory and Random Processes",
"ECE2006": "Digital Signal Processing",
"ECE2007": "Micro and Smart Systems and Technology",
"ECE2008": "Robotics and Automation",
"ECE2009": "Fiber Optic Sensors and Applications",
"ECE2010": "Control Systems",
"ECE2012": "Control Systems Engineering",
"ECE2013": "Electromagnetic Interference and Compatibility in Electronic System Design",
"ECE2014": "Basic Medical Instrumentation",
"ECE2015": "Integrated Circuits",
"ECE2016": "Control Systems in Medicine",
"ECE2017": "Physiological System Modeling",
"ECE2018": "Medical Informatics",
"ECE2019": "Artificial Neural Networks",
"ECE2020": "Digital Electronics",
"ECE2021": "Medical Imaging Equipment",
"ECE2022": "Graphical System Design for Biomedical Engineers",
"ECE2023": "Principles of Sensors and Data Acquisition",
"ECE2024": "Principles of Communication Engineering",
"ECE2025": "Probability and Statistical Theory of Communication",
"ECE2026": "Digital Circuit Design",
"ECE2027": "EMC and EMI",
"ECE2028": "Analog Circuits",
"ECE2029": "Sensors and Transducers for Health Care",
"ECE2030": "Physiological Signal Processing",
"ECE2031": "Antenna and Microwave Engineering",
"ECE2032": "Wearable Devices and its Applications",
"ECE2033": "Introduction to Data Analytics",
"ECE2034": "Flexible Electronics and Sensors",
"ECE2035": "Sensors, Actuators and Signal Conditioning",
"ECE2036": "Signal Processing in Robotics",
"ECE2037": "Wearable Electronics",
"ECE2038": "Digital Electronics and Microcontrollers",
"ECE3001": "Analog Communication Systems",
"ECE3002": "VLSI System Design",
"ECE3003": "Microcontroller and its Applications",
"ECE3004": "Computer Organization and Architectures",
"ECE3005": "Digital Image Processing",
"ECE3006": "Bio Medical Signal processing",
"ECE3007": "Advanced Digital Signal Processing",
"ECE3008": "Engineering Aspects of Remote Sensing",
"ECE3009": "Neural Networks and Fuzzy Control",
"ECE3010": "Antennas and Wave Propagation",
"ECE3011": "Microwave Engineering",
"ECE3012": "Detection and Estimation Theory",
"ECE3013": "Linear Integrated Circuits",
"ECE3014": "Analog IC Design",
"ECE3015": "VLSI Digital Signal Processing",
"ECE3016": "FPGA Based System Design",
"ECE3017": "RFIC Design",
"ECE3018": "BioMedical Instrumentation",
"ECE3019": "Systems and Signal Processing",
"ECE3020": "Diagnostic and Therapeutic Equipment",
"ECE3021": "Microcontrollers in Medical Applications",
"ECE3022": "Embedded Systems in Medicine",
"ECE3023": "Microcontrollers and its Applications",
"ECE3024": "Analog and Digital Communication",
"ECE3025": "Image Processing",
"ECE3026": "IoT System Architecture",
"ECE3027": "Bio-Signal Processing",
"ECE3028": "BioMEMS and Systems on-chip",
"ECE3029": "Graphical System Design for Communication Engineering",
"ECE3030": "Principles of Computer Communication",
"ECE3031": "Microcontroller and Embedded Systems",
"ECE3032": "Sensor Technology",
"ECE3033": "IoT in Automotive Systems",
"ECE3034": "IoT for Industrial Systems",
"ECE3035": "RFID and Flexible Sensors",
"ECE3036": "Sensors for Structural Health Monitoring",
"ECE3037": "Wireless Sensor Networks and IoT",
"ECE3038": "MEMS and Nano Sensors",
"ECE3039": "Chemical and Bio-sensors",
"ECE3040": "Wireless Technologies for IOT",
"ECE3041": "Biomedical Instrumentation and Measurements",
"ECE3042": "Data Acquisition Techniques",
"ECE3043": "Digital Image Processing for Medical Applications",
"ECE3044": "Wearable Technology and IoT",
"ECE3045": "Communication System Design",
"ECE3046": "Computer Vision and Pattern Recognition",
"ECE3047": "Machine Learning Fundamentals",
"ECE3048": "Deep Learning",
"ECE3049": "Embedded Systems for Mechatronics",
"ECE3050": "Advanced Electronics Systems",
"ECE3051": "Analog and Digital Signal Processing",
"ECE3099": "Industrial Internship",
"ECE3501": "IoT Fundamentals",
"ECE3502": "IoT Domain Analyst",
"ECE3999": "Technical Answers for Real World Problems (TARP)",
"ECE4001": "Digital Communication Systems",
"ECE4002": "Advanced Microcontrollers",
"ECE4003": "Embedded System Design",
"ECE4004": "Embedded C and Linux",
"ECE4005": "Optical Communication and Networks",
"ECE4006": "Radar and Navigational Aids",
"ECE4007": "Information Theory and Coding",
"ECE4008": "Computer Communication",
"ECE4009": "Wireless and Mobile Communication",
"ECE4010": "Satellite Communication",
"ECE4011": "Wireless Sensor Networks",
"ECE4012": "Spread Spectrum Communication",
"ECE4013": "Cryptography and Network Security",
"ECE4014": "Telecom Technologies",
"ECE4015": "ASIC Design",
"ECE4016": "Low Power IC Design",
"ECE4017": "Biomedical Image Processing",
"ECE4018": "Biomedical Signal Processing",
"ECE4019": "Medical Imaging Techniques",
"ECE4020": "Telemedicine",
"ECE4021": "Pattern Recognition",
"ECE4022": "Image Processing for Clinical Applications",
"ECE4023": "Biometric Systems",
"ECE4024": "Embedded Systems in Medical Applications",
"ECE4025": "Embedded Programming",
"ECE4026": "M2M Communication",
"ECE4027": "Embedded Sensing Technologies",
"ECE4028": "Smart IoT Applications",
"ECE4029": "Medical Device Technology",
"ECE4030": "Building Management Systems",
"ECE4031": "Artificial Intelligence with Python",
"ECE4032": "Neural Networks and Deep Learning",
"ECE4033": "IoT System Design and Applications",
"ECE4034": "Medical Robotics",
"ECE4098": "Comprehensive Examination",
"ECE4099": "Co-Op / Capstone Project",
"ECE5000": "Basic Electronics and Measurements",
"ECE5001": "Principles of Sensors",
"ECE5002": "Data Acquisition and Hardware Interfaces",
"ECE5004": "Software for Embedded Systems",
"ECE5005": "Advances in Wireless Networks",
"ECE5006": "Flexible and Wearable Sensors",
"ECE5007": "Nanomaterials and Sensors",
"ECE5008": "Micro and Nano Fluidics",
"ECE5009": "Advanced VLSI System Design",
"ECE5010": "Advanced Digital Communication",
"ECE5011": "Advanced Digital Signal Processing",
"ECE5012": "Advanced Antenna Engineering",
"ECE5013": "Fiber Optic Communication and Networks",
"ECE5014": "ASIC Design",
"ECE5015": "Digital IC Design",
"ECE5016": "Analog IC Design",
"ECE5017": "Digital Design with FPGA",
"ECE5018": "Physics of VLSI Devices",
"ECE5019": "Computer Aided Design for VLSI",
"ECE5020": "DSP Architectures",
"ECE5021": "Scripting Languages and Verification",
"ECE5022": "VLSI Digital Signal Processing",
"ECE5023": "Memory Design and Testing",
"ECE5024": "IC Technology",
"ECE5025": "System-on-Chip Design",
"ECE5026": "System Design with FPGA",
"ECE5027": "Advanced Computer Architecture",
"ECE5028": "Micro Sensors and Interface Electronics",
"ECE5029": "VLSI Testing and Testability",
"ECE5030": "Scripting Languages for VLSI Design Automation",
"ECE5031": "Quantum Physics for Nanostructures",
"ECE5032": "Physics and Chemistry of Solids",
"ECE5033": "Synthesis of Nanomaterials and Thin Film Deposition",
"ECE5034": "Nanomaterial Characterization Techniques",
"ECE5035": "Semiconductor Device Physics and Technology",
"ECE5036": "MEMS to NEMS",
"ECE5037": "Nanosensors",
"ECE5038": "Carbon Nanomaterials",
"ECE5039": "Lithographic Techniques for Device Fabrication",
"ECE5040": "Plasmonics",
"ECE5041": "Embedded System Design",
"ECE5042": "Microcontroller Architecture and Organization",
"ECE5043": "Embedded Programming",
"ECE5044": "Hardware Software Co-design",
"ECE5045": "Advanced Digital Image Processing",
"ECE5046": "Biomedical Sensors and Data Acquisition Techniques",
"ECE5047": "Biosignal Processing and Analysis",
"ECE5048": "Embedded Systems and IoT for Biomedical Applications",
"ECE5049": "MEMS and NEMS for Biomedical Applications",
"ECE5050": "Physiological Control Systems",
"ECE5051": "Artificial Neural Networks",
"ECE5052": "Medical Image Processing",
"ECE5053": "Electronic Hardware System Design",
"ECE5054": "Real Time Operating System",
"ECE5055": "Embedded Sensor Systems",
"ECE5056": "Wireless Protocols for IoT",
"ECE5057": "IoT Architecture",
"ECE5060": "Principles of Sensors and Signal Conditioning",
"ECE5061": "IoT Fundamentals and Architecture",
"ECE5062": "Data Acquisition",
"ECE5063": "System Dynamics and Control",
"ECE5064": "Programming and Scripting Languages",
"ECE5065": "Microcontrollers for Internet of Things Prototyping",
"ECE5066": "Chemical and Environmental Sensor",
"ECE5067": "Cloud and Fog Computing",
"ECE5068": "IoT Security and Trust",
"ECE5069": "IoT Applications and Web Development",
"ECE5071": "Sensors and Engine Management Systems",
"ECE5072": "Microcontrollers for Vehicular systems",
"ECE5073": "Vehicle Control Systems",