-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2320.json
4690 lines (4690 loc) · 150 KB
/
2320.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": "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": "1030",
"remarks": "> Add/Drop Deadline: 06-Jan-2024\n> Extended Drop Deadline: 13-Jan-2024",
"quota": 10,
"enroll": 1,
"waitlist": 0,
"consent": false,
"reservedQuota": [],
"schedule": [
{
"instructors": [
"TBA"
],
"venue": "TBA",
"fromDate": "2024-01-02",
"toDate": "2024-01-29",
"weekdays": [],
"fromTime": null,
"toTime": null
}
]
}
]
},
{
"career": "UGRD",
"subject": "CIVL",
"number": "2020",
"code": "CIVL2020",
"name": "Industrial and BIM Training",
"description": "A practical training course in an industrial simulated environment. For students of the Civil and Environmental Engineering Department only. Graded P, PP or F.",
"previousCodes": "",
"prerequisites": "",
"corequisites": "",
"exclusions": "",
"credits": 0,
"attributes": [],
"classes": [
{
"section": "L1",
"number": "1106",
"remarks": " ",
"quota": 179,
"enroll": 177,
"waitlist": 0,
"consent": true,
"reservedQuota": [],
"schedule": [
{
"instructors": [
"TBA"
],
"venue": "TBA",
"fromDate": "2024-01-02",
"toDate": "2024-01-29",
"weekdays": [],
"fromTime": null,
"toTime": null
}
]
}
]
},
{
"career": "UGRD",
"subject": "CIVL",
"number": "3020",
"code": "CIVL3020",
"name": "Internship Training",
"description": "For students of the Civil and Environmental Engineering Department only. Internship training provides students the opportunity to gain professional experience and to apply theories to real-life situations. Students are required to complete a minimum of six weeks on-the-job training in civil engineering consulting firms, contractors, developers or relevant government departments, or an equivalent of 5-week mock construction training under the supervision of professional practitioners. Graded P or F.",
"previousCodes": "",
"prerequisites": "CIVL 2020",
"corequisites": "",
"exclusions": "",
"credits": 0,
"attributes": [],
"classes": [
{
"section": "R1",
"number": "1032",
"remarks": "> Add/Drop Deadline : 06-Jan-2024",
"quota": 50,
"enroll": 46,
"waitlist": 0,
"consent": true,
"reservedQuota": [],
"schedule": [
{
"instructors": [
"TBA"
],
"venue": "TBA",
"fromDate": "2024-01-02",
"toDate": "2024-01-29",
"weekdays": [],
"fromTime": null,
"toTime": null
}
]
}
]
},
{
"career": "RPG",
"subject": "CIVL",
"number": "6010A",
"code": "CIVL6010A",
"name": "Directed Studies",
"description": "Specialist courses where instruction is generally on a one-to-one basis. Graded P or F.",
"previousCodes": "CIVL610A",
"prerequisites": "",
"corequisites": "",
"exclusions": "",
"credits": 1,
"attributes": [],
"classes": [
{
"section": "R1",
"number": "1097",
"remarks": " ",
"quota": 1,
"enroll": 1,
"waitlist": 0,
"consent": false,
"reservedQuota": [],
"schedule": [
{
"instructors": [
"TBA"
],
"venue": "TBA",
"fromDate": "2024-01-02",
"toDate": "2024-01-29",
"weekdays": [],
"fromTime": null,
"toTime": null
}
]
}
]
},
{
"career": "RPG",
"subject": "CIVL",
"number": "6050H",
"code": "CIVL6050H",
"name": "Civil Engineering Seminar I",
"description": "Discussion of current research by faculty members, and guest lectures on recent advances in civil engineering. Graded P or F.",
"previousCodes": "",
"prerequisites": "",
"corequisites": "",
"exclusions": "",
"credits": 0,
"attributes": [],
"classes": [
{
"section": "L1",
"number": "1036",
"remarks": "> Add/Drop Deadline: 06-Jan-2024\n> Extended Drop Deadline: 13-Jan-2024",
"quota": 5,
"enroll": 2,
"waitlist": 0,
"consent": true,
"reservedQuota": [],
"schedule": [
{
"instructors": [
"TBA"
],
"venue": "TBA",
"fromDate": "2024-01-02",
"toDate": "2024-01-29",
"weekdays": [],
"fromTime": null,
"toTime": null
}
]
}
]
},
{
"career": "RPG",
"subject": "CIVL",
"number": "6060M",
"code": "CIVL6060M",
"name": "Civil Engineering Seminar II",
"description": "Presentation of current graduate research by postgraduate students. Graded P or F.",
"previousCodes": "",
"prerequisites": "",
"corequisites": "",
"exclusions": "",
"credits": 0,
"attributes": [],
"classes": [
{
"section": "L1",
"number": "1038",
"remarks": "> Add/Drop Deadline: 06-Jan-2024\n> Extended Drop Deadline: 13-Jan-2024",
"quota": 5,
"enroll": 1,
"waitlist": 0,
"consent": true,
"reservedQuota": [],
"schedule": [
{
"instructors": [
"TBA"
],
"venue": "TBA",
"fromDate": "2024-01-02",
"toDate": "2024-01-29",
"weekdays": [],
"fromTime": null,
"toTime": null
}
]
}
]
},
{
"career": "UGRD",
"subject": "COMP",
"number": "1029C",
"code": "COMP1029C",
"name": "C Programming Bridging Course",
"description": "This course introduces the C programming language. It is intended for students who already have some experience in computer programming but wish to learn how to apply those programming skills to the C language. The course covers basic programming topics, such as variables, control, loops, and functions, to more advanced topics. Students explore these by self-learning of course materials together with guided programming exercises. Students without the prerequisites but possess relevant programming knowledge may seek instructor's approval for enrolling in the course. Graded P or F.",
"previousCodes": "",
"prerequisites": "COMP 1021 OR COMP 1022P OR COMP 1022Q (prior to 2020-21) OR ISOM 3230 OR ISOM 3320",
"corequisites": "",
"exclusions": "COMP 2011, COMP 2012H",
"credits": 1,
"attributes": [],
"classes": [
{
"section": "L1",
"number": "1039",
"remarks": "> Add/Drop Deadline: 06-Jan-2024",
"quota": 50,
"enroll": 50,
"waitlist": 0,
"consent": false,
"reservedQuota": [],
"schedule": [
{
"instructors": [
"LAM, Gibson"
],
"venue": "TBA",
"fromDate": "2024-01-02",
"toDate": "2024-01-29",
"weekdays": [],
"fromTime": null,
"toTime": null
}
]
},
{
"section": "LA1",
"number": "1040",
"remarks": " ",
"quota": 50,
"enroll": 50,
"waitlist": 0,
"consent": false,
"reservedQuota": [],
"schedule": [
{
"instructors": [
"LAM, Gibson",
"XIAO, Huiru"
],
"venue": "TBA",
"fromDate": "2024-01-02",
"toDate": "2024-01-29",
"weekdays": [],
"fromTime": null,
"toTime": null
}
]
}
]
},
{
"career": "UGRD",
"subject": "COMP",
"number": "1029J",
"code": "COMP1029J",
"name": "Java Programming Bridging Course",
"description": "This course introduces the Java programming language. It is intended for students who already have some experience in computer programming but wish to learn how to apply those programming skills to the Java language. The course covers basic programming topics such as variables, control statements, loops, functions, and object-oriented programming concepts. Students explore these by self-learning of course materials together with guided programming exercises. Students without the prerequisites but possess relevant programming knowledge may seek instructor's approval for enrolling in the course. Graded P or F.",
"previousCodes": "",
"prerequisites": "COMP 1021 OR COMP 1022Q (prior to 2020-21) OR ISOM 3230",
"corequisites": "",
"exclusions": "COMP 1022P, COMP 3021, ISOM 3320",
"credits": 1,
"attributes": [],
"classes": [
{
"section": "L1",
"number": "1041",
"remarks": "> Add/Drop Deadline: 06-Jan-2024",
"quota": 50,
"enroll": 50,
"waitlist": 0,
"consent": false,
"reservedQuota": [],
"schedule": [
{
"instructors": [
"LAM, Gibson"
],
"venue": "TBA",
"fromDate": "2024-01-02",
"toDate": "2024-01-29",
"weekdays": [],
"fromTime": null,
"toTime": null
}
]
},
{
"section": "LA1",
"number": "1042",
"remarks": " ",
"quota": 50,
"enroll": 50,
"waitlist": 0,
"consent": false,
"reservedQuota": [],
"schedule": [
{
"instructors": [
"LAM, Gibson",
"USMAN, Muhammad"
],
"venue": "TBA",
"fromDate": "2024-01-02",
"toDate": "2024-01-29",
"weekdays": [],
"fromTime": null,
"toTime": null
}
]
}
]
},
{
"career": "UGRD",
"subject": "COMP",
"number": "1029P",
"code": "COMP1029P",
"name": "Python Programming Bridging Course",
"description": "This course introduces the Python programming language. It is intended for students who already have some experience in computer programming but wish to learn how to apply those programming skills to the Python language. The course covers basic programming topics, such as variables, functions and loops, to more advanced topics. Students explore these by self-learning of course materials together with guided programming exercises. Students without the prerequisites but possess relevant programming knowledge may seek instructor's approval for enrolling in the course. Graded P or F.",
"previousCodes": "",
"prerequisites": "COMP 1022P OR COMP 1022Q (prior to 2020-21) OR ISOM 3230 OR ISOM 3320",
"corequisites": "",
"exclusions": "COMP 1021",
"credits": 1,
"attributes": [],
"classes": [
{
"section": "L1",
"number": "1043",
"remarks": "> Add/Drop Deadline: 06-Jan-2024",
"quota": 50,
"enroll": 11,
"waitlist": 0,
"consent": false,
"reservedQuota": [],
"schedule": [
{
"instructors": [
"LAM, Gibson"
],
"venue": "TBA",
"fromDate": "2024-01-02",
"toDate": "2024-01-29",
"weekdays": [],
"fromTime": null,
"toTime": null
}
]
},
{
"section": "LA1",
"number": "1044",
"remarks": " ",
"quota": 50,
"enroll": 11,
"waitlist": 0,
"consent": false,
"reservedQuota": [],
"schedule": [
{
"instructors": [
"LAM, Gibson",
"WEI, Maofeng"
],
"venue": "TBA",
"fromDate": "2024-01-02",
"toDate": "2024-01-29",
"weekdays": [],
"fromTime": null,
"toTime": null
}
]
}
]
},
{
"career": "UGRD",
"subject": "COMP",
"number": "1029V",
"code": "COMP1029V",
"name": "Excel VBA Programming Bridging Course",
"description": "This course introduces the VBA programming language, in the context of Microsoft Excel. It is intended for students who already have some experience in computer programming but wish to learn how to apply those programming skills to VBA, within Excel. The course covers basic programming topics, such as variables, functions and loops, to more advanced topics. Appropriate features of the Excel program are also covered. Students explore these by self-learning of course materials together with guided programming exercises. Students without the prerequisites but possess relevant programming knowledge may seek instructor's approval for enrolling in the course. Graded P or F.",
"previousCodes": "",
"prerequisites": "COMP 1021 OR COMP 1022P OR ISOM 3320",
"corequisites": "",
"exclusions": "COMP 1022Q (prior to 2020-21), ISOM 3230",
"credits": 1,
"attributes": [],
"classes": [
{
"section": "L1",
"number": "1045",
"remarks": "> Add/Drop Deadline: 06-Jan-2024",
"quota": 50,
"enroll": 50,
"waitlist": 0,
"consent": false,
"reservedQuota": [],
"schedule": [
{
"instructors": [
"LAM, Gibson"
],
"venue": "TBA",
"fromDate": "2024-01-02",
"toDate": "2024-01-29",
"weekdays": [],
"fromTime": null,
"toTime": null
}
]
},
{
"section": "LA1",
"number": "1046",
"remarks": " ",
"quota": 50,
"enroll": 50,
"waitlist": 0,
"consent": false,
"reservedQuota": [],
"schedule": [
{
"instructors": [
"CHING, Phoebe Mae Lim",
"LAM, Gibson"
],
"venue": "TBA",
"fromDate": "2024-01-02",
"toDate": "2024-01-29",
"weekdays": [],
"fromTime": null,
"toTime": null
}
]
}
]
},
{
"career": "UGRD",
"subject": "COMP",
"number": "1991",
"code": "COMP1991",
"name": "Industrial Experience",
"description": "Full-time internship training for a period of at least six weeks in an organization or company recognized by the Department for providing qualified internship training relevant to the computer science and engineering profession. Cantonese or other working languages may be used in off-campus trainings and internships, in some situations. For students of the Department of Computer Science and Engineering in their second year of study or above only. Internship coordinator's approval is required for enrollment in the course. Graded P, PP or F.",
"previousCodes": "",
"prerequisites": "",
"corequisites": "",
"exclusions": "",
"credits": 0,
"attributes": [],
"classes": [
{
"section": "R1",
"number": "1115",
"remarks": " ",
"quota": 1,
"enroll": 2,
"waitlist": 0,
"consent": true,
"reservedQuota": [],
"schedule": [
{
"instructors": [
"TBA"
],
"venue": "TBA",
"fromDate": "2024-01-02",
"toDate": "2024-01-29",
"weekdays": [],
"fromTime": null,
"toTime": null
}
]
}
]
},
{
"career": "UGRD",
"subject": "COMP",
"number": "4900",
"code": "COMP4900",
"name": "Academic and Professional Development",
"description": "This course is for academic and professional development of students in the programs offered by the Department of Computer Science and Engineering. Activities may include seminars, workshops, advising and sharing sessions, interaction with faculty and teaching staff, and discussion with student peers or alumni. Graded P/PP/F.",
"previousCodes": "",
"prerequisites": "",
"corequisites": "",
"exclusions": "",
"credits": 0,
"attributes": [],
"classes": [
{
"section": "T1",
"number": "1085",
"remarks": " ",
"quota": 7,
"enroll": 4,
"waitlist": 0,
"consent": false,
"reservedQuota": [],
"schedule": [
{
"instructors": [
"TBA"
],
"venue": "TBA",
"fromDate": "2024-01-02",
"toDate": "2024-01-29",
"weekdays": [],
"fromTime": null,
"toTime": null
}
]
}
]
},
{
"career": "UGRD",
"subject": "COMP",
"number": "4971A",
"code": "COMP4971A",
"name": "Independent Work",
"description": "Independent studies or projects under the directed guidance of a faculty member on a computer science topic. A written report, presentation, and/or an examination are required. Enrollment in the course requires prior approval of the course instructor, and credits assigned depend on the workload. May be repeated for credits.",
"previousCodes": "COMP390A",
"prerequisites": "",
"corequisites": "",
"exclusions": "",
"credits": 1,
"attributes": [],
"classes": [
{
"section": "R1",
"number": "1102",
"remarks": " ",
"quota": 1,
"enroll": 1,
"waitlist": 0,
"consent": true,
"reservedQuota": [],
"schedule": [
{
"instructors": [
"TBA"
],
"venue": "TBA",
"fromDate": "2024-01-02",
"toDate": "2024-01-29",
"weekdays": [],
"fromTime": null,
"toTime": null
}
]
}
]
},
{
"career": "UGRD",
"subject": "COMP",
"number": "4971F",
"code": "COMP4971F",
"name": "Independent Work",
"description": "Independent studies or projects under the directed guidance of a faculty member on a computer science topic. A written report, presentation, and/or an examination are required. Enrollment in the course requires prior approval of the course instructor, and credits assigned depend on the workload. May be repeated for credits.",
"previousCodes": "",
"prerequisites": "",
"corequisites": "",
"exclusions": "",
"credits": 3,
"attributes": [],
"classes": [
{
"section": "R1",
"number": "1080",
"remarks": "> Add/Drop Deadline : 06-Jan-2024",
"quota": 1,
"enroll": 1,
"waitlist": 0,
"consent": true,
"reservedQuota": [],
"schedule": [
{
"instructors": [
"ROSSITER, David"
],
"venue": "TBA",
"fromDate": "2024-01-02",
"toDate": "2024-01-29",
"weekdays": [],
"fromTime": null,
"toTime": null
}
]
}
]
},
{
"career": "UGRD",
"subject": "COMP",
"number": "4981",
"code": "COMP4981",
"name": "Final Year Project",
"description": "Students are expected to complete a project in an area of specialization in Computer Science and Engineering under the guidance of a faculty member. Objectives are to integrate the classroom material from several courses, and to apply them to solve practical problems. Credit load will be spread over the year. For students in the BEng in Computer Science and BEng in Computer Engineering programs under the four-year degree only.",
"previousCodes": "",
"prerequisites": "",
"corequisites": "",
"exclusions": "COMP 4981H",
"credits": 1,
"attributes": [],
"classes": [
{
"section": "R1",
"number": "1101",
"remarks": " ",
"quota": 1,
"enroll": 1,
"waitlist": 0,
"consent": true,
"reservedQuota": [],
"schedule": [
{
"instructors": [
"TBA"
],
"venue": "TBA",
"fromDate": "2024-01-02",
"toDate": "2024-01-29",
"weekdays": [],
"fromTime": null,
"toTime": null
}
]
}
]
},
{
"career": "RPG",
"subject": "COMP",
"number": "6922C",
"code": "COMP6922C",
"name": "Research Project",
"description": "An independent research project carried out under the supervision of a faculty member. This course is only available for exchange, visiting and visiting internship students.",
"previousCodes": "",
"prerequisites": "",
"corequisites": "",
"exclusions": "",
"credits": 1,
"attributes": [],
"classes": [
{
"section": "R1",
"number": "1108",
"remarks": " ",
"quota": 1,
"enroll": 1,
"waitlist": 0,
"consent": false,
"reservedQuota": [],
"schedule": [
{
"instructors": [
"CHEN, Hao"
],
"venue": "TBA",
"fromDate": "2024-01-02",
"toDate": "2024-01-29",
"weekdays": [],
"fromTime": null,
"toTime": null
}
]
}
]
},
{
"career": "RPG",
"subject": "COMP",
"number": "6922E",
"code": "COMP6922E",
"name": "Research Project",
"description": "An independent research project carried out under the supervision of a faculty member. This course is only available for exchange, visiting and visiting internship students.",
"previousCodes": "",
"prerequisites": "",
"corequisites": "",
"exclusions": "",
"credits": 1,
"attributes": [],
"classes": [
{
"section": "R1",
"number": "1103",
"remarks": " ",
"quota": 3,
"enroll": 3,
"waitlist": 0,
"consent": false,
"reservedQuota": [],
"schedule": [
{
"instructors": [
"CHEN, Long"
],
"venue": "TBA",
"fromDate": "2024-01-02",
"toDate": "2024-01-29",
"weekdays": [],
"fromTime": null,
"toTime": null
}
]
}
]
},
{
"career": "TPG",
"subject": "DBAP",
"number": "5160",
"code": "DBAP5160",
"name": "Frontiers in Management Research",
"description": "This introductory course exposes students to the latest research and trends in management research (e.g., organizational behavior, human resources management, strategic management, international business, entrepreneurship, and business ethics). Students will read and critique latest research papers from selected topics and participate in class discussion. Students are expected to understand management issues of current and future concerns, identify an interesting and practically important frontier research question in a management topic of choice, and write an executable research proposal to address the question.",
"previousCodes": "",
"prerequisites": "",
"corequisites": "",
"exclusions": "",
"credits": 1,
"attributes": [],
"classes": [
{
"section": "L1",
"number": "1064",
"remarks": "> For DBA students only\n> Class Duration/Dates : 20-Jan-2024 to 21-Jan-2024\n> Add/Drop Deadline : 20-Jan-2024",
"quota": 13,
"enroll": 11,
"waitlist": 0,
"consent": false,
"reservedQuota": [],
"schedule": [
{
"instructors": [
"LI, J.T."
],
"venue": "TBA",
"fromDate": "2024-01-20",
"toDate": "2024-01-21",
"weekdays": [],
"fromTime": null,
"toTime": null
}
]
}
]
},
{
"career": "TPG",
"subject": "DBAP",
"number": "5170",
"code": "DBAP5170",
"name": "Frontiers in Marketing Research",
"description": "This course introduces students to the latest research topics in marketing and covers recent marketing research findings from several different research paradigms.",
"previousCodes": "",
"prerequisites": "",
"corequisites": "",
"exclusions": "",
"credits": 1,
"attributes": [],
"classes": [
{
"section": "L1",
"number": "1063",
"remarks": "> For DBA students only\n> Class Duration/Dates : 18-Jan-2024 to 19-Jan-2024\n> Add/Drop Deadline : 18-Jan-2024",
"quota": 13,
"enroll": 10,
"waitlist": 0,
"consent": false,
"reservedQuota": [],
"schedule": [
{
"instructors": [
"VAN DER LANS, Ralf",
"ZHAO, Ying"
],
"venue": "TBA",
"fromDate": "2024-01-18",
"toDate": "2024-01-19",
"weekdays": [],
"fromTime": null,
"toTime": null
}
]
}
]
},
{
"career": "TPG",
"subject": "DBAP",
"number": "5410",
"code": "DBAP5410",
"name": "Asset Allocation and Portfolio Analysis",
"description": "This course begins with the central idea of asset pricing theory regarding risk-return trade-off and continues with asset allocation decisions and modern portfolio theories. Using primary asset markets of stocks and bonds as the battle field, it presents concepts and methodologies of identifying market-wide factors and factor betas as measures of risks and risk exposures. It also discusses popular trading strategies of capturing alphas associated with firm-specific attributes.",
"previousCodes": "",
"prerequisites": "",
"corequisites": "",
"exclusions": "",
"credits": 2,
"attributes": [],
"classes": [
{
"section": "L1",
"number": "1061",
"remarks": "> For DBA students only\n> Class Duration/Dates : 11-Jan-2024 to 14-Jan-2024\n> Add/Drop Deadline : 11-Jan-2024",
"quota": 3,
"enroll": 3,
"waitlist": 0,
"consent": false,
"reservedQuota": [],
"schedule": [
{
"instructors": [
"CHEN, Zhanhui",
"LI, Yingying"
],
"venue": "TBA",
"fromDate": "2024-01-11",
"toDate": "2024-01-14",
"weekdays": [],
"fromTime": null,
"toTime": null
}
]
}
]
},
{
"career": "TPG",
"subject": "DBAP",
"number": "5810",
"code": "DBAP5810",
"name": "Information Processing for Marketing Strategy",
"description": "This course provides an overview of topics in psychology and consumer behavior research. An information processing approach is used to help students get familiar with a range of diverse topics such as attitude formation and change, culture, information processing, motivation and goals, emotion, and consumer decision making. Practical applications of these topics as related to marketing issues and the implications for marketing managers will also be discussed.",
"previousCodes": "",
"prerequisites": "",
"corequisites": "",
"exclusions": "",
"credits": 2,
"attributes": [],
"classes": [
{
"section": "L1",
"number": "1062",
"remarks": "> For DBA students only\n> Class Duration/Dates : 11-Jan-2024 to 14-Jan-2024\n> Add/Drop Deadline : 11-Jan-2024",
"quota": 6,
"enroll": 6,
"waitlist": 0,
"consent": false,
"reservedQuota": [],
"schedule": [
{
"instructors": [
"YAN, Dengfeng"
],
"venue": "TBA",
"fromDate": "2024-01-11",
"toDate": "2024-01-14",
"weekdays": [],
"fromTime": null,
"toTime": null
}
]
}
]
},
{
"career": "TPG",
"subject": "DBAP",
"number": "6100B",
"code": "DBAP6100B",
"name": "Independent Study",
"description": "Study of selected business issues under the supervision of a faculty member. The course may be repeated for credit to satisfy the program requirements of the DBA Program. (Special permission from the Academic Director is required for students to take this course.)",
"previousCodes": "",
"prerequisites": "",
"corequisites": "",
"exclusions": "",
"credits": 2,
"attributes": [],
"classes": [
{
"section": "L1",
"number": "1116",
"remarks": "> For DBA students only\n> Class Duration/Dates : 02-Jan-2024 to 29-Jan-2024\n> Add/Drop Deadline : 08-Jan-2024",
"quota": 1,
"enroll": 1,
"waitlist": 0,
"consent": true,
"reservedQuota": [],
"schedule": [
{
"instructors": [
"KOH, Tat Koon"
],
"venue": "TBA",
"fromDate": "2024-01-02",
"toDate": "2024-01-29",
"weekdays": [],
"fromTime": null,
"toTime": null
}
]
}
]
},
{
"career": "TPG",
"subject": "ECON",
"number": "5341",
"code": "ECON5341",
"name": "Topics in Monetary Policy and Central Banking",
"description": "The topics to be covered in this course include an overview of tasks and responsibilities of a central bank/monetary authority; relationships of monetary policy to other forms of economic and financial stability policy; objectives of monetary policy; institutional and historical aspects of monetary policy; monetary policy transmission channels, interactions between monetary, fiscal, and exchange rate policies; tools of monetary policy; causes and dynamics of hyperinflations; forecasting methods for inflation, output, and financial variables; international aspects of central banking and monetary policy.",
"previousCodes": "ECON6100R",
"prerequisites": "ECON 3024 OR ECON 3143 OR ECON 5140",
"corequisites": "",
"exclusions": "",
"credits": 2,
"attributes": [],
"classes": [
{
"section": "L1",
"number": "1016",
"remarks": "> For MSc(ECON) students only\n> Add/Drop Deadline : 11-Jan-2024",
"quota": 100,
"enroll": 83,
"waitlist": 0,
"consent": false,
"reservedQuota": [],
"schedule": [
{
"instructors": [
"LORETAN, Michael Stanislaus",
"TO, Jeremy"
],
"venue": "Rm 4619, Lift 31-32 (126)",
"fromDate": "2024-01-10",
"toDate": "2024-01-26",
"weekdays": [
1,
3,
5
],
"fromTime": "14:00",
"toTime": "17:20"
}
]
}
]