-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2440.json
7968 lines (7968 loc) · 250 KB
/
2440.json
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
[
{
"career": "UGRD",
"subject": "ACCT",
"number": "1010",
"code": "ACCT1010",
"name": "Accounting, Business and Society",
"description": "Overview of accounting in business and social contexts; use of accounting information for accountability and decision-making in companies, non-profit organizations, and government; major elements of accounting, including assets, liabilities, revenues and expenses; discharge of accountability by companies through corporate social and environmental reports. The aim of this course is to make students aware of how accounting could be applicable to fundamental business transactions and ways to evaluate how businesses are operated.",
"previousCodes": "",
"prerequisites": "",
"corequisites": "",
"exclusions": "ACCT 2010, CORE 1310",
"credits": 3,
"attributes": [
{
"attribute": "4Y",
"value": "13",
"attributeDescription": "Students admitted before 2022",
"valueDescription": "Common Core (SA) for 36-credit program"
},
{
"attribute": "CC22",
"value": "28",
"attributeDescription": "Students admitted from 2022",
"valueDescription": "Common Core (SA) for 30-credit program"
}
],
"classes": [
{
"section": "L1",
"number": "1001",
"remarks": "> Add/Drop Deadline : 17-Jul-2025",
"quota": 75,
"enroll": 0,
"waitlist": 0,
"consent": false,
"reservedQuota": [],
"schedule": [
{
"instructors": [
"CHEUNG, Kwok Yip"
],
"venue": "Rm 1007, LSK Bldg (80)",
"fromDate": "2025-07-14",
"toDate": "2025-08-08",
"weekdays": [
1,
3,
5
],
"fromTime": "14:00",
"toTime": "17:50"
}
]
}
]
},
{
"career": "UGRD",
"subject": "ACCT",
"number": "2200",
"code": "ACCT2200",
"name": "Principles of Accounting II",
"description": "For SB&M students, and programs that designate the course as a required/specified elective course. This is the second course of the principles of accounting sequence. It introduces concepts, accounting methods, and analytical tools related to managerial and cost accounting. Topics include fundamental cost concepts, job-order and process costing systems, CVP analysis, budgets and standards, segment reporting, and decision-making using cost information.",
"previousCodes": "",
"prerequisites": "(for non-BIBU students) ACCT 2010",
"corequisites": "",
"exclusions": "",
"credits": 3,
"attributes": [],
"classes": [
{
"section": "L1",
"number": "1020",
"remarks": "> Add/Drop Deadline : 19-Jun-2025",
"quota": 75,
"enroll": 0,
"waitlist": 0,
"consent": false,
"reservedQuota": [],
"schedule": [
{
"instructors": [
"LEUNG, Chi Kin"
],
"venue": "Rm 1009, LSK Bldg (80)",
"fromDate": "2025-06-16",
"toDate": "2025-07-11",
"weekdays": [
1,
3,
5
],
"fromTime": "14:00",
"toTime": "17:50"
}
]
}
]
},
{
"career": "TPG",
"subject": "ACCT",
"number": "5320",
"code": "ACCT5320",
"name": "Beyond the Headlines: Financial Reporting and Valuation Issues in M&A",
"description": "Financial accounting is the fundamental language used to express the economic realities of complex financial scenarios including mergers & acquisitions (M&A) and corporate divestitures. Understanding this language is crucial for converting financial statement data into decision enhancing information, and expressing strategic business plans and investment ideas in a powerful and convincing way. The course is designed to develop sophisticated users of financial accounting information and will benefit any student who desires to increase his or her ability to understand and profitably exploit financial information. The class format involves a mixture of lecture and class discussion.",
"previousCodes": "ACCT6900C",
"prerequisites": "ACCT 5100 OR (ACCT 5160 AND ACCT 5170)",
"corequisites": "",
"exclusions": "",
"credits": 2,
"attributes": [],
"classes": [
{
"section": "L1",
"number": "1174",
"remarks": "> For FT-MBA; PT-MBA; MBA Bi-Weekly and Digital MBA students only\n> Add/Drop Deadline : 16-Jun-2025",
"quota": 60,
"enroll": 0,
"waitlist": 0,
"consent": false,
"reservedQuota": [
{
"name": "Digital MBA",
"quota": 20,
"enroll": 0
},
{
"name": "MBA",
"quota": 35,
"enroll": 0
},
{
"name": "MBA Bi-weekly",
"quota": 5,
"enroll": 0
}
],
"schedule": [
{
"instructors": [
"WANG, Shiheng"
],
"venue": "Rm 2003, LSK Bldg",
"fromDate": "2025-06-15",
"toDate": "2025-06-15",
"weekdays": [
7
],
"fromTime": "09:00",
"toTime": "12:20"
},
{
"instructors": [
"WANG, Shiheng"
],
"venue": "Rm 2003, LSK Bldg",
"fromDate": "2025-06-15",
"toDate": "2025-06-15",
"weekdays": [
7
],
"fromTime": "14:00",
"toTime": "17:20"
},
{
"instructors": [
"WANG, Shiheng"
],
"venue": "Rm 2003, LSK Bldg",
"fromDate": "2025-06-29",
"toDate": "2025-06-29",
"weekdays": [
7
],
"fromTime": "09:00",
"toTime": "12:20"
},
{
"instructors": [
"WANG, Shiheng"
],
"venue": "Rm 2003, LSK Bldg",
"fromDate": "2025-06-29",
"toDate": "2025-06-29",
"weekdays": [
7
],
"fromTime": "14:00",
"toTime": "17:20"
},
{
"instructors": [
"WANG, Shiheng"
],
"venue": "Rm 2003, LSK Bldg",
"fromDate": "2025-07-13",
"toDate": "2025-07-13",
"weekdays": [
7
],
"fromTime": "09:00",
"toTime": "12:20"
},
{
"instructors": [
"WANG, Shiheng"
],
"venue": "Rm 2003, LSK Bldg",
"fromDate": "2025-07-13",
"toDate": "2025-07-13",
"weekdays": [
7
],
"fromTime": "14:00",
"toTime": "17:20"
},
{
"instructors": [
"WANG, Shiheng"
],
"venue": "Rm 2003, LSK Bldg",
"fromDate": "2025-07-27",
"toDate": "2025-07-27",
"weekdays": [
7
],
"fromTime": "09:00",
"toTime": "12:20"
},
{
"instructors": [
"WANG, Shiheng"
],
"venue": "Rm 2003, LSK Bldg",
"fromDate": "2025-07-27",
"toDate": "2025-07-27",
"weekdays": [
7
],
"fromTime": "14:00",
"toTime": "17:20"
}
]
}
]
},
{
"career": "TPG",
"subject": "ACCT",
"number": "5650",
"code": "ACCT5650",
"name": "Corporate Governance and Compliance",
"description": "The course covers corporate governance at two levels. At the practice level, it builds on students' prior knowledge of company law, and introduces them to the various requirements of compliance by company boards as stipulated in the Hong Kong regulatory framework. At the company policies level, this course introduces students to broader aspects of corporate governance, focusing on the multitude and interaction of stakeholders and how their interests may be protected.",
"previousCodes": "",
"prerequisites": "",
"corequisites": "",
"exclusions": "",
"credits": 2,
"attributes": [],
"classes": [
{
"section": "L1",
"number": "1098",
"remarks": "> For MSc(ACCT) students only\n> Add/Drop Deadline : 04-Jun-2025",
"quota": 60,
"enroll": 0,
"waitlist": 0,
"consent": false,
"reservedQuota": [
{
"name": "ACCT",
"quota": 60,
"enroll": 0
}
],
"schedule": [
{
"instructors": [
"CHAN, Suk Sun"
],
"venue": "G001, LSK Bldg (75)",
"fromDate": "2025-06-03",
"toDate": "2025-06-13",
"weekdays": [
2,
5
],
"fromTime": "09:30",
"toTime": "12:50"
},
{
"instructors": [
"CHAN, Suk Sun"
],
"venue": "G001, LSK Bldg (75)",
"fromDate": "2025-06-03",
"toDate": "2025-06-13",
"weekdays": [
2,
5
],
"fromTime": "14:30",
"toTime": "17:50"
}
]
}
]
},
{
"career": "TPG",
"subject": "ACCT",
"number": "6900K",
"code": "ACCT6900K",
"name": "International Taxation",
"description": "ACCT 6900K International Taxation provides students with an understanding of the basic principles of international taxation and implementation in local jurisdictions. The course focuses on frameworks set forth by international bodies in addressing taxation issues from a global perspective. Topics covered in this course include double taxation, transfer pricing, income tax treaties, sources of income, and tax avoidance issues. Some country-specific tax principles would also be covered. ACCT 6900K is a comprehensive taxation course that aims at giving student a high-level understanding of international landscape that enables them to make inquiry based on their foundational knowledge when making business decision as an accounting professional/ finance executive.",
"previousCodes": "",
"prerequisites": "",
"corequisites": "",
"exclusions": "",
"credits": 2,
"attributes": [],
"classes": [
{
"section": "L1",
"number": "1104",
"remarks": "> For MSc(ACCT) students only\n> Add/Drop Deadline : 17-Jun-2025",
"quota": 60,
"enroll": 0,
"waitlist": 0,
"consent": false,
"reservedQuota": [
{
"name": "ACCT",
"quota": 60,
"enroll": 0
}
],
"schedule": [
{
"instructors": [
"YIM, Jessica Lee"
],
"venue": "G001, LSK Bldg (75)",
"fromDate": "2025-06-16",
"toDate": "2025-06-26",
"weekdays": [
1,
4
],
"fromTime": "09:30",
"toTime": "12:50"
},
{
"instructors": [
"YIM, Jessica Lee"
],
"venue": "G001, LSK Bldg (75)",
"fromDate": "2025-06-16",
"toDate": "2025-06-26",
"weekdays": [
1,
4
],
"fromTime": "14:30",
"toTime": "17:50"
}
]
}
]
},
{
"career": "UGRD",
"subject": "BIEN",
"number": "1010",
"code": "BIEN1010",
"name": "Introduction to Biomedical Engineering",
"description": "This course is designed as an introductory course in biomedical engineering. The aim of this course is to present some of the basic science and human physiology knowledge used by biomedical engineers and illustrates the first steps in applying this knowledge to solve problems in human medicine. The second goal of this course is to link knowledge of basic science and engineering to fields of specialization and current research. This course also introduces the sub-specialties in biomedical engineering and through real-life examples to emphasize the types of problems biomedical engineers solve.",
"previousCodes": "",
"prerequisites": "",
"corequisites": "",
"exclusions": "",
"credits": 3,
"attributes": [
{
"attribute": "4Y",
"value": "14",
"attributeDescription": "Students admitted before 2022",
"valueDescription": "Common Core (S&T) for 36-credit program"
}
],
"classes": [
{
"section": "L1",
"number": "1162",
"remarks": "> Add/Drop Deadline: 17-Jul-2025",
"quota": 50,
"enroll": 0,
"waitlist": 0,
"consent": false,
"reservedQuota": [],
"schedule": [
{
"instructors": [
"LINARDI, Darwin"
],
"venue": "Rm 2302, Lift 17-18 (74)",
"fromDate": "2025-07-14",
"toDate": "2025-08-08",
"weekdays": [
1,
3,
5
],
"fromTime": "14:00",
"toTime": "17:20"
}
]
}
]
},
{
"career": "TPG",
"subject": "BTEC",
"number": "5210",
"code": "BTEC5210",
"name": "Principles and Application in Biotechnology",
"description": "The goal of this course is to provide an interdisciplinary, state-of-the-art introduction to biotechnology. Topics include the molecular foundations of biotechnology, molecular microbiology, biotech process development and scale-up, product approval and regulatory affairs, genomics, microarray analysis, proteomics, computational biology, molecular modeling, analytical biotechnology, and bioterrorism and biotechnology.",
"previousCodes": "",
"prerequisites": "",
"corequisites": "",
"exclusions": "",
"credits": 4,
"attributes": [],
"classes": [
{
"section": "L1",
"number": "1059",
"remarks": "> Add/Drop Deadline : 14-Jun-2025",
"quota": 68,
"enroll": 0,
"waitlist": 0,
"consent": false,
"reservedQuota": [],
"schedule": [
{
"instructors": [
"TBA"
],
"venue": "Rm 2503, Lift 25-26 (87)",
"fromDate": "2025-06-11",
"toDate": "2025-07-02",
"weekdays": [
3
],
"fromTime": "19:30",
"toTime": "22:50"
},
{
"instructors": [
"TBA"
],
"venue": "Rm 2503, Lift 25-26 (87)",
"fromDate": "2025-06-14",
"toDate": "2025-07-05",
"weekdays": [
6
],
"fromTime": "09:00",
"toTime": "13:20"
},
{
"instructors": [
"TBA"
],
"venue": "Rm 2503, Lift 25-26 (87)",
"fromDate": "2025-06-14",
"toDate": "2025-06-21",
"weekdays": [
6
],
"fromTime": "14:30",
"toTime": "18:50"
}
]
},
{
"section": "T1",
"number": "1060",
"remarks": " ",
"quota": 68,
"enroll": 0,
"waitlist": 0,
"consent": false,
"reservedQuota": [],
"schedule": [
{
"instructors": [
"TBA"
],
"venue": "TBA",
"fromDate": "2025-06-16",
"toDate": "2025-08-09",
"weekdays": [],
"fromTime": null,
"toTime": null
}
]
}
]
},
{
"career": "UGRD",
"subject": "CENG",
"number": "1800",
"code": "CENG1800",
"name": "Introduction to Food Science and Technology",
"description": "This course aims to provide students with fundamental knowledge of food science (chemistry, nutrition, microbiology, etc.) and safety issues for daily consumption, and preliminary perspective for further exploration on food processing technologies. This course also emphasizes critical thinking skills, helps students to tell the truth/myth of healthy products, food additives, and genetically modified foods, and make a wise judgement for food consumption.",
"previousCodes": "CORE1212",
"prerequisites": "",
"corequisites": "",
"exclusions": "",
"credits": 3,
"attributes": [
{
"attribute": "4Y",
"value": "11",
"attributeDescription": "Students admitted before 2022",
"valueDescription": "Common Core (SSC-S&T) for 36-credit program"
},
{
"attribute": "4Y",
"value": "14",
"attributeDescription": "Students admitted before 2022",
"valueDescription": "Common Core (S&T) for 36-credit program"
},
{
"attribute": "CC22",
"value": "26",
"attributeDescription": "Students admitted from 2022",
"valueDescription": "Common Core (S) for 30-credit program"
},
{
"attribute": "CC22",
"value": "27",
"attributeDescription": "Students admitted from 2022",
"valueDescription": "Common Core (T) for 30-credit program"
}
],
"classes": [
{
"section": "L1",
"number": "1130",
"remarks": "> Add/Drop Deadline: 15-Jul-2025",
"quota": 64,
"enroll": 0,
"waitlist": 0,
"consent": false,
"reservedQuota": [],
"schedule": [
{
"instructors": [
"LIU, Y.S. Marshal"
],
"venue": "Rm 2464, Lift 25-26 (122)",
"fromDate": "2025-07-14",
"toDate": "2025-08-08",
"weekdays": [
1,
3
],
"fromTime": "09:00",
"toTime": "11:50"
}
]
},
{
"section": "LA1",
"number": "1132",
"remarks": " ",
"quota": 32,
"enroll": 0,
"waitlist": 0,
"consent": false,
"reservedQuota": [],
"schedule": [
{
"instructors": [
"LIU, Y.S. Marshal"
],
"venue": "Rm 2007, CYT Bldg",
"fromDate": "2025-07-14",
"toDate": "2025-08-08",
"weekdays": [
5
],
"fromTime": "09:00",
"toTime": "13:20"
}
]
},
{
"section": "LA2",
"number": "1133",
"remarks": " ",
"quota": 32,
"enroll": 0,
"waitlist": 0,
"consent": false,
"reservedQuota": [],
"schedule": [
{
"instructors": [
"LIU, Y.S. Marshal"
],
"venue": "Rm 2007, CYT Bldg",
"fromDate": "2025-07-14",
"toDate": "2025-08-08",
"weekdays": [
5
],
"fromTime": "13:30",
"toTime": "17:50"
}
]
},
{
"section": "T1",
"number": "1131",
"remarks": " ",
"quota": 64,
"enroll": 0,
"waitlist": 0,
"consent": false,
"reservedQuota": [],
"schedule": [
{
"instructors": [
"LIU, Y.S. Marshal"
],
"venue": "Rm 2464, Lift 25-26 (122)",
"fromDate": "2025-07-14",
"toDate": "2025-08-08",
"weekdays": [
1,
3
],
"fromTime": "12:00",
"toTime": "12:50"
}
]
}
]
},
{
"career": "UGRD",
"subject": "CHEM",
"number": "1002",
"code": "CHEM1002",
"name": "Introduction to Chemistry of Cosmetics",
"description": "This course concentrates on the basic scientific principles in cosmetic science. Various topics with emphasis on molecular approach related to cosmetic products' formulation and proper uses of cosmetic products will be covered. Major topics include definition of cosmetics, make-up cosmetics, skin-care cosmetics, hair-care cosmetics, vehicles of cosmetic products, surfactants, colorants, alpha hydroxyl acids & beta hydroxyl acids, anti-oxidants and sunscreens, skin-whitening agents, hydrating substances / moisturizers, antiperspirants & deodorants and botanical ingredients.",
"previousCodes": "CORE1121",
"prerequisites": "",
"corequisites": "",
"exclusions": "",
"credits": 3,
"attributes": [
{
"attribute": "4Y",
"value": "14",
"attributeDescription": "Students admitted before 2022",
"valueDescription": "Common Core (S&T) for 36-credit program"
},
{
"attribute": "CC22",
"value": "26",
"attributeDescription": "Students admitted from 2022",
"valueDescription": "Common Core (S) for 30-credit program"
}
],
"classes": [
{
"section": "L1",
"number": "1033",
"remarks": "> Add/Drop Deadline : 19-Jun-2025",
"quota": 60,
"enroll": 0,
"waitlist": 0,
"consent": false,
"reservedQuota": [],
"schedule": [
{
"instructors": [
"CHAN, Dennis Ho Wai"
],
"venue": "Rm 2503, Lift 25-26 (87)",
"fromDate": "2025-06-16",
"toDate": "2025-07-11",
"weekdays": [
1,
3,
5
],
"fromTime": "14:00",
"toTime": "17:20"
}
]
}
]
},
{
"career": "UGRD",
"subject": "CHEM",
"number": "1008",
"code": "CHEM1008",
"name": "Introductory Chemistry",
"description": "This course targets science or engineering students with very little to no chemistry background. It provides a general introduction to basic principles of chemistry. Key topics include state of matters, atoms and elements, molecules and compounds, atomic structures and periodicity, molecular structures, quantities in chemical reactions, bonding theories, acids and bases, and solution chemistry. Students without HKDSE qualifications may seek instructor's approval for enrolment.",
"previousCodes": "",
"prerequisites": "",
"corequisites": "",
"exclusions": "Level 3 or above in HKDSE 1/2x Chemistry OR HKDSE 1x Chemistry, any CHEM courses at or above 1004-level, CORE 1120",
"credits": 3,
"attributes": [],
"classes": [
{
"section": "L1",
"number": "1034",
"remarks": "> Add/Drop Deadline : 19-Jun-2025",
"quota": 50,
"enroll": 0,
"waitlist": 0,
"consent": false,
"reservedQuota": [],
"schedule": [
{
"instructors": [
"SHEONG, Frederick Fu Kit",
"TSANG, Ming Wai Emily"
],
"venue": "Rm 2302, Lift 17-18 (74)",
"fromDate": "2025-06-16",
"toDate": "2025-07-11",
"weekdays": [
1,
3,
5
],
"fromTime": "14:00",
"toTime": "17:20"
}
]
}
]
},
{
"career": "UGRD",
"subject": "CHEM",
"number": "3610B",
"code": "CHEM3610B",
"name": "Chemistry Internship",
"description": "This course provides students with an opportunity to gain work experience in the chemistry field. Students will undertake training and supervised internships in our collaborating organizations/units. Credits assigned for each offering may be different depending on the total workload hours required. For CHEM students with instructor’s approval only. Graded P or F.",
"previousCodes": "",
"prerequisites": "CHEM 3550 OR CHEM 3555",
"corequisites": "",
"exclusions": "",
"credits": 3,
"attributes": [],
"classes": [
{
"section": "R1",
"number": "1035",
"remarks": "> Add/Drop Deadline : 21-Jun-2025",
"quota": 20,
"enroll": 0,
"waitlist": 0,
"consent": true,
"reservedQuota": [],
"schedule": [
{
"instructors": [
"CHAN, Dennis Ho Wai"
],
"venue": "TBA",
"fromDate": "2025-06-16",
"toDate": "2025-08-09",
"weekdays": [],
"fromTime": null,
"toTime": null
}
]
}
]
},
{
"career": "UGRD",
"subject": "CHEM",
"number": "4680",
"code": "CHEM4680",
"name": "Undergraduate Research",
"description": "Students do original research in accordance with their ability and background, and under the supervision of a faculty. The final course grade is determined based on an oral presentation and a written report to be submitted to a judging committee, which includes the faculty supervisor plus at least one other faculty. Enrollment in the course requires approval of the faculty supervisor.",
"previousCodes": "",
"prerequisites": "CHEM 2550",
"corequisites": "",
"exclusions": "",
"credits": 3,
"attributes": [],
"classes": [
{
"section": "R1",
"number": "1038",
"remarks": "> Add/Drop Deadline : 21-Jun-2025",
"quota": 10,
"enroll": 0,
"waitlist": 0,
"consent": true,
"reservedQuota": [],
"schedule": [
{
"instructors": [
"TBA"
],
"venue": "TBA",
"fromDate": "2025-06-16",
"toDate": "2025-08-09",
"weekdays": [],
"fromTime": null,
"toTime": null
}
]
}
]
},
{
"career": "UGRD",
"subject": "CHEM",
"number": "4691",
"code": "CHEM4691",
"name": "Capstone Research I",
"description": "Students will carry out a research project in one of the Chemistry research laboratories under the supervision of a faculty member. This research-based course provides students an opportunity to integrate and apply their chemical knowledge learnt in regular lecture and laboratory courses. At the end of the course, students are required to submit a written report and deliver an oral presentation to document their learning experiences. For CHEM students only. Students should seek instructor's approval prior to enrollment in the course.",
"previousCodes": "",
"prerequisites": "CHEM 3550 AND CHEM 3555",
"corequisites": "",
"exclusions": "CHEM 4689",
"credits": 3,
"attributes": [],
"classes": [
{
"section": "LA1",
"number": "1039",
"remarks": "> Add/Drop Deadline : 21-Jun-2025",
"quota": 10,
"enroll": 0,
"waitlist": 0,
"consent": true,
"reservedQuota": [],
"schedule": [
{
"instructors": [
"TBA"
],
"venue": "TBA",
"fromDate": "2025-06-16",
"toDate": "2025-08-09",
"weekdays": [],
"fromTime": null,
"toTime": null
}
]
}
]
},
{
"career": "UGRD",
"subject": "CHEM",
"number": "4692",
"code": "CHEM4692",
"name": "Capstone Research II",
"description": "Continuation of research project started in CHEM 4691 and to be conducted under the supervision of a faculty member/teaching staff. A written report and oral presentation are required to document their learning experiences. Students should seek instructor's approval prior to enrollment in the course.",
"previousCodes": "",
"prerequisites": "CHEM 4691",
"corequisites": "",
"exclusions": "",
"credits": 3,
"attributes": [],
"classes": [
{
"section": "LA1",
"number": "1040",
"remarks": "> Add/Drop Deadline : 21-Jun-2025",
"quota": 10,
"enroll": 0,
"waitlist": 0,
"consent": true,
"reservedQuota": [],
"schedule": [
{
"instructors": [
"TBA"
],
"venue": "TBA",
"fromDate": "2025-06-16",
"toDate": "2025-08-09",
"weekdays": [],
"fromTime": null,
"toTime": null
}
]
}
]
},
{
"career": "UGRD",
"subject": "CIVL",
"number": "1160",
"code": "CIVL1160",
"name": "Civil Engineering and Modern Society",
"description": "An introduction to civil engineering practice and infrastructure development, with an emphasis on Hong Kong projects. The basic principles, materials and technology used in typical civil engineering works such as foundations, buildings, bridges, slopes and water supply systems, etc. Infrastructure management and maintenance issues; social-economic aspects of large-scale civil engineering projects such as environmental protection, urban planning and development, etc.",
"previousCodes": "",
"prerequisites": "",
"corequisites": "",
"exclusions": "CIVL 1100",
"credits": 3,
"attributes": [
{
"attribute": "4Y",
"value": "11",
"attributeDescription": "Students admitted before 2022",
"valueDescription": "Common Core (SSC-S&T) for 36-credit program"
},
{
"attribute": "4Y",
"value": "14",
"attributeDescription": "Students admitted before 2022",
"valueDescription": "Common Core (S&T) for 36-credit program"
}
],
"classes": [
{
"section": "L1",
"number": "1002",
"remarks": "> Add/Drop Deadline: 19-Jun-2025",
"quota": 160,
"enroll": 0,
"waitlist": 0,
"consent": false,
"reservedQuota": [],
"schedule": [
{
"instructors": [
"CHAN, Yui Bun"
],
"venue": "LTL, CYT Bldg (354)",
"fromDate": "2025-06-16",
"toDate": "2025-07-11",
"weekdays": [
1,
3,
5
],
"fromTime": "09:30",
"toTime": "12:50"
}
]
},
{
"section": "T1",
"number": "1003",
"remarks": " ",
"quota": 160,
"enroll": 0,
"waitlist": 0,
"consent": false,
"reservedQuota": [],
"schedule": [
{
"instructors": [
"CHAN, Yui Bun"
],
"venue": "TBA",
"fromDate": "2025-06-16",
"toDate": "2025-08-09",
"weekdays": [],
"fromTime": null,
"toTime": null
}
]
}
]
},
{
"career": "UGRD",
"subject": "CIVL",
"number": "2120",
"code": "CIVL2120",
"name": "Mechanics of Materials",
"description": "Analysis of stress, strain and deformation; linear and non-linear material behavior; strain energy; bending of beams, deflection; stability and buckling of compression members; shear and torsional stresses.",
"previousCodes": "",
"prerequisites": "CIVL 2110",
"corequisites": "",