-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2340.json
14173 lines (14173 loc) · 447 KB
/
2340.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": "a passing letter grade in LANG 1401 OR LANG 1402 OR LANG 1403 OR LANG 1404 OR LANG 1002 (prior to 2022-23)",
"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": "1004",
"remarks": "> Instructor : DAI, Ting\n> Supervisor : Dr CHEUNG, Kwok Yip Steven\n> Add/Drop Deadline : 20-Jun-2024",
"quota": 20,
"enroll": 20,
"waitlist": 0,
"consent": false,
"reservedQuota": [],
"schedule": [
{
"instructors": [
"TBA"
],
"venue": "Rm 1027, LSK Bldg (40)",
"fromDate": "2024-06-17",
"toDate": "2024-07-12",
"weekdays": [
1,
3,
5
],
"fromTime": "14:00",
"toTime": "17:50"
}
]
}
]
},
{
"career": "UGRD",
"subject": "ACCT",
"number": "2010",
"code": "ACCT2010",
"name": "Principles of Accounting I",
"description": "For SB&M students, and programs that designate the course as a required/specified elective course. This is the first course of the principles of accounting sequence. Introduction to the concepts and principles of financial accounting, including the analysis, recording, and reporting of business transactions and preparation of financial statements.",
"previousCodes": "",
"prerequisites": "",
"corequisites": "",
"exclusions": "",
"credits": 3,
"attributes": [],
"classes": [
{
"section": "L1",
"number": "1005",
"remarks": "> The class is delivered in a conventional face-to-face mode\n> Instructor : DENG, Jin\n> Supervisor : Prof TANG, Chao\n> Add/Drop Deadline : 20-Jun-2024",
"quota": 20,
"enroll": 15,
"waitlist": 0,
"consent": false,
"reservedQuota": [],
"schedule": [
{
"instructors": [
"TBA"
],
"venue": "Rm 1027, LSK Bldg (40)",
"fromDate": "2024-06-17",
"toDate": "2024-07-12",
"weekdays": [
1,
3,
5
],
"fromTime": "09:00",
"toTime": "12:50"
}
]
}
]
},
{
"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": "1028",
"remarks": "> For MSc(ACCT) students only\n> Add/Drop Deadline : 05-Jun-2024",
"quota": 60,
"enroll": 11,
"waitlist": 0,
"consent": false,
"reservedQuota": [
{
"name": "ACCT",
"quota": 60,
"enroll": 11
}
],
"schedule": [
{
"instructors": [
"CHAN, Suk Sun"
],
"venue": "G003, LSK Bldg (70)",
"fromDate": "2024-06-04",
"toDate": "2024-06-25",
"weekdays": [
2
],
"fromTime": "09:30",
"toTime": "12:50"
},
{
"instructors": [
"CHAN, Suk Sun"
],
"venue": "G003, LSK Bldg (70)",
"fromDate": "2024-06-04",
"toDate": "2024-06-25",
"weekdays": [
2
],
"fromTime": "14:30",
"toTime": "17:50"
}
]
}
]
},
{
"career": "TPG",
"subject": "ACCT",
"number": "5801",
"code": "ACCT5801",
"name": "Cryptocurrency, Blockchain and Their Business Applications",
"description": "This course discusses cryptocurrencies (including Bitcoin, Ethereum, and others), blockchain, also known as distributed ledger technology (DLT), and their multidimensional business applications. The course provides a basic set of skills to understand cryptocurrencies and blockchain/DLT. We will also discuss the latest development in the field.",
"previousCodes": "",
"prerequisites": "",
"corequisites": "",
"exclusions": "",
"credits": 2,
"attributes": [
{
"attribute": "DELI",
"value": "RTO",
"attributeDescription": "Mode of Delivery",
"valueDescription": "[RTO] Real-time online delivery"
}
],
"classes": [
{
"section": "L1",
"number": "1053",
"remarks": "> The class is delivered in a real-time online mode\n> For FT-MBA; PT-MBA; MBA Bi-Weekly and Digital MBA students only\n> Add/Drop Deadline : 10-Jun-2024",
"quota": 65,
"enroll": 59,
"waitlist": 0,
"consent": false,
"reservedQuota": [
{
"name": "Digital MBA",
"quota": 16,
"enroll": 14
},
{
"name": "MBA",
"quota": 27,
"enroll": 25
},
{
"name": "MBA Bi-weekly",
"quota": 22,
"enroll": 20
}
],
"schedule": [
{
"instructors": [
"CHEN, Yanzhen",
"HUANG, Allen",
"LAI, Chun Him Leon"
],
"venue": "TBA",
"fromDate": "2024-06-10",
"toDate": "2024-07-08",
"weekdays": [
1
],
"fromTime": "19:00",
"toTime": "22:20"
},
{
"instructors": [
"CHEN, Yanzhen",
"HUANG, Allen"
],
"venue": "TBA",
"fromDate": "2024-06-11",
"toDate": "2024-06-11",
"weekdays": [
2
],
"fromTime": "19:00",
"toTime": "22:20"
},
{
"instructors": [
"CHEN, Yanzhen",
"HUANG, Allen"
],
"venue": "TBA",
"fromDate": "2024-06-20",
"toDate": "2024-06-20",
"weekdays": [
4
],
"fromTime": "19:00",
"toTime": "22:20"
},
{
"instructors": [
"CHEN, Yanzhen",
"HUANG, Allen"
],
"venue": "TBA",
"fromDate": "2024-06-25",
"toDate": "2024-06-25",
"weekdays": [
2
],
"fromTime": "19:00",
"toTime": "22:20"
}
]
}
]
},
{
"career": "RPG",
"subject": "ACCT",
"number": "6970A",
"code": "ACCT6970A",
"name": "Independent Study",
"description": "Study of selected accounting issues under the supervision of a faculty member. (Special permission from the Associate Dean is required for MBA students to take this course.)",
"previousCodes": "",
"prerequisites": "",
"corequisites": "",
"exclusions": "",
"credits": 1,
"attributes": [],
"classes": [
{
"section": "R1",
"number": "1305",
"remarks": " ",
"quota": 1,
"enroll": 1,
"waitlist": 0,
"consent": false,
"reservedQuota": [],
"schedule": [
{
"instructors": [
"TBA"
],
"venue": "TBA",
"fromDate": "2024-06-17",
"toDate": "2024-08-10",
"weekdays": [],
"fromTime": null,
"toTime": null
}
]
}
]
},
{
"career": "TPG",
"subject": "AESF",
"number": "6950A",
"code": "AESF6950A",
"name": "Aeronautical Independent Project",
"description": "An independent research project on Aeronautical Engineering carried out under the supervision of a faculty member.",
"previousCodes": "",
"prerequisites": "",
"corequisites": "",
"exclusions": "",
"credits": 3,
"attributes": [],
"classes": [
{
"section": "R1",
"number": "1166",
"remarks": "> Add/Drop Deadline : 22-Jun-2024\n> Extended Drop Deadline : 29-Jun-2024",
"quota": 30,
"enroll": 1,
"waitlist": 0,
"consent": true,
"reservedQuota": [],
"schedule": [
{
"instructors": [
"TBA"
],
"venue": "TBA",
"fromDate": "2024-06-17",
"toDate": "2024-08-10",
"weekdays": [],
"fromTime": null,
"toTime": null
}
]
}
]
},
{
"career": "TPG",
"subject": "AESF",
"number": "6950B",
"code": "AESF6950B",
"name": "Aeronautical Independent Project",
"description": "An independent research project on Aeronautical Engineering carried out under the supervision of a faculty member.",
"previousCodes": "",
"prerequisites": "",
"corequisites": "",
"exclusions": "",
"credits": 3,
"attributes": [],
"classes": [
{
"section": "R1",
"number": "1167",
"remarks": "> Add/Drop Deadline : 22-Jun-2024\n> Extended Drop Deadline : 29-Jun-2024",
"quota": 60,
"enroll": 17,
"waitlist": 0,
"consent": true,
"reservedQuota": [],
"schedule": [
{
"instructors": [
"TBA"
],
"venue": "TBA",
"fromDate": "2024-06-17",
"toDate": "2024-08-10",
"weekdays": [],
"fromTime": null,
"toTime": null
}
]
}
]
},
{
"career": "RPG",
"subject": "AMAT",
"number": "6990",
"code": "AMAT6990",
"name": "MPhil Thesis Research",
"description": "Master's thesis research supervised by co-advisors from different disciplines. A successful defense of the thesis leads to the grade Pass. No course credit is assigned.",
"previousCodes": "",
"prerequisites": "",
"corequisites": "",
"exclusions": "",
"credits": 0,
"attributes": [],
"classes": [
{
"section": "R1",
"number": "1344",
"remarks": " ",
"quota": 1,
"enroll": 1,
"waitlist": 0,
"consent": false,
"reservedQuota": [],
"schedule": [
{
"instructors": [
"TBA"
],
"venue": "TBA",
"fromDate": "2024-06-17",
"toDate": "2024-08-10",
"weekdays": [],
"fromTime": null,
"toTime": null
}
]
}
]
},
{
"career": "TPG",
"subject": "BEHI",
"number": "6101A",
"code": "BEHI6101A",
"name": "Independent Project",
"description": "An independent research project carried out under the supervision of a faculty member. May be graded PP.",
"previousCodes": "",
"prerequisites": "",
"corequisites": "",
"exclusions": "",
"credits": 3,
"attributes": [],
"classes": [
{
"section": "R1",
"number": "1154",
"remarks": "> Add/Drop Deadline : 22-Jun-2024\n> Extended Drop Deadline : 29-Jun-2024",
"quota": 10,
"enroll": 1,
"waitlist": 0,
"consent": true,
"reservedQuota": [],
"schedule": [
{
"instructors": [
"TBA"
],
"venue": "TBA",
"fromDate": "2024-06-17",
"toDate": "2024-08-10",
"weekdays": [],
"fromTime": null,
"toTime": null
}
]
}
]
},
{
"career": "TPG",
"subject": "BEHI",
"number": "6101B",
"code": "BEHI6101B",
"name": "Independent Project",
"description": "An independent research project carried out under the supervision of a faculty member. May be graded PP.",
"previousCodes": "",
"prerequisites": "",
"corequisites": "",
"exclusions": "",
"credits": 3,
"attributes": [],
"classes": [
{
"section": "R1",
"number": "1155",
"remarks": "> Add/Drop Deadline : 22-Jun-2024\n> Extended Drop Deadline : 29-Jun-2024",
"quota": 40,
"enroll": 10,
"waitlist": 0,
"consent": true,
"reservedQuota": [],
"schedule": [
{
"instructors": [
"TBA"
],
"venue": "TBA",
"fromDate": "2024-06-17",
"toDate": "2024-08-10",
"weekdays": [],
"fromTime": null,
"toTime": null
}
]
}
]
},
{
"career": "TPG",
"subject": "BEHI",
"number": "6102B",
"code": "BEHI6102B",
"name": "Integrated Design Project",
"description": "A design project on a topic in the realm of biomolecular engineering and/or health informatics carried out as a team effort under the supervision of a faculty member. It focuses on design thinking and getting hands-on experience with the engineering design process in a broad sense, and aims to accommodate students with more industry-oriented interests. May be graded PP.",
"previousCodes": "",
"prerequisites": "",
"corequisites": "",
"exclusions": "",
"credits": 3,
"attributes": [],
"classes": [
{
"section": "R1",
"number": "1253",
"remarks": "> Add/Drop Deadline : 22-Jun-2024\n> Extended Drop Deadline : 29-Jun-2024",
"quota": 2,
"enroll": 2,
"waitlist": 0,
"consent": true,
"reservedQuota": [],
"schedule": [
{
"instructors": [
"TBA"
],
"venue": "TBA",
"fromDate": "2024-06-17",
"toDate": "2024-08-10",
"weekdays": [],
"fromTime": null,
"toTime": null
}
]
}
]
},
{
"career": "UGRD",
"subject": "BIEN",
"number": "4930",
"code": "BIEN4930",
"name": "Bioengineering Thesis Research",
"description": "A final-year project course offers an opportunity to conduct individual bioengineering research under the direct supervision of a faculty member, which leads to a Bachelor's thesis. Credit load may be spread over a year. May be graded PP. For students in the Bioengineering major with approval from the department only.",
"previousCodes": "",
"prerequisites": "BIEN 3910 AND (CENG 4980 OR UROP 2100)",
"corequisites": "",
"exclusions": "BIEN 4920, BIEN 4940",
"credits": 1,
"attributes": [],
"classes": [
{
"section": "T1",
"number": "1193",
"remarks": "> Add/Drop Deadline: 22-Jun-2024",
"quota": 2,
"enroll": 2,
"waitlist": 0,
"consent": true,
"reservedQuota": [],
"schedule": [
{
"instructors": [
"LAKERVELD, Richard"
],
"venue": "TBA",
"fromDate": "2024-06-17",
"toDate": "2024-08-10",
"weekdays": [],
"fromTime": null,
"toTime": null
}
]
}
]
},
{
"career": "UGRD",
"subject": "BIEN",
"number": "4940",
"code": "BIEN4940",
"name": "Bioengineering Industrial Project",
"description": "This course is intended to provide final-year bioengineering students with practical hands-on training in the form of a full-time or part-time internship or co-op program in a bioengineering company. Credit load may be spread over a year. May be graded PP. For students in the Bioengineering major with approval from the department only.",
"previousCodes": "",
"prerequisites": "BIEN 3910",
"corequisites": "",
"exclusions": "BIEN 4920, BIEN 4930",
"credits": 1,
"attributes": [],
"classes": [
{
"section": "T1",
"number": "1341",
"remarks": "> Add/Drop Deadline: 22-Jun-2024",
"quota": 1,
"enroll": 1,
"waitlist": 0,
"consent": true,
"reservedQuota": [],
"schedule": [
{
"instructors": [
"TBA"
],
"venue": "TBA",
"fromDate": "2024-06-17",
"toDate": "2024-08-10",
"weekdays": [],
"fromTime": null,
"toTime": null
}
]
}
]
},
{
"career": "UGRD",
"subject": "BIEN",
"number": "4990",
"code": "BIEN4990",
"name": "Academic and Professional Development II",
"description": "For final-year Bioengineering students. This course is designed to prepare students for the workplace, to instill in them a sense of professional responsibility, and to enhance their career management skills. Students are required to attend selected workshops and seminars by practicing bioengineers. Graded P or F.",
"previousCodes": "",
"prerequisites": "BIEN 2990",
"corequisites": "",
"exclusions": "",
"credits": 1,
"attributes": [],
"classes": [
{
"section": "T1",
"number": "1074",
"remarks": "> Add/Drop Deadline: 22-Jun-2024",
"quota": 1,
"enroll": 1,
"waitlist": 0,
"consent": false,
"reservedQuota": [],
"schedule": [
{
"instructors": [
"LAKERVELD, Richard",
"LAM, Henry Hei Ning",
"LIU, Y.S. Marshal"
],
"venue": "TBA",
"fromDate": "2024-06-17",
"toDate": "2024-08-10",
"weekdays": [],
"fromTime": null,
"toTime": null
}
]
}
]
},
{
"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": "1137",
"remarks": "> Add/Drop Deadline : 17-Jun-2024",
"quota": 66,
"enroll": 65,
"waitlist": 0,
"consent": false,
"reservedQuota": [],
"schedule": [
{
"instructors": [
"CHUNG, Kenny K",
"HIRANO, Yukinori",
"NGUYEN, Tuan Anh",
"POON, Randy Yat Choi",
"WU, Zhenguo"
],
"venue": "Rm 2405, Lift 17-18 (92)",
"fromDate": "2024-06-12",
"toDate": "2024-07-03",
"weekdays": [
3
],
"fromTime": "19:30",
"toTime": "22:50"
},
{
"instructors": [
"CHUNG, Kenny K",
"HIRANO, Yukinori",
"NGUYEN, Tuan Anh",
"POON, Randy Yat Choi",
"WU, Zhenguo"
],
"venue": "Rm 2405, Lift 17-18 (92)",
"fromDate": "2024-06-15",
"toDate": "2024-06-29",
"weekdays": [
6
],
"fromTime": "09:00",
"toTime": "13:20"
},
{
"instructors": [
"CHUNG, Kenny K",
"HIRANO, Yukinori",
"NGUYEN, Tuan Anh",
"POON, Randy Yat Choi",
"WU, Zhenguo"
],
"venue": "Rm 2405, Lift 17-18 (92)",
"fromDate": "2024-06-15",
"toDate": "2024-06-29",
"weekdays": [
6
],
"fromTime": "14:30",
"toTime": "18:50"
}
]
},
{
"section": "T1",
"number": "1138",
"remarks": " ",
"quota": 66,
"enroll": 65,
"waitlist": 0,
"consent": false,
"reservedQuota": [],
"schedule": [
{
"instructors": [
"CHUNG, Kenny K",
"HIRANO, Yukinori",
"NGUYEN, Tuan Anh",
"POON, Randy Yat Choi",
"WU, Zhenguo"
],
"venue": "TBA",
"fromDate": "2024-06-17",
"toDate": "2024-08-10",
"weekdays": [],
"fromTime": null,
"toTime": null
}
]
}
]
},
{
"career": "UGRD",
"subject": "CENG",
"number": "4950",
"code": "CENG4950",
"name": "Chem-E-Car",
"description": "This course is a platform for entry-level engineer students to participate in Chem-E-car competition, i.e. to design and construct a car powered by a chemical or biochemical energy source that will safely carry a specified load over a given distance and stop. The objective of this course is to develop the ability to control an electrochemical reaction, and to obtain hands-on experience on a practical engineering project, especially in chemical engineering field. Students will be given the opportunity to interact with each other, to integrate the learning experience to design and build a device, and chances to prepare for starting their future career in engineering. It is a student-led project, designed to motivate students for engineers. Graded DI/PA/F. Enrollment in the project course require instructor's approval.",
"previousCodes": "CENG4000I",
"prerequisites": "",
"corequisites": "",
"exclusions": "",
"credits": 3,
"attributes": [],
"classes": [
{
"section": "L1",
"number": "1174",
"remarks": "> Add/Drop Deadline: 22-Jun-2024",
"quota": 10,
"enroll": 9,
"waitlist": 0,
"consent": true,
"reservedQuota": [],
"schedule": [
{
"instructors": [
"LIU, Y.S. Marshal",
"LUO, Tom Zhengtang"
],
"venue": "TBA",
"fromDate": "2024-06-17",
"toDate": "2024-08-10",
"weekdays": [],
"fromTime": null,
"toTime": null
}
]
},
{
"section": "LA1",
"number": "1176",
"remarks": " ",
"quota": 10,
"enroll": 9,
"waitlist": 0,
"consent": true,
"reservedQuota": [],
"schedule": [
{
"instructors": [
"LIU, Y.S. Marshal",
"LUO, Tom Zhengtang"
],
"venue": "TBA",
"fromDate": "2024-06-17",
"toDate": "2024-08-10",
"weekdays": [],
"fromTime": null,
"toTime": null
}
]
},
{
"section": "T1",
"number": "1175",
"remarks": " ",
"quota": 10,
"enroll": 9,
"waitlist": 0,
"consent": true,
"reservedQuota": [],
"schedule": [
{
"instructors": [
"LIU, Y.S. Marshal",
"LUO, Tom Zhengtang"
],
"venue": "TBA",
"fromDate": "2024-06-17",
"toDate": "2024-08-10",
"weekdays": [],
"fromTime": null,
"toTime": null
}
]
}
]
},
{
"career": "RPG",
"subject": "CENG",
"number": "6900C",
"code": "CENG6900C",
"name": "Independent Study",
"description": "Selected topics in chemical engineering studied under the supervision of a faculty member. Graded P or F.",
"previousCodes": "CENG690C",
"prerequisites": "",
"corequisites": "",
"exclusions": "CENG 6800",
"credits": 1,
"attributes": [],
"classes": [
{
"section": "R1",
"number": "1075",
"remarks": "> Add/Drop Deadline: 22-Jun-2024\n> Extended Drop Deadline: 29-Jun-2024",
"quota": 5,
"enroll": 5,
"waitlist": 0,
"consent": false,
"reservedQuota": [],
"schedule": [
{
"instructors": [
"TBA"
],
"venue": "TBA",
"fromDate": "2024-06-17",
"toDate": "2024-08-10",
"weekdays": [],
"fromTime": null,
"toTime": null
}
]
}
]
},
{
"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": "a passing letter grade in LANG 1401 OR LANG 1402 OR LANG 1403 OR LANG 1404 OR LANG 1002 (prior to 2022-23)",
"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": "1116",
"remarks": "> Add/Drop Deadline : 20-Jun-2024",
"quota": 60,
"enroll": 59,
"waitlist": 0,
"consent": false,
"reservedQuota": [],
"schedule": [
{
"instructors": [
"CHAN, Dennis Ho Wai"
],
"venue": "Rm 2405, Lift 17-18 (92)",
"fromDate": "2024-06-17",
"toDate": "2024-07-12",
"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": "1117",
"remarks": "> Add/Drop Deadline : 20-Jun-2024",
"quota": 50,
"enroll": 12,
"waitlist": 0,
"consent": false,
"reservedQuota": [],
"schedule": [
{
"instructors": [
"SHEONG, Frederick Fu Kit",
"TSANG, Ming Wai Emily"
],
"venue": "Rm 2404, Lift 17-18 (81)",
"fromDate": "2024-06-17",
"toDate": "2024-07-12",
"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.",